/* ============================================================
   GIGINUTRIFIT · REAL BALANCE — landing.css v1.1
   Todo scopeado bajo #gnf-landing (no interfiere con el tema)
   Paleta y proporciones: brandbook Gigi, mayo 2026
   ============================================================ */

#gnf-landing {
  --lavanda: #DBB8FF;
  --lila: #A87FD4;
  --niebla: #F5EEFF;
  --oscuro: #2D1F3D;
  --blanco: #FFFFFF;
  --sombra: 0 18px 50px rgba(45, 31, 61, .07);
  --sombra-lila: 0 14px 34px rgba(168, 127, 212, .35);
  --radius: 22px;
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  font-family: var(--f-body);
  color: var(--oscuro);
  background: var(--niebla);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- mini reset dentro del scope ---------- */
#gnf-landing *, #gnf-landing *::before, #gnf-landing *::after { box-sizing: border-box; margin: 0; padding: 0; }
#gnf-landing img, #gnf-landing video { max-width: 100%; height: auto; display: block; }
#gnf-landing a { text-decoration: none; color: inherit; }
#gnf-landing ul, #gnf-landing ol { list-style: none; }
#gnf-landing button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
#gnf-landing :focus-visible { outline: 3px solid var(--lila); outline-offset: 3px; border-radius: 6px; }
#gnf-landing ::selection { background: var(--lavanda); color: var(--oscuro); }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

/* ---------- contenedores y secciones ---------- */
#gnf-landing .gnf-container { width: min(1140px, 92%); margin-inline: auto; }
#gnf-landing .gnf-container--narrow { width: min(760px, 92%); }
#gnf-landing .gnf-section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
#gnf-landing .gnf-center { text-align: center; margin-top: 2.5rem; }

/* ---------- tipografía ---------- */
#gnf-landing h1, #gnf-landing h2, #gnf-landing h3 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.01em; }
#gnf-landing h1 { font-size: clamp(2.5rem, 9vw, 4.6rem); line-height: 1.05; }
#gnf-landing h2 { font-size: clamp(2rem, 6.5vw, 3.2rem); line-height: 1.12; margin-bottom: 1.2rem; }
#gnf-landing h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
#gnf-landing h1 em, #gnf-landing h2 em { font-style: italic; color: var(--lila); }

#gnf-landing .gnf-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lila); margin-bottom: 1rem;
}
#gnf-landing .gnf-section__sub { max-width: 560px; opacity: .82; margin-bottom: 2.5rem; }

/* ---------- botones ---------- */
#gnf-landing .gnf-btn {
  display: inline-block; background: var(--lavanda); color: var(--oscuro);
  font-weight: 800; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 999px; text-align: center;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
#gnf-landing .gnf-btn:hover { background: var(--lila); color: var(--blanco); transform: translateY(-2px); box-shadow: var(--sombra-lila); }
#gnf-landing .gnf-btn--ghost { background: transparent; border: 1.5px solid rgba(45,31,61,.25); }
#gnf-landing .gnf-btn--ghost:hover { background: transparent; color: var(--lila); border-color: var(--lila); box-shadow: none; }
#gnf-landing .gnf-btn--sm { padding: .65rem 1.4rem; font-size: .82rem; }
#gnf-landing .gnf-btn--xl { padding: 1.25rem 2.8rem; font-size: 1.05rem; }

#gnf-landing .gnf-textlink { font-weight: 700; color: var(--lila); border-bottom: 2px solid var(--lavanda); padding-bottom: 2px; transition: border-color .2s; }
#gnf-landing .gnf-textlink:hover { border-color: var(--lila); }
#gnf-landing .gnf-microtrust { font-size: .85rem; opacity: .65; margin-top: 1rem; }

/* ============ S0 HEADER ============ */
#gnf-landing .gnf-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  padding: 1rem 0; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  background: var(--oscuro);
}
#gnf-landing .gnf-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(45,31,61,.25); padding: .65rem 0;
}
#gnf-landing .gnf-header__inner { display: flex; align-items: center; justify-content: space-between; }
#gnf-landing .gnf-logo { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .02em; color: var(--blanco); }
#gnf-landing .gnf-logo span { color: var(--lavanda); font-style: italic; font-weight: 500; }

#gnf-landing .gnf-nav { display: flex; align-items: center; gap: 1.8rem; font-weight: 600; font-size: .95rem; }
#gnf-landing .gnf-nav a:not(.gnf-btn) { color: var(--niebla); }

#gnf-landing .gnf-burger { display: none; width: 44px; height: 44px; position: relative; z-index: 101; }
#gnf-landing .gnf-burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--niebla);
  transition: transform .3s ease, top .3s ease;
}
#gnf-landing .gnf-burger span:nth-child(1) { top: 17px; }
#gnf-landing .gnf-burger span:nth-child(2) { top: 26px; }
#gnf-landing .gnf-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
#gnf-landing .gnf-burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (min-width: 900px) {
  #gnf-landing .gnf-nav a:not(.gnf-btn) { position: relative; }
  #gnf-landing .gnf-nav a:not(.gnf-btn)::after {
    content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 100%;
    background: var(--lila); transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
  }
  #gnf-landing .gnf-nav a:not(.gnf-btn):hover::after { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 899px) {
  #gnf-landing .gnf-burger { display: block; }
  #gnf-landing .gnf-nav {
    position: fixed; inset: 0; z-index: 100; background: var(--niebla);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 8vh 8vw;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  #gnf-landing .gnf-nav.is-open { opacity: 1; pointer-events: auto; }
  #gnf-landing .gnf-nav a:not(.gnf-btn) {
    font-family: var(--f-display); font-size: clamp(2rem, 8vw, 2.6rem); font-weight: 500;
    transform: translateY(14px); opacity: 0; transition: transform .45s ease, opacity .45s ease;
    color: var(--oscuro);
  }
  #gnf-landing .gnf-nav.is-open a:not(.gnf-btn) { transform: none; opacity: 1; }
  #gnf-landing .gnf-nav.is-open a:nth-child(1) { transition-delay: .05s; }
  #gnf-landing .gnf-nav.is-open a:nth-child(2) { transition-delay: .12s; }
  #gnf-landing .gnf-nav.is-open a:nth-child(3) { transition-delay: .19s; }
  #gnf-landing .gnf-nav.is-open a:nth-child(4) { transition-delay: .26s; }
  #gnf-landing .gnf-nav .gnf-btn { margin-top: 1.2rem; transition-delay: .33s; }
}

/* ============ S1 HERO ============ */
#gnf-landing .gnf-hero { padding: 7.5rem 0 3.5rem; position: relative; overflow: hidden; }
#gnf-landing .gnf-hero__grid { display: grid; gap: 2.5rem; align-items: center; position: relative; z-index: 1; }
#gnf-landing .gnf-hero__sub { max-width: 520px; margin: 1.4rem 0 2rem; opacity: .85; font-size: 1.1rem; }
#gnf-landing .gnf-hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

#gnf-landing .gnf-hero__media { position: relative; justify-self: center; width: min(420px, 88%); }
#gnf-landing .gnf-hero__media::before {
  content: ''; position: absolute; inset: -12% -18%;
  background: radial-gradient(closest-side, rgba(219,184,255,.55), transparent 72%);
  z-index: 0; border-radius: 50%;
}
#gnf-landing .gnf-hero__media img {
  position: relative; z-index: 1; border-radius: 200px 200px var(--radius) var(--radius);
  object-fit: cover; aspect-ratio: 4 / 5; box-shadow: var(--sombra); width: 100%;
}

/* Entrada coreografiada al cargar */
#gnf-landing .gnf-hero__text > * { opacity: 0; transform: translateY(22px); animation: gnf-up .8s ease forwards; }
#gnf-landing .gnf-hero__text .gnf-eyebrow { animation-delay: .1s; }
#gnf-landing .gnf-hero__text h1 { animation-delay: .22s; }
#gnf-landing .gnf-hero__text .gnf-hero__sub { animation-delay: .34s; }
#gnf-landing .gnf-hero__text .gnf-hero__ctas { animation-delay: .46s; }
#gnf-landing .gnf-hero__text .gnf-microtrust { animation-delay: .58s; }
#gnf-landing .gnf-hero__media { opacity: 0; transform: scale(.96); animation: gnf-in .9s ease .35s forwards; }
@keyframes gnf-up { to { opacity: 1; transform: translateY(0); } }
@keyframes gnf-in { to { opacity: 1; transform: scale(1); } }

/* Blob lavanda flotando (atmósfera) */
#gnf-landing .gnf-hero::after, #gnf-landing .gnf-final::after {
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(219,184,255,.35), transparent 70%);
  pointer-events: none; z-index: 0;
  animation: gnf-float 14s ease-in-out infinite alternate;
}
#gnf-landing .gnf-hero::after { top: -180px; left: -180px; }
#gnf-landing .gnf-final::after { bottom: -220px; right: -160px; animation-delay: -7s; }
@keyframes gnf-float { to { transform: translate(50px, 36px) scale(1.08); } }

@media (min-width: 900px) {
  #gnf-landing .gnf-hero { padding: 10rem 0 5rem; }
  #gnf-landing .gnf-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
  #gnf-landing .gnf-hero__media { width: min(460px, 100%); justify-self: end; }
}

/* ============ S2 MARQUEE ============ */
#gnf-landing .gnf-marquee { background: var(--lavanda); overflow: hidden; padding: .9rem 0; }
#gnf-landing .gnf-marquee__track {
  display: flex; align-items: center; gap: 2rem; width: max-content;
  animation: gnf-scroll 56s linear infinite;
  font-weight: 700; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; color: var(--oscuro);
}
#gnf-landing .gnf-marquee__track i { font-style: normal; color: var(--lila); }
#gnf-landing .gnf-marquee:hover .gnf-marquee__track,
#gnf-landing .gnf-marquee:active .gnf-marquee__track { animation-play-state: paused; }
@keyframes gnf-scroll { to { transform: translateX(-50%); } }

/* ============ S3 DOLORES ============ */
#gnf-landing .gnf-dolores { background: var(--blanco); }
#gnf-landing .gnf-dolores__layout {
  display: grid; grid-template-columns: 1fr;
  grid-template-areas: "eyebrow" "title" "compare" "cards" "puente" "cta";
}
#gnf-landing .gnf-dolores__layout > .gnf-eyebrow { grid-area: eyebrow; }
#gnf-landing .gnf-dolores__layout > h2 { grid-area: title; }
#gnf-landing .gnf-dolores__layout > .gnf-compare { grid-area: compare; margin-top: 2rem; }
#gnf-landing .gnf-dolores__layout > .gnf-dolores__grid { grid-area: cards; }
#gnf-landing .gnf-dolores__layout > .gnf-dolores__puente { grid-area: puente; }
#gnf-landing .gnf-dolores__layout > .gnf-center { grid-area: cta; }
@media (min-width: 1024px) {
  #gnf-landing .gnf-dolores__layout {
    grid-template-columns: 1.05fr .95fr; column-gap: 3rem; align-items: start;
    grid-template-areas:
      "eyebrow compare"
      "title compare"
      "cards compare"
      "puente puente"
      "cta cta";
  }
  #gnf-landing .gnf-dolores__layout > .gnf-compare { margin-top: 0; }
}

/* ---- comparador antes/después ---- */
#gnf-landing .gnf-compare__frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--sombra);
  background: linear-gradient(135deg, var(--niebla), rgba(219,184,255,.4));
  touch-action: pan-y; user-select: none; cursor: grab;
}
#gnf-landing .gnf-compare__frame.is-dragging { cursor: grabbing; }
#gnf-landing .gnf-compare__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  background: var(--niebla); -webkit-user-drag: none; pointer-events: none;
}
#gnf-landing .gnf-compare__img--after { z-index: 1; }
#gnf-landing .gnf-compare__img--before { z-index: 2; clip-path: inset(0 50% 0 0); }
#gnf-landing .gnf-compare__divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--lila);
  transform: translateX(-50%); z-index: 3; pointer-events: none;
}
#gnf-landing .gnf-compare__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: var(--lavanda);
  display: flex; align-items: center; justify-content: center; color: var(--oscuro);
  box-shadow: var(--sombra); pointer-events: auto; cursor: grab;
}
#gnf-landing .gnf-compare__handle:focus-visible { outline: 3px solid var(--lila); outline-offset: 3px; }
#gnf-landing .gnf-compare__label {
  position: absolute; bottom: .8rem; z-index: 4; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; pointer-events: none;
}
#gnf-landing .gnf-compare__label--before {
  left: .8rem; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(45, 31, 61, .4);
}
#gnf-landing .gnf-compare__label--after {
  right: .8rem; font-weight: 800; color: var(--blanco);
  background: var(--lila); box-shadow: 0 4px 18px rgba(168, 127, 212, .55);
}
#gnf-landing .gnf-compare__stat {
  font-family: var(--f-display); font-size: clamp(1.05rem, 3vw, 1.3rem); font-weight: 500;
  text-align: center; margin-top: 1.2rem; color: var(--oscuro);
}
#gnf-landing .gnf-compare__stat-num { font-style: italic; font-weight: 700; color: var(--lila); }

#gnf-landing .gnf-dolores__grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
#gnf-landing .gnf-dolor {
  background: var(--niebla); border-radius: var(--radius); padding: 1.5rem 1.6rem 1.5rem 2.6rem;
  position: relative; transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
#gnf-landing .gnf-dolor::before {
  content: ''; position: absolute; left: 1.2rem; top: 2rem;
  width: 9px; height: 9px; border-radius: 50%; background: var(--lila);
}
@media (hover: hover) {
  #gnf-landing .gnf-dolor:hover { transform: translateY(-4px); box-shadow: var(--sombra); background-color: rgba(219, 184, 255, .18); }
}
#gnf-landing .gnf-dolores__puente {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 4.5vw, 1.9rem); line-height: 1.35;
  text-align: center; margin-top: 3rem; color: var(--oscuro);
}
#gnf-landing .gnf-dolores__puente em { font-style: italic; color: var(--lila); }
#gnf-landing .gnf-dolores__cierre {
  font-family: var(--f-display); font-size: clamp(1.5rem, 5vw, 2.2rem); line-height: 1.25;
  text-align: center; margin-top: 2rem;
}
#gnf-landing .gnf-dolores__cierre em { font-style: italic; color: var(--lila); }
@media (min-width: 720px) { #gnf-landing .gnf-dolores__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { #gnf-landing .gnf-dolores__grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ============ S3B SÍNTOMAS ============ */
#gnf-landing .gnf-sintomas { background: linear-gradient(135deg, var(--niebla), rgba(219,184,255,.35)); }
#gnf-landing .gnf-sintomas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 2.2rem; }
#gnf-landing .gnf-sintoma {
  background: var(--blanco); border-radius: var(--radius); padding: .9rem 1.1rem;
  font-size: .92rem; font-weight: 600; line-height: 1.3; text-align: center; color: var(--oscuro);
  box-shadow: var(--sombra);
}
#gnf-landing .gnf-sintomas__cierre {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.3rem, 4.2vw, 1.75rem); line-height: 1.35;
  text-align: center; margin-top: 2.5rem; color: var(--oscuro);
}
@media (min-width: 640px) { #gnf-landing .gnf-sintomas__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { #gnf-landing .gnf-sintomas__grid { grid-template-columns: repeat(4, 1fr); } }

/* ============ S4 TRANSFORMACIONES (franja continua, huecos pendientes) ============ */
#gnf-landing .gnf-transf { background: var(--niebla); }
#gnf-landing .gnf-transf-marquee { overflow: hidden; margin-top: 3rem; }
#gnf-landing .gnf-transf-marquee__track {
  display: flex; align-items: center; gap: 1.2rem; width: max-content;
  animation: gnf-scroll 160s linear infinite; /* 16 fotos: el doble de recorrido, misma velocidad */
}
#gnf-landing .gnf-transf__foto {
  flex-shrink: 0; display: block; width: 260px; aspect-ratio: 1 / 1;
  border-radius: var(--radius); box-shadow: var(--sombra);
  background: var(--blanco); overflow: hidden;
}
#gnf-landing .gnf-transf__foto img {
  width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none;
}
@media (hover: hover) {
  #gnf-landing .gnf-transf-marquee:hover .gnf-transf-marquee__track { animation-play-state: paused; }
}
@media (max-width: 640px) {
  #gnf-landing .gnf-transf__foto { width: 190px; }
}

/* ============ S5 MÉTODO ============ */
#gnf-landing .gnf-metodo { background: var(--blanco); }
#gnf-landing .gnf-pilares { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
#gnf-landing .gnf-pilar {
  background: var(--niebla); border-radius: var(--radius); padding: 1.8rem 1.7rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
#gnf-landing .gnf-pilar:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
#gnf-landing .gnf-pilar h3 { color: var(--lila); margin-bottom: .6rem; }
/* Desde 720px las tarjetas van una al lado de otra: grid-auto-rows: 1fr iguala la
   altura de todas las filas para que las 5 midan exactamente lo mismo.
   En móvil (1 columna) no se aplica: ahí solo dejaría huecos vacíos. */
@media (min-width: 720px) { #gnf-landing .gnf-pilares { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; } }
/* En 2 columnas la 5ª tarjeta queda sola: la centramos con el mismo ancho que las demás */
@media (min-width: 720px) and (max-width: 1023px) {
  #gnf-landing .gnf-pilar:nth-child(5) { grid-column: 1 / -1; width: calc(50% - .6rem); margin-inline: auto; }
}
@media (min-width: 1024px) {
  #gnf-landing .gnf-pilares { grid-template-columns: repeat(6, 1fr); }
  #gnf-landing .gnf-pilar { grid-column: span 2; }
  #gnf-landing .gnf-pilar:nth-child(4) { grid-column: 2 / span 2; }
  #gnf-landing .gnf-pilar:nth-child(5) { grid-column: span 2; }
}

#gnf-landing .gnf-ciclo {
  margin-top: 3rem; background: linear-gradient(135deg, var(--niebla), rgba(219,184,255,.45));
  border-radius: var(--radius); padding: 2.2rem 1.8rem; text-align: center;
}
#gnf-landing .gnf-ciclo__label { font-family: var(--f-display); font-size: 1.35rem; margin-bottom: 1.1rem; }
#gnf-landing .gnf-ciclo__fases { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
#gnf-landing .gnf-ciclo__fases span {
  background: var(--blanco); color: var(--lila); font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase; padding: .55rem 1.2rem; border-radius: 999px;
}
/* El texto va ahora ENCIMA de las fases. Se ensancha (antes 520px dejaba 310px
   de hueco a cada lado dentro de un bloque de 1140px) manteniendo una línea legible. */
#gnf-landing .gnf-ciclo__nota {
  margin: 0 auto 1.6rem; font-size: 1rem; opacity: .85; max-width: 800px;
}
#gnf-landing .gnf-ciclo__nota strong { font-weight: 700; opacity: 1; }
#gnf-landing .gnf-metodo__cierre {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 4.5vw, 1.9rem); line-height: 1.35;
  text-align: center; margin-top: 3rem; color: var(--oscuro);
}
#gnf-landing .gnf-metodo__cierre em { font-style: italic; color: var(--lila); }

/* ============ S6 INCLUYE ============ */
#gnf-landing .gnf-incluye { background: var(--niebla); }
#gnf-landing .gnf-incluye__grid { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
#gnf-landing .gnf-item {
  display: flex; align-items: flex-start; gap: 1rem; background: var(--blanco);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--sombra);
}
#gnf-landing .gnf-item svg { flex: 0 0 26px; width: 26px; height: 26px; color: var(--lila); margin-top: .2rem; }
#gnf-landing .gnf-item h3 { margin-bottom: .35rem; font-size: 1.1rem; }
#gnf-landing .gnf-item p { font-size: .95rem; opacity: .82; }
/* El texto bajo el botón reutiliza .gnf-microtrust (mismo tamaño y color secundario
   que el resto de la web); aquí solo hace falta centrarlo. */
#gnf-landing .gnf-incluye .gnf-microtrust { text-align: center; }
/* Desde 720px las tarjetas van en 2 columnas: igualamos la altura de las filas
   para que las cuatro queden equilibradas aunque un texto sea más largo. */
@media (min-width: 720px) { #gnf-landing .gnf-incluye__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; } }

/* ============ S7 SOBRE MÍ ============ */
#gnf-landing .gnf-sobre { background: var(--blanco); }
#gnf-landing .gnf-sobre__grid { display: grid; gap: 2.5rem; align-items: center; }
#gnf-landing .gnf-sobre__media { overflow: hidden; border-radius: var(--radius); width: min(420px, 100%); margin-inline: auto; }
#gnf-landing .gnf-sobre__media img {
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
  box-shadow: var(--sombra); transition: transform .6s ease;
}
#gnf-landing .gnf-sobre__media:hover img { transform: scale(1.045); }
#gnf-landing .gnf-sobre__text p { margin-bottom: 1rem; }
#gnf-landing .gnf-quote {
  font-family: var(--f-display); font-style: italic; font-size: 1.4rem; line-height: 1.35;
  color: var(--lila); border-left: 3px solid var(--lavanda);
  padding-left: 1.2rem; margin-top: 1.6rem;
}
#gnf-landing .gnf-sobre__video { margin-top: 3.5rem; text-align: center; }
#gnf-landing .gnf-sobre__video-label { font-family: var(--f-display); font-size: 1.3rem; margin-bottom: 1.2rem; }
#gnf-landing .gnf-sobre__video video {
  width: min(360px, 90%); margin-inline: auto; border-radius: var(--radius);
  aspect-ratio: 9 / 16; object-fit: cover; box-shadow: var(--sombra); background: var(--oscuro);
}
@media (min-width: 900px) { #gnf-landing .gnf-sobre__grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; } }

/* ============ S8 TESTIMONIOS ============ */
#gnf-landing .gnf-testis { background: var(--niebla); }
#gnf-landing .gnf-testis__grid { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
#gnf-landing .gnf-testi {
  background: var(--blanco); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--sombra);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.2rem;
}
#gnf-landing .gnf-testi p { font-family: var(--f-display); font-style: italic; font-size: 1.12rem; line-height: 1.5; }
#gnf-landing .gnf-testi footer { font-size: .88rem; opacity: .75; }
#gnf-landing .gnf-testis__caps {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  margin-top: 2.5rem; padding-bottom: .5rem; scrollbar-width: none;
}
#gnf-landing .gnf-testis__caps::-webkit-scrollbar { display: none; }
#gnf-landing .gnf-testis__caps img {
  flex: 0 0 min(64vw, 280px); scroll-snap-align: center;
  border-radius: 18px; box-shadow: var(--sombra);
}
@media (min-width: 900px) { #gnf-landing .gnf-testis__grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ============ S9 FILTRO ============ */
#gnf-landing .gnf-filtro { background: var(--blanco); }
#gnf-landing .gnf-filtro h2 { text-align: center; }
#gnf-landing .gnf-filtro__cols { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
#gnf-landing .gnf-filtro__col { border-radius: var(--radius); padding: 2rem 1.8rem; }
#gnf-landing .gnf-filtro__col h3 { margin-bottom: 1.2rem; }
#gnf-landing .gnf-filtro__col li { position: relative; padding-left: 1.8rem; margin-bottom: .9rem; }
#gnf-landing .gnf-filtro__col--si { background: var(--niebla); }
#gnf-landing .gnf-filtro__col--si h3 { color: var(--lila); }
#gnf-landing .gnf-filtro__col--si li::before { content: '✓'; position: absolute; left: 0; color: var(--lila); font-weight: 800; }
#gnf-landing .gnf-filtro__col--no { background: var(--oscuro); color: var(--niebla); }
#gnf-landing .gnf-filtro__col--no h3 { color: var(--lavanda); }
#gnf-landing .gnf-filtro__col--no li::before { content: '✕'; position: absolute; left: 0; color: var(--lavanda); font-weight: 800; }
@media (min-width: 860px) { #gnf-landing .gnf-filtro__cols { grid-template-columns: 1.1fr .9fr; } }

/* ============ S10 PASOS ============ */
#gnf-landing .gnf-pasos { background: var(--niebla); }
#gnf-landing .gnf-pasos__list { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
#gnf-landing .gnf-paso { background: var(--blanco); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--sombra); }
#gnf-landing .gnf-paso__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lavanda); color: var(--oscuro);
  font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem;
}
#gnf-landing .gnf-paso h3 { margin-bottom: .5rem; }
#gnf-landing .gnf-paso p { font-size: .97rem; opacity: .85; }
#gnf-landing .gnf-plazas {
  margin-top: 2rem; background: rgba(219,184,255,.28); border: 1.5px dashed var(--lila);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; font-size: .97rem;
}
@media (min-width: 900px) { #gnf-landing .gnf-pasos__list { grid-template-columns: 1fr 1fr 1fr; } }

/* ============ S11 FAQ ============ */
#gnf-landing .gnf-faq { background: var(--blanco); }
#gnf-landing .gnf-faq__list { margin-top: 2rem; }
#gnf-landing .gnf-faq__item { border-bottom: 1px solid rgba(45,31,61,.12); }
#gnf-landing .gnf-faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left; font-weight: 700; font-size: 1.05rem; padding: 1.3rem 0;
}
#gnf-landing .gnf-faq__q:hover { color: var(--lila); }
#gnf-landing .gnf-faq__icon { position: relative; flex: 0 0 18px; height: 18px; }
#gnf-landing .gnf-faq__icon::before, #gnf-landing .gnf-faq__icon::after {
  content: ''; position: absolute; background: var(--lila); transition: transform .3s ease;
}
#gnf-landing .gnf-faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
#gnf-landing .gnf-faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
#gnf-landing .gnf-faq__item.is-open .gnf-faq__icon::after { transform: scaleY(0); }
#gnf-landing .gnf-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; opacity: .85; }
#gnf-landing .gnf-faq__a p { padding: 0 0 1.3rem; }

/* ============ S12 CTA FINAL ============ */
#gnf-landing .gnf-final {
  background: linear-gradient(180deg, var(--niebla) 0%, rgba(219,184,255,.55) 100%);
  padding: clamp(5rem, 12vw, 8.5rem) 0; text-align: center;
  position: relative; overflow: hidden;
}
#gnf-landing .gnf-final__inner { position: relative; z-index: 1; }
#gnf-landing .gnf-final h2 { max-width: 780px; margin-inline: auto; }
#gnf-landing .gnf-final p { max-width: 520px; margin: 1.3rem auto 2.2rem; opacity: .85; }
#gnf-landing .gnf-final .gnf-microtrust { margin-top: 1.4rem; }

/* ============ S13 FOOTER ============ */
#gnf-landing .gnf-footer { background: var(--oscuro); color: var(--niebla); padding: 3.5rem 0 2.5rem; text-align: center; }
#gnf-landing .gnf-footer__logo { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; }
#gnf-landing .gnf-footer__logo span { color: var(--lavanda); font-style: italic; font-weight: 500; }
#gnf-landing .gnf-footer__tag { font-size: .9rem; opacity: .7; margin-top: .5rem; }
#gnf-landing .gnf-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin: 1.8rem 0; font-size: .9rem; }
#gnf-landing .gnf-footer__links a:hover { color: var(--lavanda); }
#gnf-landing .gnf-footer__disclaimer { font-size: .78rem; opacity: .5; max-width: 560px; margin: 0 auto 1rem; }
#gnf-landing .gnf-footer__copy { font-size: .8rem; opacity: .5; }

/* ============ S14 FLOTANTES ============ */
#gnf-landing .gnf-bubble {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--lila); color: var(--blanco);
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--sombra-lila);
  opacity: 0; transform: translateY(14px); transition: opacity .3s, transform .3s, background .2s;
}
#gnf-landing .gnf-bubble.is-visible { opacity: 1; transform: translateY(0); }
#gnf-landing .gnf-bubble:hover { background: var(--oscuro); }

#gnf-landing .gnf-sticky {
  position: fixed; inset: auto 0 0 0; z-index: 80;
  padding: .8rem 4% calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(245,238,255,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(45,31,61,.08);
  transform: translateY(110%); transition: transform .35s ease;
}
#gnf-landing .gnf-sticky.is-visible { transform: translateY(0); }
#gnf-landing .gnf-sticky .gnf-btn { display: block; width: 100%; }
#gnf-landing .gnf-sticky.is-visible .gnf-btn { animation: gnf-pulse 6s ease-in-out infinite; }
@keyframes gnf-pulse {
  0%, 88%, 100% { box-shadow: 0 0 0 0 rgba(168,127,212,0); }
  92% { box-shadow: 0 0 0 10px rgba(168,127,212,.22); }
  96% { box-shadow: 0 0 0 0 rgba(168,127,212,0); }
}

@media (min-width: 900px) {
  #gnf-landing .gnf-bubble { display: flex; }
  #gnf-landing .gnf-sticky { display: none; }
}

/* ============ ANIMACIÓN REVEAL (solo si hay JS: .gnf-js) ============ */
#gnf-landing.gnf-js .gnf-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
#gnf-landing.gnf-js .gnf-reveal.is-in { opacity: 1; transform: translateY(0); }
#gnf-landing.gnf-js .gnf-dolores__grid .gnf-reveal:nth-child(2),
#gnf-landing.gnf-js .gnf-pilares .gnf-reveal:nth-child(2),
#gnf-landing.gnf-js .gnf-incluye__grid .gnf-reveal:nth-child(2),
#gnf-landing.gnf-js .gnf-testis__grid .gnf-reveal:nth-child(2),
#gnf-landing.gnf-js .gnf-pasos__list .gnf-reveal:nth-child(2) { transition-delay: .1s; }
#gnf-landing.gnf-js .gnf-dolores__grid .gnf-reveal:nth-child(3),
#gnf-landing.gnf-js .gnf-pilares .gnf-reveal:nth-child(3),
#gnf-landing.gnf-js .gnf-incluye__grid .gnf-reveal:nth-child(3),
#gnf-landing.gnf-js .gnf-testis__grid .gnf-reveal:nth-child(3),
#gnf-landing.gnf-js .gnf-pasos__list .gnf-reveal:nth-child(3) { transition-delay: .2s; }
#gnf-landing.gnf-js .gnf-dolores__grid .gnf-reveal:nth-child(4),
#gnf-landing.gnf-js .gnf-pilares .gnf-reveal:nth-child(4),
#gnf-landing.gnf-js .gnf-incluye__grid .gnf-reveal:nth-child(4) { transition-delay: .3s; }
#gnf-landing.gnf-js .gnf-dolores__grid .gnf-reveal:nth-child(5),
#gnf-landing.gnf-js .gnf-pilares .gnf-reveal:nth-child(5) { transition-delay: .4s; }
#gnf-landing.gnf-js .gnf-dolores__grid .gnf-reveal:nth-child(6) { transition-delay: .5s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(2) { transition-delay: .05s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(3) { transition-delay: .1s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(4) { transition-delay: .15s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(5) { transition-delay: .2s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(6) { transition-delay: .25s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(7) { transition-delay: .3s; }
#gnf-landing.gnf-js .gnf-sintomas__grid .gnf-reveal:nth-child(8) { transition-delay: .35s; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #gnf-landing.gnf-js .gnf-reveal { opacity: 1; transform: none; transition: none; }
  #gnf-landing .gnf-dolor:hover { transform: none; }
  #gnf-landing .gnf-hero__text > *, #gnf-landing .gnf-hero__media { animation: none; opacity: 1; transform: none; }
  #gnf-landing .gnf-hero::after, #gnf-landing .gnf-final::after { animation: none; }
  #gnf-landing .gnf-sticky.is-visible .gnf-btn { animation: none; }
  #gnf-landing .gnf-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  #gnf-landing .gnf-transf-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  #gnf-landing .gnf-transf__foto[aria-hidden="true"] { display: none; }
}
