/* ===================================
   PERFIL DE EMPRESA INDIVIDUAL
   =================================== */
.profile-page {
  background-color: var(--color-dark, #0a0a0a);
  color: var(--color-white, #ffffff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.profile-main {
  flex: 1;
  display: flex;
  margin-top: 80px; /* Espacio para el navbar */
}

.profile-layout {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* --- COLUMNA IZQUIERDA (Imagen y Color) --- */
.profile-image-col {
  flex: 1;
  position: relative;
  display: flex;
}

/* El bloque de color de acento al estilo Romero */
.profile-image-accent {
  display: none; /* Esto oculta la franja marrón por completo */
}

.profile-image-wrapper {
  flex: 1;
  position: relative;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Hace que la imagen se vea completa sin recortes */
  object-position: center; /* La mantiene bien centrada */
  position: absolute;
  top: 0;
  left: 0;
}
/* --- COLUMNA DERECHA (Contenido) --- */
.profile-content-col {
  flex: 1;
  padding: 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-dark, #0a0a0a);
}

.company-tag {
  display: inline-block;
  background-color: var(--color-accent, #cda434);
  color: var(--color-dark, #111);
  padding: 5px 15px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 30px;
}

.profile-logo {
  /* Aumentamos la altura base para darle más espacio al logo */
  height: 110px; 
  margin-bottom: 30px;
}

.profile-logo img {
  max-height: 100%; 
  /* Aumentamos el ancho máximo para logos horizontales largos */
  max-width: 350px; 
  object-fit: contain;
  /* Centramos el logo horizontalmente a la izquierda (por si acaso) */
  object-position: left center;
  filter: brightness(0) invert(1);
}

/* Enlace web o redes sociales */
.profile-links {
  margin-bottom: 30px;
}
.profile-links a {
  color: var(--color-accent, #cda434);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.profile-links a:hover { opacity: 0.7; }

.profile-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Botón de volver abajo (Estilo Romero) */
.btn-back-bottom {
  margin-top: auto;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.btn-back-bottom:hover {
  color: var(--color-white, #fff);
}

/* Responsivo */
@media (max-width: 900px) {
  .profile-layout { flex-direction: column; }
  .profile-image-col { min-height: 40vh; }
  .profile-image-accent { width: 5%; }
  .profile-content-col { padding: 10% 8%; }
}