﻿/* ==========================================================================
   CÓDIGO IA — VSL Design System  (v2 "Flame")
   Base negra + acento fuego/ámbar (herencia de marca roja Código IA)
   Sistema de secciones "chapter color", glass cards, bordes de degradado,
   spotlight en hover y reveals al scroll.
   Sin dependencias. Solo CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Base */
  --bg: #04050a;
  --bg-2: #090a11;
  --bg-3: #0d0f18;
  --panel: #0f111a;
  --panel-warm: #120e08;

  /* Texto */
  --ink: #ffffff;
  --body: #a9aebd;
  --body-2: #d3d6e0;
  --muted: #6f7488;
  --muted-2: #4a4f61;

  /* Acento único de marca: rojo sobre negro (sin tonos rosados) */
  --fl-100: #ffffff;
  --fl-200: #f4f4f5;
  --fl-300: #ef4444;
  --fl-400: #dc2626;
  --fl-500: #b91c1c;
  --fl-600: #991b1b;
  --fl-700: #7f1d1d;
  --fl-800: #5c1010;
  --fl-900: #450a0a;

  /* Capítulos: todo el sistema usa el mismo acento (verde solo para dinero/check) */
  --ch-red: #ef4444;
  --ch-cyan: #ef4444;
  --ch-blue: #ef4444;
  --ch-green: #22c55e;
  --ch-emerald: #22c55e;
  --ch-teal: #ef4444;
  --ch-violet: #ef4444;

  /* Gradientes: blanco -> rojo -> rojo profundo */
  --grad-fire: linear-gradient(135deg, #ffffff 0%, #ef4444 45%, #991b1b 100%);
  --grad-fire-text: linear-gradient(120deg, #ffffff 0%, #ef4444 45%, #b91c1c 100%);
  --grad-cta: linear-gradient(135deg, #ef4444 0%, #b91c1c 60%, #7f1d1d 100%);
  --grad-cta-green: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #4ade80 100%);
  --grad-cta-cool: var(--grad-cta);
  --edge-fire: linear-gradient(120deg, rgba(239, 68, 68, .55), rgba(127, 29, 29, .22) 45%, rgba(239, 68, 68, .5));
  --edge-soft: linear-gradient(120deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04) 50%, rgba(255, 255, 255, .12));

  /* Superficies */
  --glass: rgba(255, 255, 255, .035);
  --glass-2: rgba(255, 255, 255, .06);
  --stroke: rgba(255, 255, 255, .07);
  --stroke-2: rgba(255, 255, 255, .12);

  /* Radios */
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-full: 999px;

  /* Sombras */
  --sh-sm: 0 4px 14px rgba(0, 0, 0, .5);
  --sh: 0 18px 44px -18px rgba(0, 0, 0, .9);
  --sh-lg: 0 40px 90px -40px rgba(0, 0, 0, 1);
  --glow-fire: 0 18px 55px -18px rgba(239, 68, 68, .75);
  --glow-red: 0 18px 55px -18px rgba(220, 38, 38, .7);
  --glow-green: 0 18px 55px -18px rgba(34, 197, 94, .65);

  /* Tipografía */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .18s cubic-bezier(.4, 0, .2, 1);
  --t: .3s cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --w: 1160px;
  --w-narrow: 900px;
  --gutter: clamp(18px, 4vw, 32px);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }
img { height: auto; }
svg { width: 20px; height: 20px; display: block; flex: 0 0 auto; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong, b { color: #fff; font-weight: 800; }

:focus-visible {
  outline: 3px solid var(--fl-400);
  outline-offset: 3px;
  border-radius: 8px;
}

::selection { background: rgba(239, 68, 68, .35); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #06070d; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--fl-500), var(--fl-700));
  border-radius: 20px;
  border: 3px solid #06070d;
}

/* --------------------------------------------------------------------------
   3. Fondo global (partículas + gradientes)
   -------------------------------------------------------------------------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-fx__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
}

.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 25%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 25%, #000 0%, transparent 75%);
  opacity: .55;
}

.scanlines {
  background-image: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0, 0, 0, .28) 2px 4px);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

.wrap--narrow { max-width: var(--w-narrow); }
.wrap--wide { max-width: 1280px; }

.section {
  position: relative;
  padding-block: clamp(58px, 8vw, 112px);
  overflow: hidden;
}

.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--flow { padding-block: clamp(40px, 5vw, 72px); }

.section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   5. Tipografía utilitaria
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--stroke-2);
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--body);
}

.eyebrow--fire { border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .09); color: var(--fl-300); }
.eyebrow--red { border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .09); color: #ffffff; }
.eyebrow--green { border-color: rgba(34, 197, 94, .3); background: rgba(34, 197, 94, .09); color: #86efac; }
.eyebrow--cyan { border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .09); color: #ffffff; }
.eyebrow--blue { border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .09); color: #ffffff; }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--ch-green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
  animation: pulseDot 2s infinite;
}

.dot--red { background: var(--ch-red); box-shadow: 0 0 0 0 rgba(239, 68, 68, .6); animation-name: pulseDotRed; }

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); }
  70% { box-shadow: 0 0 0 11px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes pulseDotRed {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .6); }
  70% { box-shadow: 0 0 0 11px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.grad {
  background: var(--grad-fire-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 3.6s linear infinite;
}

.grad--red { background-image: linear-gradient(120deg, #ffffff, #ef4444, #ef4444, #ffffff); }
.grad--green { background-image: linear-gradient(120deg, #86efac, #4ade80, #a7f3d0, #86efac); }
.grad--cyan { background-image: linear-gradient(120deg, #ffffff, #ef4444, #f4f4f5, #ffffff); }
.grad--blue { background-image: linear-gradient(120deg, #ffffff, #ef4444, #bfdbfe, #ffffff); }

@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
}

.hairline--fire { background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .65), transparent); }
.hairline--red { background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .55), transparent); }
.hairline--green { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, .55), transparent); }
.hairline--cyan { background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .55), transparent); }
.hairline--blue { background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .55), transparent); }

.lead { font-size: clamp(1rem, 1.7vw, 1.16rem); color: var(--body); }
.small { font-size: .85rem; }
.tiny { font-size: .76rem; color: var(--muted-2); line-height: 1.6; }
.tabular { font-variant-numeric: tabular-nums; }
.hide { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head h2 { margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   6. Bordes de degradado (técnica p-px con mask)
   -------------------------------------------------------------------------- */
.edge { position: relative; isolation: isolate; }

.edge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--edge-color, var(--edge-soft));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .6;
  transition: opacity var(--t);
  pointer-events: none;
  z-index: 1;
}

.edge--fire { --edge-color: var(--edge-fire); }
.edge--red { --edge-color: linear-gradient(120deg, rgba(239, 68, 68, .6), rgba(153, 27, 27, .18) 50%, rgba(239, 68, 68, .5)); }
.edge--green { --edge-color: linear-gradient(120deg, rgba(34, 197, 94, .6), rgba(16, 185, 129, .18) 50%, rgba(34, 197, 94, .5)); }
.edge--cyan { --edge-color: linear-gradient(120deg, rgba(239, 68, 68, .6), rgba(239, 68, 68, .18) 50%, rgba(239, 68, 68, .5)); }
.edge--blue { --edge-color: linear-gradient(120deg, rgba(239, 68, 68, .6), rgba(239, 68, 68, .2) 50%, rgba(239, 68, 68, .5)); }

.edge-hover:hover::before { opacity: 1; }

/* --------------------------------------------------------------------------
   7. Tarjetas
   -------------------------------------------------------------------------- */
.glass {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.glass--panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
}

.glass__top { position: absolute; top: 0; left: 0; right: 0; height: 1px; }

.glass__spot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--spot, rgba(239, 68, 68, .12)), transparent 70%);
}

.glass__line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 0 2px 0 0;
  background: var(--line, var(--grad-fire));
  transition: width .5s var(--ease-out);
}

.lift { transition: transform .22s var(--ease-out); }
.lift:hover { transform: translateY(-6px); }

.card {
  padding: clamp(20px, 2.4vw, 28px);
}

.card:hover .glass__spot { opacity: 1; }
.card:hover .glass__line { width: 100%; }
.card:hover { border-color: var(--stroke-2); }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke);
  color: var(--body);
  transition: transform var(--t), border-color var(--t);
}

.card:hover .card__icon { transform: scale(1.08); border-color: var(--stroke-2); }
.card__icon svg { width: 22px; height: 22px; }

.card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0; }

/* Variantes de color de tarjeta */
.ch-fire { --spot: rgba(239, 68, 68, .13); --line: var(--grad-fire); }
.ch-red { --spot: rgba(239, 68, 68, .12); --line: linear-gradient(90deg, #dc2626, #dc2626); }
.ch-cyan { --spot: rgba(239, 68, 68, .12); --line: linear-gradient(90deg, #ef4444, #ef4444); }
.ch-green { --spot: rgba(34, 197, 94, .12); --line: linear-gradient(90deg, #22c55e, #22c55e); }
.ch-blue { --spot: rgba(239, 68, 68, .12); --line: linear-gradient(90deg, #ef4444, #ef4444); }
.ch-violet { --spot: rgba(239, 68, 68, .12); --line: linear-gradient(90deg, #dc2626, #ef4444); }

.ch-fire .card__icon { color: var(--fl-400); border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); }
.ch-red .card__icon { color: #ef4444; border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); }
.ch-cyan .card__icon { color: #ffffff; border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); }
.ch-green .card__icon { color: #86efac; border-color: rgba(34, 197, 94, .3); background: rgba(34, 197, 94, .1); }
.ch-blue .card__icon { color: #ffffff; border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); }
.ch-violet .card__icon { color: #ffffff; border-color: rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); }

/* Tarjeta de dolor con subrayado rojo */
.card--pain .glass__line { background: linear-gradient(90deg, #dc2626, #dc2626); }

/* --------------------------------------------------------------------------
   8. Botones
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px 40px;
  border: 0;
  border-radius: var(--r);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(.98rem, 1.8vw, 1.14rem);
  font-weight: 900;
  letter-spacing: -.01em;
  text-align: center;
  color: #fff;
  background: var(--grad-cta);
  box-shadow: var(--glow-fire), var(--sh);
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s var(--ease-out), box-shadow var(--t), filter var(--t-fast);
}

.btn svg { width: 20px; height: 20px; }

.btn__streak {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  left: -40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-15deg);
  animation: shimmer 2.6s linear infinite;
  z-index: -1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(320%) skewX(-15deg); }
}

.btn:hover { transform: translateY(-3px) scale(1.015); }
.btn:active { transform: translateY(-1px) scale(.995); }

.btn--green { background: var(--grad-cta-green); box-shadow: var(--glow-green), var(--sh); }
.btn--cool { background: var(--grad-cta-cool); color: #04140f; box-shadow: 0 18px 55px -18px rgba(239, 68, 68, .6), var(--sh); }
.btn--white { background: #fff; color: #0a0a0f; box-shadow: var(--sh); }
.btn--white .btn__streak { background: linear-gradient(100deg, transparent, rgba(0, 0, 0, .12), transparent); }

.btn--block { width: 100%; }
.btn--lg { padding: 23px 52px; font-size: clamp(1.04rem, 2vw, 1.3rem); }
.btn--xl { padding: 26px 58px; font-size: clamp(1.1rem, 2.3vw, 1.45rem); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--stroke-2);
  box-shadow: none;
  color: var(--body);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 26px;
}
.btn--ghost:hover { background: var(--glass); color: #fff; transform: none; }

/* CTA con borde de fuego animado */
.btn-flame {
  position: relative;
  padding: 3px;
  border-radius: calc(var(--r) + 3px);
  background: linear-gradient(90deg, #dc2626, #ef4444, #f4f4f5, #ef4444, #dc2626);
  background-size: 400% 100%;
  animation: flameSweep 3s linear infinite;
  display: inline-block;
  width: 100%;
}

.btn-flame .btn { width: 100%; border-radius: var(--r); }

@keyframes flameSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

.cta-block { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 640px; margin-inline: auto; }
.cta-block .btn, .cta-block .btn-flame { width: 100%; max-width: 620px; }

.cta-sub { font-size: .82rem; color: var(--muted); text-align: center; }

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--muted);
}

.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 15px; height: 15px; color: var(--fl-400); }

/* --------------------------------------------------------------------------
   9. Barra superior fija (live)
   -------------------------------------------------------------------------- */
.livebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 14px;
  background: rgba(4, 5, 10, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 68, 68, .2);
  font-size: .74rem;
  font-weight: 700;
  color: #e5e7eb;
}

.livebar__ping { position: relative; width: 8px; height: 8px; flex: 0 0 auto; }
.livebar__ping i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ch-red);
  animation: ping 1.4s cubic-bezier(0, 0, .2, 1) infinite;
}
.livebar__ping b { position: absolute; inset: 0; border-radius: 50%; background: var(--ch-red); }

@keyframes ping {
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

.livebar__n { font-weight: 900; font-size: .86rem; color: var(--ch-green); transition: color .5s; }
.livebar__n.is-down { color: #ef4444; }
.livebar__n.is-same { color: #9ca3af; }
.livebar__hl { color: var(--fl-400); font-weight: 900; }
.livebar svg { width: 14px; height: 14px; color: #ef4444; }

.eq { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.eq i {
  width: 2px;
  border-radius: 2px;
  background: rgba(239, 68, 68, .7);
  animation: eqPulse 900ms ease-in-out infinite;
}

@keyframes eqPulse {
  0%, 100% { transform: scaleY(.4); }
  50% { transform: scaleY(1); }
}

@media (min-width: 640px) { .eq { display: flex; } }

/* --------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(74px, 9vw, 96px);
  padding-bottom: clamp(34px, 5vw, 56px);
  overflow: hidden;
}

.hero__radials {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(220, 38, 38, .16), transparent 65%),
    radial-gradient(ellipse 60% 45% at 18% 55%, rgba(239, 68, 68, .09), transparent 65%),
    radial-gradient(ellipse 60% 45% at 84% 42%, rgba(180, 20, 0, .1), transparent 65%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.nw { white-space: nowrap; }

.hero h1 > span { display: block; }
.hero h1 .line-2 { margin: 6px 0; }

.hero__sub {
  margin: 20px auto 26px;
  max-width: 640px;
  font-size: clamp(.92rem, 1.9vw, 1.1rem);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body);
}

.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 30px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: var(--r-full);
  border: 1px solid var(--stroke);
  background: var(--glass);
  font-size: .8rem;
  font-weight: 700;
  color: var(--body);
}

.chip svg { width: 15px; height: 15px; color: var(--ch-green); }

/* Marco del reproductor */
.vsl-frame {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.vsl-frame__glow {
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(220, 38, 38, .65), rgba(239, 68, 68, .55), rgba(220, 38, 38, .65));
  filter: blur(18px);
  opacity: .55;
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.015); }
}

.vsl-frame__hair {
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(239, 68, 68, .7), rgba(252, 211, 77, .35), rgba(185, 28, 28, .6));
  z-index: 1;
}

.vsl-frame__box {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  background: #04040a;
  border: 1px solid rgba(0, 0, 0, .6);
  box-shadow: var(--sh-lg);
  aspect-ratio: 16 / 9;
}

.vsl-frame__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .35;
  pointer-events: none;
}

.vsl-frame__sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), transparent);
  pointer-events: none;
}

.vsl-frame iframe, .vsl-frame vturb-smartplayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
}

.vsl-poster {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background:
    radial-gradient(700px 380px at 28% 22%, rgba(220, 38, 38, .38), transparent 62%),
    radial-gradient(700px 400px at 76% 80%, rgba(239, 68, 68, .3), transparent 62%),
    linear-gradient(150deg, #16121c, #06060c 72%);
}

.vsl-poster__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 15px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--stroke-2);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fl-200);
}

.vsl-play {
  width: clamp(74px, 12vw, 104px);
  height: clamp(74px, 12vw, 104px);
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, .55), var(--sh-lg);
  animation: halo 2.6s ease-out infinite;
  transition: transform var(--t);
}

.vsl-play:hover { transform: scale(1.08); }
.vsl-play svg { width: 36%; height: 36%; margin-left: 6%; }

@keyframes halo {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .55), var(--sh-lg); }
  70% { box-shadow: 0 0 0 28px rgba(239, 68, 68, 0), var(--sh-lg); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), var(--sh-lg); }
}

.vsl-audio {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--stroke);
  font-size: clamp(.76rem, 1.6vw, .92rem);
  font-weight: 800;
  color: #fff;
}

.vsl-audio svg { width: 16px; height: 16px; color: var(--fl-300); }

/* Zona de CTA bajo el video (reveal gate) */
.hero__cta { margin-top: 30px; min-height: 96px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__hint { display: inline-flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.hero__hint svg { width: 17px; height: 17px; color: var(--fl-400); animation: pulseGlow 2.4s ease-in-out infinite; }
.hero__chev { animation: bounceChev 1.8s infinite; }
@keyframes bounceChev {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, .5);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  font-size: .78rem;
  color: var(--body);
}

/* Fuego CSS en la base del hero */
.fire-base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42vh;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 100% at 22% 100%, rgba(239, 68, 68, .38), transparent 62%),
    radial-gradient(ellipse 55% 100% at 50% 100%, rgba(185, 28, 28, .45), transparent 65%),
    radial-gradient(ellipse 60% 100% at 78% 100%, rgba(220, 38, 38, .36), transparent 62%),
    linear-gradient(to top, rgba(124, 45, 18, .3), transparent 60%);
  filter: blur(26px);
  animation: fireFlicker 5.5s ease-in-out infinite;
}

@keyframes fireFlicker {
  0%, 100% { opacity: .78; transform: translateY(0) scaleY(1); }
  50% { opacity: 1; transform: translateY(-6px) scaleY(1.06); }
}

.fire-base__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 5, 10, .6) 0%, rgba(4, 5, 10, .92) 45%, rgba(4, 5, 10, .99) 100%);
}

/* --------------------------------------------------------------------------
   11. Divisor de sección
   -------------------------------------------------------------------------- */
.divider {
  position: relative;
  height: 56px;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}

.divider__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  height: 32px;
  border-radius: 50%;
  filter: blur(26px);
  background: radial-gradient(ellipse 60% 100% at 50% 50%, var(--dc, rgba(239, 68, 68, .4)), transparent 70%);
}

.divider__line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--dc1, rgba(239, 68, 68, .18)) 20%, var(--dc2, rgba(239, 68, 68, .55)) 50%, var(--dc1, rgba(239, 68, 68, .18)) 80%, transparent 100%);
}

.divider__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dc3, #ef4444);
  box-shadow: 0 0 12px 4px var(--dc, rgba(239, 68, 68, .4));
}

.divider--amber { --dc: rgba(239, 68, 68, .4); --dc2: rgba(239, 68, 68, .55); --dc3: #ef4444; }
.divider--red { --dc: rgba(239, 68, 68, .4); --dc2: rgba(239, 68, 68, .55); --dc3: #ef4444; }
.divider--green { --dc: rgba(34, 197, 94, .4); --dc2: rgba(34, 197, 94, .55); --dc3: #22c55e; }
.divider--cyan { --dc: rgba(239, 68, 68, .4); --dc2: rgba(239, 68, 68, .55); --dc3: #ef4444; }
.divider--blue { --dc: rgba(239, 68, 68, .4); --dc2: rgba(239, 68, 68, .55); --dc3: #ef4444; }

/* --------------------------------------------------------------------------
   12. Listas
   -------------------------------------------------------------------------- */
.list-check { display: grid; gap: 12px; }

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .94rem;
  color: var(--body-2);
}

.list-check svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  color: var(--ch-green);
  background: rgba(34, 197, 94, .14);
}

.list-check--red svg { color: #ef4444; background: rgba(239, 68, 68, .14); }
.list-check--red li { color: #d9c7c7; }

/* --------------------------------------------------------------------------
   13. Pilares / pasos / stats
   -------------------------------------------------------------------------- */
.pillar { position: relative; padding: clamp(24px, 3vw, 34px); border-radius: var(--r-xl); }

.pillar__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0a0a0f;
  margin-bottom: 18px;
}

.pillar__num {
  display: block;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.04em;
}

.pillar h3 { font-size: 1.14rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: .9rem; margin: 0; }

.stat {
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--r-lg);
}

.stat__num {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

.stat__label { font-size: .86rem; font-weight: 700; color: #fff; }
.stat__sub { font-size: .74rem; color: var(--muted-2); margin-top: 3px; }

/* Pasos numerados */
.step { display: flex; align-items: flex-start; gap: 18px; padding: clamp(20px, 2.4vw, 28px); border-radius: var(--r-xl); }

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #08080d;
}

.step__label {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .88rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. Módulos
   -------------------------------------------------------------------------- */
.module { display: flex; align-items: flex-start; gap: 18px; padding: 22px; border-radius: var(--r-lg); }

.module__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: .88rem;
  font-weight: 900;
  color: #08080d;
  box-shadow: var(--sh-sm);
}

.module__tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #08080d;
  margin-bottom: 8px;
}

.module h3 { font-size: .98rem; margin-bottom: 6px; }
.module p { color: var(--muted); font-size: .84rem; line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   15. Banner de producto
   -------------------------------------------------------------------------- */
.name-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 62px) clamp(20px, 4vw, 56px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(239, 68, 68, .07), rgba(255, 255, 255, .015));
}

.name-banner__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 190px;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, .22), transparent 70%);
}

.name-banner__eyebrow {
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--fl-300);
  margin-bottom: 14px;
}

.name-banner__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}

.name-banner__word {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.name-banner__rule {
  height: 1px;
  width: clamp(30px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .6));
}

.name-banner__rule--r { background: linear-gradient(90deg, rgba(239, 68, 68, .6), transparent); }

.name-banner__pro {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 900;
  letter-spacing: .3em;
  color: var(--fl-400);
}

/* -------------------------------------------------------------------------- 
   16. Oferta / escalera de precio
   -------------------------------------------------------------------------- */
.offer {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  padding: clamp(24px, 4vw, 46px) clamp(18px, 3.4vw, 40px);
  overflow: hidden;
}

.offer__inner { max-width: 660px; margin-inline: auto; position: relative; z-index: 2; }

.offer__eyebrow {
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(239, 68, 68, .85);
  text-align: center;
  margin-bottom: 22px;
}

.stack { display: grid; gap: 8px; margin-bottom: 22px; }

.stack li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--stroke);
  font-size: .88rem;
  color: var(--body-2);
  transition: border-color var(--t), background var(--t);
}

.stack li:hover { border-color: rgba(239, 68, 68, .28); background: rgba(255, 255, 255, .04); }

.stack__left { display: flex; align-items: center; gap: 12px; }

.stack__ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.stack__ic svg { width: 13px; height: 13px; }
.stack__ic--fire { background: rgba(239, 68, 68, .18); color: var(--fl-300); }
.stack__ic--green { background: rgba(34, 197, 94, .16); color: #86efac; }

.stack__val { color: var(--muted-2); font-size: .78rem; font-weight: 800; text-decoration: line-through; white-space: nowrap; }

.stack__total {
  background: rgba(255, 255, 255, .02);
  border-color: var(--stroke-2);
  font-weight: 800;
  color: #fff;
}
.stack__total .stack__val { color: var(--muted); font-size: .86rem; }

.stack__pay {
  background: rgba(239, 68, 68, .07);
  border-color: rgba(239, 68, 68, .25);
  font-weight: 800;
}
.stack__pay .stack__val { color: var(--fl-300); font-size: 1.05rem; text-decoration: none; }

/* Escalera de precio por etapas */
.ladder {
  border-radius: var(--r-lg);
  border: 1px solid rgba(239, 68, 68, .22);
  background: rgba(18, 12, 5, .7);
  overflow: hidden;
  margin-bottom: 22px;
}

.ladder__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(239, 68, 68, .16), transparent);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fl-200);
}

.ladder__live { display: inline-flex; align-items: center; gap: 7px; font-size: .64rem; color: #86efac; letter-spacing: .1em; }

.ladder__body { padding: 18px 16px; }

.ladder__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; text-align: center; }

.ladder__stat b { display: block; font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 900; color: #fff; line-height: 1.1; }
.ladder__stat span { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

.ladder__bar { height: 9px; border-radius: var(--r-full); background: rgba(255, 255, 255, .07); overflow: hidden; margin-bottom: 8px; }
.ladder__bar i { display: block; height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, #ef4444, #dc2626); box-shadow: 0 0 12px rgba(239, 68, 68, .55); transition: width 1s var(--ease-out); }

.ladder__note { display: flex; justify-content: space-between; font-size: .7rem; color: var(--muted-2); margin-bottom: 18px; }

.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }

.tier {
  position: relative;
  padding: 10px 4px;
  border-radius: var(--r-sm);
  border: 1px solid var(--stroke);
  text-align: center;
  background: rgba(255, 255, 255, .02);
}

.tier b { display: block; font-size: .82rem; font-weight: 900; line-height: 1.2; }
.tier span { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }

.tier--past { opacity: .42; }
.tier--past b { color: #4b5563; text-decoration: line-through; }
.tier--now { background: rgba(239, 68, 68, .1); border-color: rgba(239, 68, 68, .45); box-shadow: 0 8px 24px -10px rgba(239, 68, 68, .6); }
.tier--now b { color: var(--fl-300); }
.tier--next b { color: #ef4444; }
.tier--later b { color: #ef4444; }

.tier__now {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, #ef4444, #ef4444);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: #0a0a0f;
  white-space: nowrap;
}

/* Precio gigante */
.price-hero { position: relative; text-align: center; margin: 26px 0 6px; }

.price-hero__blob {
  position: absolute;
  inset: -30% 10%;
  border-radius: 50%;
  filter: blur(52px);
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, .3), transparent 68%);
  z-index: 0;
}

.price-hero__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.price-hero__cur { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: var(--fl-300); margin-top: 12px; }

.price-hero__num {
  font-size: clamp(4rem, 15vw, 7rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  background: var(--grad-fire-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 3.4s linear infinite;
  font-variant-numeric: tabular-nums;
}

.price-hero__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 14px;
  text-align: left;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.price-hero__meta b { color: #fff; }

.price-hero__old { font-size: .95rem; color: var(--muted-2); font-weight: 800; }
.price-hero__old s { color: var(--muted-2); text-decoration-color: #ef4444; text-decoration-thickness: 2px; }

/* Badges de confianza */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 24px 0; }

@media (max-width: 560px) { .badges { grid-template-columns: repeat(2, 1fr); } .tiers { grid-template-columns: repeat(5, 1fr); } }

.badge {
  padding: 12px 8px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.badge svg { width: 18px; height: 18px; margin: 0 auto 7px; color: var(--fl-400); }
.badge b { display: block; font-size: .7rem; color: #fff; font-weight: 800; }
.badge span { font-size: .62rem; color: var(--muted-2); }

.savings {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r);
  background: rgba(34, 197, 94, .09);
  border: 1px solid rgba(34, 197, 94, .2);
  text-align: center;
  font-size: .84rem;
  font-weight: 800;
  color: #86efac;
}

/* --------------------------------------------------------------------------
   17. Contador / urgencia
   -------------------------------------------------------------------------- */
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }

.cd {
  min-width: 66px;
  padding: 10px 8px;
  border-radius: var(--r);
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--stroke-2);
  text-align: center;
}

.cd b { display: block; font-size: clamp(1.2rem, 3.4vw, 1.7rem); font-weight: 900; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.cd span { font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.cd-sep { font-size: 1.3rem; font-weight: 900; color: var(--fl-500); }

.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, rgba(220, 38, 38, .12), rgba(239, 68, 68, .05));
  border: 1px solid rgba(239, 68, 68, .28);
}

.urgency__text { max-width: 340px; }
.urgency__label { font-size: .84rem; font-weight: 800; color: #fff; margin-bottom: 8px; }

.bar { height: 9px; border-radius: var(--r-full); background: rgba(255, 255, 255, .08); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, #ef4444, #dc2626); transition: width 1.2s var(--ease-out); }

/* --------------------------------------------------------------------------
   18. Testimonios
   -------------------------------------------------------------------------- */
.testi { padding: 22px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 14px; }

.testi__stars { display: flex; gap: 3px; color: var(--fl-400); }
.testi__stars svg { width: 15px; height: 15px; }

.testi__text { font-size: .9rem; color: var(--body-2); line-height: 1.62; font-style: italic; margin: 0; }

.testi__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .9rem;
  color: #0a0a0f;
  flex: 0 0 auto;
}

.av-fire { background: var(--grad-fire); }
.av-green { background: var(--grad-cta-green); }
.av-cyan { background: var(--grad-cta-cool); }
.av-blue { background: linear-gradient(135deg, #ef4444, #ef4444); }
.av-violet { background: linear-gradient(135deg, #ffffff, #dc2626); }
.av-red { background: linear-gradient(135deg, #ffffff, #ef4444); }

.testi__name { font-size: .88rem; font-weight: 800; color: #fff; line-height: 1.25; }
.testi__role { font-size: .74rem; color: var(--muted-2); }

.testi__proof {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .1);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86efac;
}

/* Mock de panel (capturas) */
.panel {
  border-radius: var(--r-lg);
  border: 1px solid var(--stroke);
  background: #08090f;
  overflow: hidden;
}

.panel__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .035);
  border-bottom: 1px solid var(--stroke);
}

.panel__dot { width: 8px; height: 8px; border-radius: 50%; background: #2b2f3d; }
.panel__dot--r { background: #ff5f57; }
.panel__dot--y { background: #febc2e; }
.panel__dot--g { background: #28c840; }
.panel__title { margin-left: 8px; font-size: .62rem; letter-spacing: .12em; color: var(--muted-2); font-weight: 800; }
.panel__body { padding: 16px; display: grid; gap: 10px; }

.panel__chart {
  height: 96px;
  border-radius: var(--r-sm);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(239, 68, 68, .14), transparent);
  position: relative;
  overflow: hidden;
}

.panel__chart::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64%;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0) 0%, rgba(239, 68, 68, .5) 32%, rgba(185, 28, 28, .6) 66%, rgba(220, 38, 38, .55) 100%);
  clip-path: polygon(0 78%, 12% 62%, 26% 70%, 40% 40%, 54% 52%, 68% 26%, 82% 34%, 100% 6%, 100% 100%, 0 100%);
}

.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--stroke);
  font-size: .78rem;
  color: var(--body);
}

.panel__row b { color: var(--fl-300); font-weight: 900; }

/* --------------------------------------------------------------------------
   19. Autor
   -------------------------------------------------------------------------- */
.author { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 54px); align-items: center; }

@media (max-width: 900px) { .author { grid-template-columns: 1fr; } }

.author__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(500px 300px at 40% 20%, rgba(239, 68, 68, .32), transparent 62%),
    radial-gradient(400px 300px at 80% 80%, rgba(220, 38, 38, .3), transparent 62%),
    linear-gradient(160deg, #1a1520, #08080e 75%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 68, 68, .22);
}

.author__initials {
  font-size: clamp(3.4rem, 12vw, 6rem);
  font-weight: 900;
  letter-spacing: -.06em;
  background: var(--grad-fire-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 4s linear infinite;
}

.author__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  background: rgba(4, 5, 10, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 68, 68, .2);
}

.author__caption b { display: block; font-size: .95rem; }
.author__caption span { font-size: .76rem; color: var(--muted); }

.author__greet { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 900; margin-bottom: 16px; }
.author__body p { color: var(--body); font-size: .96rem; }

.quote {
  border-left: 2px solid rgba(239, 68, 68, .5);
  padding-left: 16px;
  color: var(--fl-200);
  font-weight: 700;
  font-style: italic;
  font-size: .96rem;
}

/* -------------------------------------------------------------------------- 
   20. Nichos
   -------------------------------------------------------------------------- */
.niche, .nicher {
  padding: 16px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.niche__ic {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(239, 68, 68, .22), rgba(185, 28, 28, .12));
  color: var(--fl-300);
}

.niche__ic svg { width: 18px; height: 18px; }
.niche b, .nicher b { font-size: .88rem; color: #fff; font-weight: 800; }
.niche span, .nicher span { font-size: .74rem; color: var(--muted-2); line-height: 1.5; }

/* --------------------------------------------------------------------------
   21. Garantía / callouts
   -------------------------------------------------------------------------- */
.seal {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-cta-green);
  color: #05230f;
  box-shadow: 0 0 60px -10px rgba(34, 197, 94, .8);
  animation: pulseGlow 3s ease-in-out infinite;
}

.seal svg { width: 42px; height: 42px; }

.callout {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--r-xl);
  background: rgba(34, 197, 94, .06);
  border: 1px solid rgba(34, 197, 94, .25);
}

.callout__seal {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #86efac;
  border: 2px solid rgba(34, 197, 94, .45);
  background: radial-gradient(circle, rgba(34, 197, 94, .2), transparent 70%);
}

.callout--warn { background: rgba(239, 68, 68, .06); border-color: rgba(239, 68, 68, .28); }
.callout--warn .callout__seal { color: var(--fl-300); border-color: rgba(239, 68, 68, .45); background: radial-gradient(circle, rgba(239, 68, 68, .18), transparent 70%); }

@media (max-width: 640px) { .callout { flex-direction: column; text-align: center; } }

/* --------------------------------------------------------------------------
   22. Acordeón
   -------------------------------------------------------------------------- */
.acc {
  border-radius: var(--r-lg);
  border: 1px solid var(--stroke);
  background: #08090f;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.acc + .acc { margin-top: 12px; }
.acc[open] { border-color: rgba(239, 68, 68, .3); box-shadow: 0 18px 40px -24px rgba(239, 68, 68, .5); }

.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(.92rem, 1.7vw, 1.04rem);
  font-weight: 700;
  color: var(--body-2);
  transition: color var(--t);
}

.acc summary::-webkit-details-marker { display: none; }
.acc[open] summary { color: #fff; }

.acc__chev { width: 20px; height: 20px; flex: 0 0 auto; color: var(--muted); transition: transform var(--t), color var(--t); }
.acc[open] .acc__chev { transform: rotate(180deg); color: var(--fl-400); }

.acc__body {
  padding: 0 22px 22px;
  font-size: .92rem;
  color: var(--muted);
}

.acc__body > div { border-left: 2px solid rgba(239, 68, 68, .4); padding-left: 16px; }

/* --------------------------------------------------------------------------
   23. Toast de ventas
   -------------------------------------------------------------------------- */
.sale-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 80;
  width: 300px;
  max-width: calc(100vw - 40px);
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: #0b0d14;
  border: 1px solid rgba(239, 68, 68, .22);
  box-shadow: var(--sh);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s;
  pointer-events: none;
}

.sale-toast.is-visible { transform: translateY(0); opacity: 1; }

.sale-toast__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }

.sale-toast__ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  flex: 0 0 auto;
}

.sale-toast__ic svg { width: 18px; height: 18px; }
.sale-toast b { display: block; font-size: .84rem; }
.sale-toast__meta { font-size: .72rem; color: var(--muted-2); }
.sale-toast__meta em { color: #ffffff; font-style: normal; font-weight: 800; }
.sale-toast__line { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--body); }

/* --------------------------------------------------------------------------
   24. CTA móvil fija
   -------------------------------------------------------------------------- */
.cta-bar-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(4, 5, 10, .96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--stroke-2);
  transform: translateY(115%);
  transition: transform var(--t);
}

.cta-bar-mobile.is-visible { transform: translateY(0); }
.cta-bar-mobile .btn { width: 100%; padding: 15px 18px; font-size: .95rem; }
.cta-bar-mobile .tiny { text-align: center; margin-top: 6px; }

@media (max-width: 760px) {
  .cta-bar-mobile { display: block; }
  body { padding-bottom: 96px; }
}

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  padding-block: 56px 40px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #04050a;
}

.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-bottom: 34px; }

@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 24px; } }

.footer__brand { font-size: 1.1rem; font-weight: 900; letter-spacing: .08em; margin-bottom: 10px; }
.footer__brand span { color: var(--fl-400); }
.footer p, .footer li { font-size: .82rem; color: var(--muted); }
.footer__title { font-size: .68rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; color: var(--body); margin-bottom: 12px; }
.footer__list li { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.footer__list svg { width: 15px; height: 15px; color: var(--fl-400); flex: 0 0 auto; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin: 24px 0 18px; }
.footer__links a { font-size: .8rem; color: var(--muted); transition: color var(--t-fast); }
.footer__links a:hover { color: #fff; }
.footer__legal { max-width: 820px; margin: 0 auto; text-align: center; }
.disclaimer { font-size: .7rem; line-height: 1.7; color: var(--muted-2); margin-top: 12px; }

/* --------------------------------------------------------------------------
   26. Reveal al scroll
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}

.rv.is-in { opacity: 1; transform: none; }
.rv-left { transform: translateX(-36px); }
.rv-right { transform: translateX(36px); }
.rv-left.is-in, .rv-right.is-in { transform: none; }
.rv-scale { transform: scale(.95); }
.rv-scale.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
  .bg-fx__canvas { display: none; }
}

/* --------------------------------------------------------------------------
   27. Upsell: barra de pasos y cajas de oferta
   -------------------------------------------------------------------------- */
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }

.pstep {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--stroke);
  background: var(--glass);
  font-size: .78rem;
  font-weight: 800;
  color: var(--muted);
}

.pstep__n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  font-size: .66rem;
  font-weight: 900;
}

.pstep--done { border-color: rgba(34, 197, 94, .4); background: rgba(34, 197, 94, .1); color: #86efac; }
.pstep--done .pstep__n { background: rgba(34, 197, 94, .25); }
.pstep--active { border-color: rgba(239, 68, 68, .5); background: rgba(239, 68, 68, .12); color: var(--fl-200); }
.pstep--active .pstep__n { background: rgba(239, 68, 68, .3); color: #0a0a0f; }

.upsell-hero { text-align: center; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(22px, 3vw, 44px); align-items: start; }
@media (max-width: 980px) { .split { grid-template-columns: minmax(0, 1fr); } }

.mini-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .09);
  font-size: .8rem;
  font-weight: 800;
  color: var(--fl-200);
  margin-bottom: 18px;
}

.mini-timer b { color: #fff; font-variant-numeric: tabular-nums; }
.mini-timer svg { width: 16px; height: 16px; }

.decline {
  display: inline-block;
  font-size: .82rem;
  color: var(--muted-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--t-fast);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.decline:hover { color: var(--muted); }

.offer-actions { display: grid; gap: 14px; margin-top: 24px; }

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: var(--grad-cta-green);
  box-shadow: var(--sh-sm);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   28. Reveal gate
   -------------------------------------------------------------------------- */
html.gated [data-gated-content] { display: none; }
html.gated .cta-bar-mobile { display: none; }

.gate-locked { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gate-locked b { color: var(--fl-300); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   29. Utilidades varias
   -------------------------------------------------------------------------- */
.divider-tight { height: 34px; }
.mt-56 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }

.note-box {
  padding: 15px 20px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .35);
  font-size: .84rem;
  color: var(--muted);
  text-align: center;
}

.warning {
  padding: 14px 18px;
  border-radius: var(--r);
  background: rgba(153, 27, 27, .16);
  border: 1px solid rgba(239, 68, 68, .18);
  text-align: center;
}

.warning b { display: block; color: #ffffff; font-size: .84rem; margin-bottom: 4px; }
.warning span { font-size: .74rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   30. Ajustes finos móviles
   -------------------------------------------------------------------------- */
.livebar__extra { display: none; }

@media (min-width: 700px) {
  .livebar__extra { display: inline; }
}

@media (max-width: 640px) {
  .vsl-poster__tag { display: none; }
  .vsl-poster .tiny { display: none; }
  .vsl-play { width: 64px; height: 64px; }
  .vsl-audio { font-size: .68rem; padding: 7px 12px; margin-top: 12px; }
  .livebar { font-size: .68rem; }
  .hero h1 { font-size: clamp(1.75rem, 7.6vw, 2.4rem); }
  .price-hero__num { font-size: clamp(3.4rem, 19vw, 5rem); }
}

/* Precio en verde para los upsells (lectura de dinero) */
.theme-viral .price-hero__num,
.theme-tiktok .price-hero__num {
  background-image: linear-gradient(120deg, #86efac, #22c55e, #4ade80, #86efac);
}

@media (max-width: 640px) {
  .hero h1 .nw { white-space: normal; }
}

/* --------------------------------------------------------------------------
   31. Checklist (página de gracias)
   -------------------------------------------------------------------------- */
.todo { display: grid; gap: 12px; }

.todo li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--stroke);
  background: var(--glass);
  transition: opacity var(--t), border-color var(--t), background var(--t);
}

.todo li.is-done { opacity: .55; border-color: rgba(34, 197, 94, .35); }
.todo li.is-done .todo__label { text-decoration: line-through; }

.todo input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin: 1px 0 0;
  border-radius: 7px;
  border: 2px solid var(--stroke-2);
  background: rgba(0, 0, 0, .4);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.todo input:checked { background: var(--grad-cta-green); border-color: transparent; }

.todo input:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.todo__label { display: block; font-weight: 700; color: #fff; font-size: .95rem; }
.todo__hint { font-size: .82rem; color: var(--muted); }

.todo label { cursor: pointer; }
/* --------------------------------------------------------------------------
   32. Fondos por defecto de los elementos que antes usaban estilos en línea
   -------------------------------------------------------------------------- */
.module__num,
.module__tag,
.step__icon,
.pillar__tag,
.niche__ic {
  background-image: var(--grad-fire);
}

.module__num,
.module__tag,
.step__icon,
.pillar__tag {
  background-color: #ef4444;
  background-image: var(--grad-fire);
}

.module__tag,
.pillar__tag {
  color: #0a0a0f;
}

/* --------------------------------------------------------------------------
   33. Imágenes de producto (covers, bonos y bundle)
   -------------------------------------------------------------------------- */
.module__media {
  position: relative;
  flex: 0 0 100px;
  width: 100px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(ellipse 90% 60% at 50% 12%, rgba(239, 68, 68, .16), transparent 70%),
    rgba(255, 255, 255, .02);
}

.module__media img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .65));
}

.module__media .module__num {
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: .68rem;
  box-shadow: var(--sh);
}

@media (max-width: 640px) {
  .module__media { flex-basis: 74px; width: 74px; padding: 4px; }
  .module__media .module__num { width: 26px; height: 26px; font-size: .6rem; left: -6px; bottom: -6px; }
}

.bonus__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }

.bonus__cover {
  flex: 0 0 106px;
  width: 106px;
  padding: 5px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(ellipse 90% 60% at 50% 12%, rgba(239, 68, 68, .16), transparent 70%),
    rgba(255, 255, 255, .02);
}

.bonus__cover img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .65));
}

.bonus__meta { flex: 1; min-width: 0; }

@media (max-width: 640px) {
  .bonus__cover { flex-basis: 80px; width: 80px; padding: 4px; }
}

.bundle {
  position: relative;
  max-width: 760px;
  margin: 0 auto 26px;
}

.bundle img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .75));
}

.bundle__glow {
  position: absolute;
  inset: -8% -6%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(64px);
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, .3), transparent 70%);
}

@media (max-width: 640px) {
  .bundle { margin-bottom: 18px; }
}

/* Portada de reemplazo para los materiales sin imagen definitiva */
.cover-ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  border: 1px dashed rgba(239, 68, 68, .38);
  background: linear-gradient(150deg, rgba(239, 68, 68, .12), rgba(0, 0, 0, .55));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  gap: 6px;
}

.cover-ph b {
  display: block;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fl-300);
}

.cover-ph span { font-size: .52rem; color: var(--muted-2); line-height: 1.4; }

/* Bloque "lo que ya tienes" (upsells) */
.have-add { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(18px, 3vw, 34px); align-items: center; }

@media (max-width: 860px) { .have-add { grid-template-columns: minmax(0, 1fr); } }

.have-add__media {
  position: relative;
  padding: 14px;
  border-radius: var(--r-xl);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(ellipse 80% 60% at 50% 15%, rgba(239, 68, 68, .16), transparent 70%),
    rgba(255, 255, 255, .02);
}

.have-add__media img { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .7)); }

/* --------------------------------------------------------------------------
   34. Mockups más grandes (pasos y bonos)
   -------------------------------------------------------------------------- */
.module__media {
  flex: 0 0 168px;
  width: 168px;
  padding: 8px;
}

.bonus__cover {
  flex: 0 0 158px;
  width: 158px;
  padding: 7px;
}

.bonus__meta b { font-size: 1.1rem !important; line-height: 1.3; }

@media (max-width: 900px) {
  .module__media { flex-basis: 140px; width: 140px; }
  .bonus__cover { flex-basis: 132px; width: 132px; }
}

@media (max-width: 640px) {
  .module__media { flex-basis: 112px; width: 112px; padding: 5px; }
  .module__media .module__num { width: 28px; height: 28px; font-size: .64rem; left: -7px; bottom: -7px; }
  .bonus__cover { flex-basis: 116px; width: 116px; padding: 5px; }
  .bonus__meta b { font-size: 1rem !important; }
}

/* En móvil muy estrecho, portada arriba y texto debajo */
@media (max-width: 430px) {
  .module { flex-direction: column; }
  .module__media { flex-basis: auto; width: 132px; }
  .bonus__head { flex-direction: column; gap: 14px; }
  .bonus__cover { flex-basis: auto; width: 140px; }
}

/* --------------------------------------------------------------------------
   35. Foto del autor
   -------------------------------------------------------------------------- */
.author__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.author__photo { position: relative; }

.author__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4, 5, 10, .92) 0%, rgba(4, 5, 10, .28) 38%, transparent 68%);
  pointer-events: none;
}

.author__caption { z-index: 2; }

/* --------------------------------------------------------------------------
   36. UX: anclas, barra de progreso, nav CTA y acordeón
   -------------------------------------------------------------------------- */
[id] { scroll-margin-top: 64px; }

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #b91c1c, #ef4444, #ffffff);
  box-shadow: 0 0 12px rgba(239, 68, 68, .7);
  transition: width .12s linear;
  pointer-events: none;
}


/* Acordeón: apertura suave */
.acc__body { animation: accIn .3s var(--ease-out); }

@keyframes accIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Detalles de UX varios */
.compare tbody tr { transition: background var(--t-fast); }
.chip { transition: border-color var(--t), background var(--t); }
.chip:hover { border-color: rgba(239, 68, 68, .35); background: rgba(239, 68, 68, .08); }

.stack li { transition: transform var(--t-fast), border-color var(--t), background var(--t); }
.stack li:hover { transform: translateX(4px); }

.glass.card, .panel, .nicher { will-change: transform; }

@media (max-width: 760px) {
  #oferta { padding-bottom: 130px; }
}

/* --------------------------------------------------------------------------
   37. Aviso de apertura del hero (texto ATENCIÓN)
   -------------------------------------------------------------------------- */
.hero__notice {
  display: inline-block;
  max-width: 780px;
  margin: 0 auto;
  padding: 13px 24px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, .32);
  background: rgba(239, 68, 68, .09);
  color: #fff;
  font-size: clamp(.84rem, 1.7vw, 1rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
}

.hero__notice strong { color: var(--fl-300); }

/* El icono del nicho va sobre fondo rojo: debe ser blanco */
.niche__ic { color: #fff; }
.niche__ic svg { stroke-width: 2.2; }

/* Alineación vertical del texto junto a los mockups grandes */
.module { align-items: center; }
.bonus__head { align-items: center; }
/* --------------------------------------------------------------------------
   38. Bloqueo temporal del contenido (gate de 360 s)
   -------------------------------------------------------------------------- */
.gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 580px;
  margin: 28px auto 0;
  padding: 20px 26px;
  border-radius: 18px;
  border: 1px solid rgba(239, 68, 68, .28);
  background: rgba(239, 68, 68, .07);
}

.gate__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0;
  font-size: clamp(.84rem, 1.7vw, .98rem);
  font-weight: 700;
  color: #fff;
}

.gate__label svg { width: 17px; height: 17px; color: var(--fl-300); }

.gate__label b {
  color: var(--fl-300);
  font-variant-numeric: tabular-nums;
  font-size: 1.08rem;
}

.gate__bar {
  width: min(260px, 100%);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  overflow: hidden;
}

.gate__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b91c1c, #ef4444, #ffffff);
  transition: width 1s linear;
}

.gate .tiny { margin: 0; text-align: center; }

.gate.is-done { display: none; }

/* Etiqueta del gate: el texto debe fluir como una frase, no como flex items */
.gate__label {
  display: block;
  text-align: center;
  line-height: 1.55;
}

.gate__label svg {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
}
