/* === Sección About/Gemma - Rediseño profesional minimalista === */
.about {
  --about-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --about-duration: 0.6s;
  display: block !important;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem !important;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .about {
    padding: 5rem 1.5rem;
    min-height: auto;
  }
}

/* Fondo con imagen difuminada */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/images/gemma-ojeda%20(16).jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px) brightness(0.5);
  transform: scale(1.05);
  z-index: 0;
}

/* Overlay verde oscuro */
.about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(44, 44, 44, 0.85) 0%, rgba(58, 58, 56, 0.88) 40%, rgba(74, 74, 69, 0.86) 70%, rgba(90, 90, 82, 0.84) 100%);
  z-index: 1;
}

/* Header con logo (oculto, usaremos un eyebrow text en su lugar) */
.about__header {
  display: none;
}

/* Contenedor principal */
.about__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

/* Ocultar contenedor de imágenes (usamos ::before para el fondo) */
.about__images,
.about__image--1,
.about__image--2,
.about__image--3 {
  display: none !important;
}

/* Bio section */
.about__bio {
  opacity: 0;
  animation: aboutFadeIn 1s var(--about-ease) 0.4s forwards;
}

@keyframes aboutFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__bio-title {
  font-family: "Editor's Note", serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: #E8E2D5;
  margin: 0 0 3rem;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.about__bio-title::before {
  content: "Sobre mí";
  display: block;
  font-family: "Walkway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196, 184, 150, 0.7);
  margin-bottom: 1rem;
}

.about__bio-content {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.85;
  color: rgba(232, 226, 213, 0.9);
  margin: 0 0 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__text strong {
  font-weight: 600;
  color: #C4B896;
}

.about__text--highlight {
  padding: 2rem 2.5rem;
  background: rgba(196, 184, 150, 0.12);
  border-left: 4px solid #C4B896;
  border-radius: 0 1rem 1rem 0;
  margin-top: 2.5rem;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .about__text--highlight {
    padding: 1.5rem 1.75rem;
  }
}

/* CTA Button */
.about__cta {
  text-align: center;
  opacity: 0;
  animation: aboutFadeIn 0.8s var(--about-ease) 0.7s forwards;
}

.about__cta .btn {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  font-family: "Walkway", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2c2c2c;
  background: linear-gradient(135deg, #E8E2D5 0%, #C4B896 100%);
  border: none;
  border-radius: 3rem;
  box-shadow: 0 8px 28px rgba(196, 184, 150, 0.4);
  transition: all var(--about-duration) var(--about-ease);
}

.about__cta .btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 40px rgba(196, 184, 150, 0.6);
  background: linear-gradient(135deg, #F8F6F2 0%, #E8E2D5 100%);
}

/* Responsive */
@media (max-width: 767px) {
  .about__bio-title {
    font-size: clamp(2.75rem, 9vw, 3.5rem);
    margin-bottom: 2rem;
  }
  
  .about__text {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
  }
  
  .about__text--highlight {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
  
  .about__cta .btn {
    padding: 1.25rem 2.75rem;
    font-size: 0.95rem;
  }
}
