/* ============================================================= */
/*  Clip Anime — Landing de ventas (ES · Perú)                    */
/*  Paleta derivada del logo oficial:                             */
/*    #04003D navy del contorno · #064ECE azul de "cli"           */
/*    #FA8544 → #FF0980 degradado de "ANIME" · #F21C6E play       */
/*  Tipografías: Fredoka (redondeada, afín al logo) + Jakarta Sans */
/* ============================================================= */

:root {
  /* Escala de fondo en la misma familia de tono que el navy del logo */
  --bg:        #050031;
  --bg-2:      #0A0642;
  --surface:   #130C4E;
  --surface-2: #1B1160;
  --line:      rgba(255,255,255,.10);
  --text:      #F0ECFF;
  --muted:     #A79DD6;

  --brand:     #FF0980;   /* magenta del logo */
  --brand-2:   #FA8544;   /* naranja del logo */
  --accent:    #4D8BFF;   /* azul de "cli", aclarado para contrastar sobre navy */
  --accent-ink:#064ECE;   /* azul original: solo sobre fondos claros */

  /* Degradado de marca. Sobre él SIEMPRE va tinta navy (#04003D):
     da 5,2:1 en el extremo magenta y 9,7:1 en el naranja. Texto blanco
     encima de este degradado no pasaría contraste. */
  --grad:      linear-gradient(100deg, #FFA046 0%, #FF5C5C 46%, #FF0980 100%);
  --grad-soft: linear-gradient(100deg, #FA8544, #FF0980);
  --ink:       #04003D;   /* tinta sobre superficies de marca */

  --radius:    20px;
  --radius-sm: 13px;
  --maxw:      1140px;
  --shadow:    0 24px 60px -20px rgba(255,9,128,.42);
  --ring:      0 0 0 1px var(--line);

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* --------------------------- Skip link -------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--grad-soft); color: var(--ink); font-weight: 800;
  padding: 10px 18px; border-radius: 10px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
#contenido:focus { outline: none; }

/* ----------------------------- Reset ----------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Resplandor de fondo: naranja arriba, magenta a media altura, azul abajo */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(58vw 48vh at 82% -6%, rgba(250,133,68,.16), transparent 60%),
    radial-gradient(52vw 42vh at 4% 18%, rgba(255,9,128,.13), transparent 58%),
    radial-gradient(46vw 40vh at 60% 92%, rgba(77,139,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

/* --------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 780px; }
.section { padding: 92px 0; position: relative; scroll-margin-top: 122px; }
#top { scroll-margin-top: 0; }
.kicker {
  display: inline-block; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  font-size: .78rem; color: var(--accent); margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display); font-weight: 600; line-height: 1.08;
  font-size: clamp(1.9rem, 4.6vw, 3rem); letter-spacing: -.01em;
  margin-bottom: 18px;
}
.section__lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; margin-inline: auto; text-wrap: pretty; }
.section__title, .hero__title, .finalcta h2 { text-wrap: balance; }
/* Texto con degradado. Color base legible como respaldo si el navegador
   no soporta background-clip:text (evita texto invisible). */
.grad {
  color: #FF8A5C;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad { -webkit-text-fill-color: transparent; color: transparent; }
}

/* --------------------------- Botones ---------------------------- */
.btn {
  --pad: 14px 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: var(--pad); border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap; text-align: center;
  min-height: 44px; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
/* Tinta navy sobre el degradado de marca: mismo recurso que usa el logo */
.btn--primary {
  background: var(--grad); color: var(--ink);
  box-shadow: 0 12px 30px -8px rgba(255,9,128,.55), inset 0 0 0 1px rgba(255,255,255,.22);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 40px -10px rgba(255,9,128,.7); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--text); box-shadow: var(--ring); }
.btn--ghost:hover { background: rgba(255,255,255,.11); transform: translateY(-2px); }
.btn--lg { --pad: 18px 34px; font-size: 1.08rem; }
.btn--sm { --pad: 11px 18px; font-size: .9rem; min-height: 44px; }
.btn--block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
/* El precio dentro de un botón va en un solo elemento: si no, el gap del
   flex se suma al espacio del texto y "S/" queda separado de la cifra. */
.btn__price { white-space: nowrap; }
.pill svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* --------------------------- Topbar ----------------------------- */
.topbar {
  background: var(--grad-soft); color: var(--ink); text-align: center;
  font-size: .9rem; font-weight: 700; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.topbar strong { font-variant-numeric: tabular-nums; }
.topbar__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 0 rgba(4,0,61,.8); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(4,0,61,.6)} 70%{box-shadow:0 0 0 8px rgba(4,0,61,0)} 100%{box-shadow:0 0 0 0 rgba(4,0,61,0)} }

/* --------------------------- Header ----------------------------- */
.sitehead { position: sticky; top: 0; z-index: 50; }
.header {
  position: relative;
  backdrop-filter: blur(12px); background: rgba(5,0,49,.78);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 18px; height: 68px; }

/* El logo vive dentro de una pastilla blanca: así conserva sus colores
   originales (el contorno navy se perdería sobre el fondo del sitio), igual
   que la foto de perfil de TikTok. */
.logo { display: flex; align-items: center; }
.logo__chip {
  display: grid; place-items: center; padding: 7px 13px; border-radius: 14px;
  background: #fff; box-shadow: 0 8px 22px -10px rgba(255,9,128,.55), inset 0 0 0 1px rgba(4,0,61,.08);
  transition: transform .2s ease, box-shadow .25s ease;
}
.logo:hover .logo__chip { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(255,9,128,.7); }
.logo__chip img { width: auto; height: 26px; }
.footer__brand .logo__chip img { height: 30px; }

.nav { display: flex; gap: 26px; margin-left: auto; font-weight: 600; font-size: .95rem; }
.nav a { display: inline-flex; align-items: center; gap: 11px; color: var(--muted); transition: color .2s; padding: 6px 2px; }
.nav a:hover { color: var(--text); }
/* Chips con icono: solo visibles en el menú móvil desplegado */
.nav__ico { display: none; }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------------------------- Hero ------------------------------ */
.hero { position: relative; padding: 64px 0 84px; overflow: hidden; scroll-margin-top: 122px; }
.hero__glow {
  position: absolute; width: 620px; height: 620px; right: -160px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,9,128,.30), transparent 62%); filter: blur(20px);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,9,128,.14); color: #FFC2DD; box-shadow: 0 0 0 1px rgba(255,9,128,.34);
  font-weight: 700; font-size: .85rem; margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5.6vw, 3.9rem); line-height: 1.04; letter-spacing: -.015em; margin-bottom: 20px;
}
.hero__sub { font-size: 1.16rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .95rem; }
.hero__trust strong { color: var(--text); }
.hero__trust svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; }

/* Mockup de cuadrícula */
.hero__visual { position: relative; }
.thumbgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.thumb {
  position: relative; aspect-ratio: 9/13; border-radius: var(--radius);
  background: linear-gradient(160deg, #2A1060, #4A0F53); box-shadow: var(--shadow), var(--ring);
  overflow: hidden; transition: transform .3s;
}
.thumb--alt  { background: linear-gradient(160deg, #13205C, #2A1060); margin-top: 26px; }
.thumb--alt2 { background: linear-gradient(160deg, #4A0F53, #5E1338); margin-top: -10px; }
.thumb--alt3 { background: linear-gradient(160deg, #13205C, #3A1252); }
.thumb:hover { transform: translateY(-6px) scale(1.02); }
.thumb__img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,0,61,.55)); }
/* Textura sutil tipo "speed lines" para dar carácter anime */
.thumb::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .35; mix-blend-mode: overlay;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.16) 0 2px, transparent 2px 9px);
}
.thumb__dur {
  position: absolute; bottom: 10px; right: 10px; z-index: 2; font-size: .7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 7px; background: rgba(4,0,61,.62); color: #fff; font-variant-numeric: tabular-nums;
}
.thumb__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.28);
}
.thumb__play svg { width: 20px; height: 20px; margin-left: 2px; }
.thumb__tag {
  position: absolute; top: 10px; left: 10px; z-index: 2; font-size: .68rem; font-weight: 800;
  letter-spacing: .05em; padding: 4px 9px; border-radius: 999px; background: rgba(4,0,61,.55); color: #fff;
}
/* Overlay clicable: toda la miniatura lleva a la sección de precio */
.thumb__link, .gcard__link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.floatcard {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); color: var(--text); font-weight: 700; font-size: .85rem;
  padding: 11px 16px; border-radius: 12px; box-shadow: var(--shadow), var(--ring); animation: float 4s ease-in-out infinite;
}
.floatcard svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--brand-2); }
.floatcard--1 { bottom: -14px; left: -18px; }
.floatcard--2 { top: 8px; right: -18px; animation-delay: 1.4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ---------------------------- Stats ----------------------------- */
.stats { padding: 8px 0 12px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem,3.8vw,2.6rem); line-height: 1;
  color: #FF8A5C;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .stat__num { -webkit-text-fill-color: transparent; }
}
.stat__label { color: var(--muted); font-size: .9rem; margin-top: 6px; font-weight: 600; }

/* --------------------------- Problema --------------------------- */
.problem { text-align: center; }
.painlist { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 38px 0 30px; }
.pain {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: left; display: flex; flex-direction: column; gap: 12px;
}
.pain__icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; color: #FFB3D2;
  background: rgba(255,9,128,.14); box-shadow: inset 0 0 0 1px rgba(255,9,128,.28);
}
.pain__icon svg { width: 26px; height: 26px; }
.pain p { color: #CFC7EE; }
.pain strong { color: var(--text); }
.problem__punch { font-size: 1.35rem; font-weight: 800; max-width: 760px; margin: 0 auto; }
.problem__punch strong { color: #FF8ABA; }

/* --------------------------- Solución --------------------------- */
.solution { text-align: center; }
.solution__inner { max-width: 800px; margin: 0 auto; }

/* --------------------- Vistazo a la biblioteca ------------------ */
.showcase { text-align: center; }
.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 42px; }
.gcard {
  position: relative; aspect-ratio: 2/3; border-radius: var(--radius); overflow: hidden; margin: 0;
  background: linear-gradient(160deg, #24135A, #4A0F53); box-shadow: var(--ring);
  transition: transform .25s, box-shadow .25s;
}
.gcard img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.gcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 45%, rgba(4,0,61,.78)); }
.gcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px); box-shadow: 0 0 0 1px rgba(255,255,255,.28);
  opacity: 0; transition: opacity .25s;
}
.gcard:hover .gcard__play { opacity: 1; }
.gcard__play svg { width: 18px; height: 18px; margin-left: 2px; }
.gcard figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-weight: 800; color: #fff; }

/* -------------------------- Beneficios -------------------------- */
.bgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 42px; }
.bcard {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.bcard::before {
  content:""; position:absolute; inset:0 0 auto 0; height:3px; background:var(--grad); transform: scaleX(0); transform-origin:left; transition: transform .3s;
}
.bcard:hover { transform: translateY(-6px); border-color: rgba(255,9,128,.42); box-shadow: var(--shadow); }
.bcard:hover::before { transform: scaleX(1); }
.bcard__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: #FFCBA6;
  background: rgba(250,133,68,.16); box-shadow: inset 0 0 0 1px rgba(250,133,68,.28); margin-bottom: 16px;
}
.bcard__icon svg { width: 26px; height: 26px; }
.bcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; }
.bcard p { color: var(--muted); font-size: .95rem; }

/* --------------------------- Marquee (2 filas opuestas) --------- */
.marquee {
  max-width: 1040px; margin: 0 auto; overflow: hidden; display: grid; gap: 14px; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; gap: 14px; width: max-content; animation: mq 34s linear infinite; }
.marquee__track--rev { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
  padding: 10px 18px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); color: #CFC7EE; font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.marquee__item svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ------------------------- Cómo funciona ------------------------ */
.how { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 42px 0 38px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; position: relative;
}
.step__num {
  width: 56px; height: 56px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); background: var(--grad);
  box-shadow: 0 10px 24px -8px rgba(255,9,128,.6);
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ------------------- Prueba social real (TikTok) ---------------- */
.proof { text-align: center; }
.proof__card {
  margin-top: 42px; background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 24px; padding: 34px 30px;
}
.proof__head { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.proof__avatar {
  width: 62px; height: 62px; border-radius: 50%; background: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px -12px rgba(255,9,128,.7), inset 0 0 0 1px rgba(4,0,61,.08); flex: 0 0 auto; overflow: hidden;
}
.proof__avatar img { width: 46px; height: auto; }
.proof__handle { text-align: left; }
.proof__handle strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.proof__handle span { color: var(--muted); font-size: .9rem; }
.proof__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 26px; }
.proof__item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 14px; }
.proof__num {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,3.4vw,2.1rem); line-height: 1;
  color: #FF8A5C; background: var(--grad); -webkit-background-clip: text; background-clip: text;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .proof__num { -webkit-text-fill-color: transparent; }
}
.proof__label { color: var(--muted); font-size: .85rem; font-weight: 600; margin-top: 6px; }
.proof__note { color: var(--muted); font-size: .92rem; margin-top: 18px; }

/* --------------------------- La oferta -------------------------- */
.pricing { text-align: center; }
.offer {
  position: relative; margin: 52px auto 0; max-width: 960px; text-align: left;
  border-radius: 26px; padding: 2px;              /* borde degradado de 2px */
  background: var(--grad);
  box-shadow: 0 30px 70px -26px rgba(255,9,128,.55);
}
.offer__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px;
  background: linear-gradient(180deg, #150D55, #0D0740);
  border-radius: 24px; padding: 38px 36px;
}
.offer__badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--grad); color: var(--ink); font-weight: 800; font-size: .82rem;
  padding: 8px 20px; border-radius: 999px; box-shadow: 0 10px 24px -8px rgba(255,9,128,.7);
}
.offer__badge svg { width: 15px; height: 15px; }
/* Columna izquierda en flex: así el bloque de entrega puede empujarse al
   fondo (margin-top:auto) y ambas columnas terminan en la misma línea, en
   vez de dejar un hueco suelto bajo la lista. */
.offer__what { display: flex; flex-direction: column; }
.offer__name { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; line-height: 1.15; margin-bottom: 6px; }
.offer__tag { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
/* La lista crece hasta ocupar el alto disponible y reparte el sobrante entre
   sus filas: en escritorio absorbe la diferencia con la tarjeta de precio, y
   en móvil (una sola columna) no sobra nada, así que conserva su gap normal. */
.offer__list { display: grid; gap: 14px; flex: 1 1 auto; align-content: space-between; }
.offer__list li { position: relative; padding-left: 32px; color: #DED8F5; font-size: .97rem; }
.offer__list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .68rem; font-weight: 900; color: var(--ink); background: var(--grad);
}
.offer__list strong { color: var(--text); }

/* Nota de entrega: mismo recurso visual que el bloque de Yape/Plin de la otra
   columna (línea fina + contenido secundario), para que las dos rimen. */
.offer__deliver {
  margin-top: 22px; display: flex; align-items: flex-start; gap: 13px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 14px; padding: 15px 16px;
}
.offer__deliver-ico {
  flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 11px; color: #FFCBA6;
  background: rgba(250,133,68,.16); box-shadow: inset 0 0 0 1px rgba(250,133,68,.28);
}
.offer__deliver-ico svg { width: 20px; height: 20px; }
.offer__deliver p { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.offer__deliver strong { color: var(--text); }

/* Columna derecha: precio + acción */
.offer__buy {
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 24px; text-align: center;
}
.offer__save {
  display: inline-block; align-self: center; font-weight: 800; font-size: .78rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); background: var(--grad-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.offer__old { color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
.offer__now {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.8rem,7vw,3.6rem);
  line-height: 1; color: #fff; margin: 4px 0 2px;
}
.offer__now .offer__cur { font-size: .5em; vertical-align: .38em; margin-right: 2px; color: var(--muted); }
.offer__cycle { display: block; color: var(--muted); font-weight: 700; font-size: .85rem; margin-bottom: 20px; }
.offer__buy .btn { width: 100%; }
.offer__safe { color: var(--muted); font-size: .82rem; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.offer__safe svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Medios alternativos (Yape / Plin). Son secundarios frente al botón
   principal: fondo translúcido, no relleno de marca. Los logos oficiales
   ya traen su propio círculo de color, así que resaltan sobre el navy. */
.payalt { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.payalt__label {
  display: block; color: var(--muted); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.payalt__opts { display: flex; gap: 10px; justify-content: center; }
.payalt__btn {
  display: inline-flex; align-items: center; gap: 9px; flex: 1 1 0; justify-content: center;
  min-height: 48px; padding: 8px 14px; border-radius: 14px;
  background: rgba(255,255,255,.07); box-shadow: var(--ring);
  font-weight: 800; font-size: .95rem; color: var(--text);
  transition: transform .18s ease, background .25s ease, box-shadow .25s ease;
}
.payalt__btn img { width: 30px; height: 30px; flex: 0 0 auto; }
.payalt__btn:hover {
  transform: translateY(-2px); background: rgba(255,255,255,.13);
  box-shadow: 0 10px 22px -10px rgba(255,9,128,.5), var(--ring);
}
.payalt__note { color: var(--muted); font-size: .78rem; margin-top: 10px; }
.pricing__safe { color: var(--muted); font-size: .9rem; margin-top: 28px; }
.pricing__safe svg, .finalcta__safe svg { width: 15px; height: 15px; vertical-align: -3px; }

/* Countdown */
.countdown { margin-top: 26px; text-align: center; }
.countdown__label { display: block; color: var(--muted); font-size: .85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.countdown__clock { display: flex; justify-content: center; gap: 10px; }
.countdown__clock div {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; min-width: 62px;
}
.countdown__clock strong { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; display: block; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown__clock span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* --------------------------- Garantía --------------------------- */
.guarantee__inner {
  display: flex; align-items: center; gap: 30px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 24px; padding: 36px 38px;
}
/* Sello tipo "estampilla": anillo degradado + núcleo oscuro con borde punteado */
.guarantee__seal {
  flex: 0 0 auto; width: 124px; height: 124px; border-radius: 50%; padding: 5px;
  background: conic-gradient(from 200deg, var(--brand-2), var(--brand), var(--accent), var(--brand-2));
  box-shadow: 0 16px 38px -14px rgba(255,9,128,.6), 0 0 0 6px rgba(255,255,255,.04);
}
.guarantee__seal-core {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #241A5E, #0C0636 78%);
  border: 1px dashed rgba(255,255,255,.32);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.guarantee__seal-core svg { width: 16px; height: 16px; color: var(--brand-2); margin-bottom: 3px; }
.guarantee__seal-core strong { font-family: var(--font-display); font-weight: 600; font-size: 2.1rem; line-height: 1; color: #fff; }
.guarantee__seal-core small {
  font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-indent: .2em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}
.guarantee__copy { flex: 1; }
.guarantee h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; margin-bottom: 8px; }
.guarantee p { color: var(--muted); }
.guarantee strong { color: var(--text); }

/* ----------------------------- FAQ ------------------------------ */
/* El encabezado va centrado como el resto de secciones; el contenido de
   las preguntas vuelve a la izquierda para que se lea normal. */
.faq, .contact { text-align: center; }
.accordion { display: grid; gap: 12px; margin-top: 36px; text-align: left; }
.acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.5rem; color: var(--brand-2); transition: transform .25s; line-height: 1; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 24px 20px; color: var(--muted); }
.acc__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------- Contacto ---------------------------- */
.contact__card {
  max-width: 620px; margin: 38px auto 0; text-align: left;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 24px; padding: 32px 30px;
}
.cform { display: grid; gap: 14px; }
.cform label { display: grid; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--muted); }
.cform input[type="text"], .cform input[type="email"], .cform textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font: inherit; font-size: .95rem;
}
.cform textarea { min-height: 130px; resize: vertical; }
.cform__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.cform__msg { font-size: .9rem; font-weight: 700; }
.cform__msg--ok { color: #7BE8B0; }
.cform__msg--err { color: #FF8AA8; }
.contact__alt { color: var(--muted); font-size: .9rem; margin-top: 18px; text-align: center; }
.contact__alt a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------- CTA Final -------------------------- */
.finalcta { text-align: center; overflow: hidden; }
.finalcta__glow { position: absolute; inset: 0; background: radial-gradient(50vw 40vh at 50% 40%, rgba(255,9,128,.2), transparent 60%); }
.finalcta__inner { position: relative; max-width: 720px; margin: 0 auto; }
.finalcta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem,4.6vw,2.9rem); line-height: 1.08; letter-spacing: -.015em; margin-bottom: 16px; }
.finalcta p { color: var(--muted); font-size: 1.12rem; margin-bottom: 28px; }
.finalcta__safe { font-size: .9rem; margin-top: 16px; }

/* ---------------------------- Footer ---------------------------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 48px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 9px; }

.socials { display: flex; gap: 12px; }
.socials__btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--muted); box-shadow: var(--ring);
  transition: transform .2s ease, background .25s ease, color .2s ease, box-shadow .25s ease;
}
.socials__btn svg { width: 20px; height: 20px; }
.socials__btn:hover {
  color: var(--ink); background: var(--grad); transform: translateY(-3px);
  box-shadow: 0 10px 24px -8px rgba(255,9,128,.6), inset 0 0 0 1px rgba(255,255,255,.2);
}
.socials[hidden], .socials__btn[hidden] { display: none; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; color: var(--muted); font-weight: 600; font-size: .92rem; }
.footer__nav a:hover { color: var(--text); }
.footer__legal { color: #9A90C9; font-size: .82rem; line-height: 1.5; }

/* ---------------------- Páginas legales ------------------------- */
.header--simple .header__inner { justify-content: space-between; }
.legal { max-width: 780px; }
.legal__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem); line-height: 1.1; margin-bottom: 10px;
}
.legal__updated { color: var(--muted); font-size: .88rem; margin-bottom: 30px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 34px 0 10px; }
.legal p { color: #CFC7EE; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 12px; display: grid; gap: 6px; }
.legal li { color: #CFC7EE; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
/* El header simple debe caber en móvil: el botón se acorta y luego se compacta */
@media (max-width: 560px) {
  .header--simple .btn__extra { display: none; }
}
@media (max-width: 460px) {
  .header--simple .btn--sm { --pad: 11px 14px; font-size: .85rem; }
}

/* --------------------- Modal de pre-compra ---------------------- */
/* Flex + margin:auto en la tarjeta: centrada cuando cabe y con scroll
   correcto (sin cortar arriba) cuando el teclado móvil reduce el viewport. */
.pmodal { position: fixed; inset: 0; z-index: 90; display: flex; overflow-y: auto; padding: 18px; }
.pmodal[hidden] { display: none; }
.pmodal__overlay { position: fixed; inset: 0; background: rgba(3,0,24,.76); backdrop-filter: blur(4px); }
.pmodal__card {
  position: relative; width: 100%; max-width: 440px; margin: auto;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255,9,128,.45); border-radius: 24px; padding: 30px 26px 24px;
  box-shadow: var(--shadow);
}
.pmodal__x {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.07); color: var(--muted); font-size: 1.25rem; line-height: 1;
}
.pmodal__x:hover { color: #fff; background: rgba(255,255,255,.14); }
.pmodal__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin-bottom: 4px; }
.pmodal__plan { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.pmodal__plan strong { color: var(--text); }
/* Aviso del medio elegido (solo Yape/Plin). En azul, para que no se confunda
   con la nota rosa sobre la cuenta de Google que va justo debajo. */
.pmodal__method {
  font-size: .88rem; font-weight: 700; color: #C3D8FF;
  background: rgba(77,139,255,.13); box-shadow: inset 0 0 0 1px rgba(77,139,255,.32);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 12px;
}
.pmodal__method[hidden] { display: none; }
.pmodal__note {
  font-size: .88rem; color: #FFC2DD; background: rgba(255,9,128,.11);
  box-shadow: inset 0 0 0 1px rgba(255,9,128,.3); border-radius: 12px;
  padding: 10px 14px; margin-bottom: 16px;
}
.pmodal__form { display: grid; gap: 12px; }
.pmodal__form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--muted); }
.pmodal__form input[type="text"], .pmodal__form input[type="email"] {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font: inherit; font-size: .95rem;
}
.pmodal__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.pmodal__consent { display: flex !important; gap: 9px; align-items: flex-start; font-weight: 600 !important; font-size: .82rem !important; }
.pmodal__consent input { margin-top: 3px; accent-color: var(--brand); }
.pmodal__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.pmodal__error { color: #FF8AA8; font-size: .85rem; font-weight: 700; }
.pmodal__safe { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 12px; }

/* ----------------- Página de estado de compra ------------------- */
.thanks { max-width: 640px; text-align: center; }
.thanks__icon {
  width: 74px; height: 74px; margin: 0 auto 18px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(250,133,68,.16);
  box-shadow: inset 0 0 0 1px rgba(250,133,68,.32); color: #FFCBA6;
}
.thanks__icon svg { width: 34px; height: 34px; }
.thanks h1 {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(1.7rem, 4.2vw, 2.4rem); line-height: 1.1; margin-bottom: 12px;
}
.thanks p { color: var(--muted); margin-bottom: 10px; }
.thanks strong { color: var(--text); }
.thanks__ref {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: .12em;
  color: #fff; background: var(--bg); border: 1px dashed rgba(255,255,255,.32);
  border-radius: 12px; padding: 10px 18px; margin: 8px 0 16px;
}
.thanks__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.thanks__links { margin-top: 28px; font-size: .88rem; }
.thanks__links a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.thanks__links a:hover { color: var(--text); }

/* Páginas sin barra CTA fija (legales, estado de compra) */
body.no-stickybar { padding-bottom: 0; }

/* ------------------------ Sticky bar móvil ---------------------- */
.stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px;
  background: rgba(10,6,66,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.stickybar__price { font-weight: 800; font-size: 1.05rem; line-height: 1.25; }
.stickybar__price s { color: var(--muted); font-weight: 600; font-size: .85rem; margin-right: 4px; }
.stickybar__price small { display: block; color: var(--muted); font-weight: 600; font-size: .75rem; }
.stickybar .btn { flex: 0 0 auto; }

/* --------------------- Animaciones de scroll -------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================= */
/*  RESPONSIVE                                                    */
/* ============================================================= */
@media (max-width: 1000px) {
  .nav { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: flex; }
  .header.nav-open .nav {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface); padding: 18px 22px; gap: 12px; border-bottom: 1px solid var(--line);
  }
  /* Menú móvil: links con chip de icono, siguiendo la estética de la página */
  .header.nav-open .nav a { color: var(--text); font-size: 1rem; padding: 4px 0; }
  .header.nav-open .nav__ico {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
    color: #FFCBA6; background: rgba(250,133,68,.16); box-shadow: inset 0 0 0 1px rgba(250,133,68,.28);
  }
  .header.nav-open .nav__ico svg { width: 18px; height: 18px; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 460px; }
  .bgrid { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(3,1fr); }
  .offer__inner { grid-template-columns: 1fr; gap: 26px; padding: 34px 26px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar { font-size: .8rem; padding: 8px 14px; }
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  /* Etiquetas del hero: de flotantes a chips estáticos centrados */
  .hero__visual { text-align: center; }
  .floatcard { position: static; margin: 14px 5px 0; animation: none; }
  .painlist, .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 22px 12px; padding: 24px 16px; }
  .proof__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .guarantee__inner { flex-direction: column; text-align: center; }
  .stickybar { display: flex; }
  body { padding-bottom: 82px; }
  .thumb--alt, .thumb--alt2 { margin-top: 0; }
}

@media (max-width: 460px) {
  .bgrid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  /* Topbar en una sola línea: se acorta "de lanzamiento" */
  .topbar__extra { display: none; }
  .header__inner { gap: 12px; }
  .logo__chip { padding: 6px 10px; }
  .logo__chip img { height: 22px; }
  .offer__inner { padding: 30px 20px; }
}

/* ----------------------- Accesibilidad -------------------------- */
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
