/*
Theme Name: Fast Web
Author: Fast Web
Description: Tema a medida de Fast Web. Todos los textos se editan en Apariencia > Personalizar.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fastweb
*/

/* ============================================================
   FAST WEB · styles.css
   Mobile first · CSS variables · Flex/Grid
   ============================================================ */

:root {
  /* Oscuros */
  --ink-950: #07080c;
  --ink-900: #0c0e14;
  --ink-800: #141722;
  --ink-700: #1d2130;
  /* Claros */
  --paper: #f6f7fb;
  --paper-2: #ffffff;
  --line-light: #e4e7ef;
  --text-dark: #0d1020;
  --muted-dark: #5b6275;
  /* Texto sobre oscuro */
  --text: #f3f5fa;
  --muted: #9aa2b6;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.18);
  /* Acentos */
  --blue: #4f6bff;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --neon: #7cf7d4;
  --wa: #25d366;
  --warn: #f59e0b;
  --grad: linear-gradient(120deg, #4f6bff 0%, #8b5cf6 55%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(79,107,255,.18), rgba(139,92,246,.18));
  /* Sistema */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-glow: 0 10px 40px -10px rgba(79,107,255,.65);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --nav-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 400 16px/1.6 var(--font); color: var(--text-dark); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -.025em; margin: 0; }
p { margin: 0; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; color: #000; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(139,92,246,.35); }
.mono { font-family: var(--mono); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 20px; }
.container--narrow { max-width: 860px; }

/* ---------- Temas de sección ---------- */
.dark { background: var(--ink-950); color: var(--text); }
.light { background: var(--paper); color: var(--text-dark); }
.section { position: relative; padding-block: 88px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(1.9rem, 5.5vw, 3.1rem); font-weight: 700; }
.lead { margin-top: 16px; font-size: 1.075rem; color: var(--muted-dark); }
.dark .lead { color: var(--muted); }
.eyebrow { display: inline-block; font: 600 .78rem/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.eyebrow--neon { color: var(--neon); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Botones ---------- */
.btn { --bg: transparent; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; background: var(--bg); font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer; white-space: nowrap; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, border-color .25s, color .25s; -webkit-tap-highlight-color: transparent; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { color: #fff; background: var(--grad); background-size: 160% 100%; box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:hover { background-position: 100% 0; box-shadow: 0 14px 50px -8px rgba(139,92,246,.75), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--ghost { color: inherit; border-color: var(--line-strong); background: rgba(255,255,255,.03); }
.light .btn--ghost { border-color: var(--line-light); background: #fff; }
.btn--ghost:hover { border-color: currentColor; }
.btn--wa { color: #062b14; background: var(--wa); box-shadow: 0 10px 30px -10px rgba(37,211,102,.7); white-space: normal; text-align: center; }
.btn--wa:hover { background: #3ae07a; }
.wa-ic { width: 20px !important; height: 20px !important; fill: currentColor !important; stroke: none !important; flex: none; }
.btn--wa:hover .wa-ic { transform: none; }

/* ---------- Navegación ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h); transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; color: var(--text); }
.nav.is-scrolled { background: rgba(7,8,12,.72); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px); border-color: var(--line); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--grad); box-shadow: var(--shadow-glow); }
.logo__mark svg { width: 18px; height: 18px; fill: #fff; }
.logo__text { font: 600 1.15rem var(--display); letter-spacing: -.02em; }
.logo__text b { font-weight: 800; }
.nav__burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; }
.nav__burger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav__links { position: fixed; inset: var(--nav-h) 0 auto; display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 24px; background: rgba(7,8,12,.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .35s var(--ease); }
.nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
.nav__links a:not(.btn) { padding: 12px 4px; text-decoration: none; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__links a:not(.btn):hover { color: var(--text); }
.nav__cta { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 48px) 0 72px; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: drift 18s ease-in-out infinite alternate; }
.orb--a { width: 520px; height: 520px; background: #3b4dff; top: -200px; left: -160px; }
.orb--b { width: 460px; height: 460px; background: #7c3aed; bottom: -220px; right: -140px; animation-delay: -6s; opacity: .45; }
@keyframes drift { to { transform: translate(60px, 40px) scale(1.1); } }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%); }
.hero__inner { position: relative; display: grid; gap: 56px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; font-size: .85rem; color: #cfd6ff; background: rgba(79,107,255,.12); border: 1px solid rgba(79,107,255,.3); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 0 0 rgba(124,247,212,.7); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(124,247,212,0); } 100% { box-shadow: 0 0 0 0 rgba(124,247,212,0); } }
.hero__title { margin-top: 22px; font-size: clamp(2.6rem, 10vw, 5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.02; }
.hero__sub { margin-top: 22px; max-width: 560px; font-size: 1.1rem; color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__cta .btn { flex: 1 1 200px; }
.hero__trust { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; padding: 0; margin: 40px 0 0; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font: 700 1.25rem var(--display); }
.hero__trust span { font-size: .82rem; color: var(--muted); }

/* Glass */
.glass { background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid var(--line); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08); }

/* Mockup */
.hero__visual { position: relative; perspective: 1200px; padding: 20px 8px; }
.mock { border-radius: var(--radius-lg); overflow: hidden; transform-style: preserve-3d; transition: transform .6s var(--ease); }
.mock__bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock__bar i:first-child { background: #ff5f57; } .mock__bar i:nth-child(2) { background: #febc2e; } .mock__bar i:nth-child(3) { background: #28c840; }
.mock__bar span { margin-left: 10px; flex: 1; font: 500 .75rem var(--mono); color: var(--muted); background: rgba(255,255,255,.05); padding: 4px 10px; border-radius: 6px; }
.mock__body { padding: 22px; display: grid; gap: 12px; }
.sk { border-radius: 8px; background: linear-gradient(90deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.07) 100%); background-size: 200% 100%; animation: shimmer 2.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk--nav { height: 10px; width: 40%; }
.sk--h1 { height: 26px; width: 85%; margin-top: 10px; background: var(--grad); opacity: .85; animation: none; }
.sk--short { width: 55%; opacity: .5; }
.sk--p { height: 10px; width: 70%; }
.sk--btns { display: flex; gap: 10px; background: none; animation: none; }
.sk--btns span { height: 30px; width: 110px; border-radius: 999px; background: var(--blue); }
.sk--btns span + span { background: rgba(255,255,255,.1); width: 80px; }
.sk--cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; background: none; animation: none; }
.sk--cards span { height: 70px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.mock__build { height: 3px; background: rgba(255,255,255,.06); }
.mock__build-fill { display: block; height: 100%; width: 0; background: var(--grad); animation: build 5s var(--ease) infinite; }
@keyframes build { 0% { width: 0; } 70%, 100% { width: 100%; } }
.float-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 16px; font-size: .85rem; animation: float 6s ease-in-out infinite; }
.float-card strong { display: block; font-size: .95rem; }
.float-card small { color: var(--muted); font-size: .75rem; }
.float-card svg { width: 26px; height: 26px; fill: none; stroke: var(--neon); stroke-width: 2; stroke-linecap: round; }
.float-card--score { left: -4px; bottom: -8px; }
.float-card--timer { right: -4px; top: 0; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-10px); } }
.ring { --p: 100; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--neon) calc(var(--p) * 1%), rgba(255,255,255,.08) 0); }
.ring span { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-900); font: 700 .8rem var(--display); color: var(--neon); }

/* Strip */
.strip { overflow: hidden; border-block: 1px solid var(--line); padding-block: 16px; }
.strip__track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.strip__track span { font: 600 .9rem var(--display); color: var(--muted); display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.strip__track span::after { content: "✦"; color: var(--violet); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Versión simplificada ---------- */
.section--tight { padding-block: 64px; }
.section__head--sm { margin-bottom: 32px; }
.section__head--sm h2 { font-size: clamp(1.6rem, 4.6vw, 2.5rem); }

.why3 { display: grid; gap: 12px; }
.why3__item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line-light); }
.why3__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); }
.why3__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why3__item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why3__item p { font-size: .92rem; color: var(--muted-dark); }

.price .btn--block { margin: 4px 0 20px; }
/* ---------- Planes · textos y niveles ---------- */
.price .price__goal { min-height: 3em; margin-top: 6px; font-size: .95rem; line-height: 1.5; color: #c9cfdf; }
.price h3 { font-size: 1.7rem; letter-spacing: -.03em; }
.price__for { margin: -8px 0 18px; font-size: .84rem; line-height: 1.5; color: var(--muted); }

.tier { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tier__bars { display: inline-flex; gap: 3px; }
.tier__bars i { width: 16px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.14); }
.tier__bars i.on { background: #b8c3ff; }
.tier__name { font: 700 .72rem var(--font); letter-spacing: .16em; text-transform: uppercase; color: #b8c3ff; }
.tier--pro .tier__bars i.on { background: var(--neon); }
.tier--pro .tier__name { color: var(--neon); }
.tier--elite .tier__bars i.on { background: linear-gradient(90deg, #f7e2b5, #d4a55a); box-shadow: 0 0 10px rgba(233,201,143,.5); }
.tier--elite .tier__name { color: #e9c98f; }

.price--elite { border-color: rgba(233,201,143,.35); background: linear-gradient(165deg, rgba(233,201,143,.1), rgba(139,92,246,.06) 45%, rgba(255,255,255,.02)); box-shadow: 0 40px 80px -40px rgba(212,165,90,.35), inset 0 1px 0 rgba(255,255,255,.1); }
.price--elite:hover { border-color: rgba(233,201,143,.6); }
.price__badge--elite { background: linear-gradient(120deg, #f7e2b5, #d4a55a); color: #1b1407; box-shadow: 0 10px 30px -10px rgba(212,165,90,.7); }
.btn--elite { color: #1b1407; background: linear-gradient(120deg, #f7e2b5 0%, #e3bb74 50%, #f7e2b5 100%); background-size: 200% 100%; box-shadow: 0 12px 34px -12px rgba(212,165,90,.75), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--elite:hover { background-position: 100% 0; box-shadow: 0 16px 44px -10px rgba(212,165,90,.85), inset 0 1px 0 rgba(255,255,255,.5); }
.price--elite .checks li::before { background-color: rgba(233,201,143,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9c98f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E"); }
.pillars { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: -6px 0 18px; padding: 0; }
.pillars li { padding: 5px 10px; border-radius: 999px; font-size: .74rem; font-weight: 600; color: #f3e3c3; background: rgba(233,201,143,.08); border: 1px solid rgba(233,201,143,.28); }

.plans__note { max-width: 760px; margin: 34px auto 0; text-align: center; font-size: .92rem; line-height: 1.6; color: #c9cfdf; }
.plans__note b { color: #fff; font-weight: 600; }

.reco { display: grid; gap: 22px; align-items: center; max-width: 900px; margin: 28px auto 0; padding: 26px; border-radius: var(--radius-lg); }
.reco h3 { font-size: 1.3rem; }
.reco p { margin-top: 6px; color: var(--muted); font-size: .94rem; }
.reco .btn { justify-self: start; }
.ladder { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; counter-reset: lv; }
.ladder li { counter-increment: lv; display: flex; align-items: baseline; gap: 8px; padding: 8px 14px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid var(--line); font-size: .85rem; }
.ladder li b { font: 700 .95rem var(--display); color: #fff; }
.ladder li span { color: var(--muted); }
.ladder li:nth-child(1) span { color: #b8c3ff; }
.ladder li:nth-child(2) span { color: var(--neon); }
.ladder li:nth-child(3) span { color: #e9c98f; }
.ladder li + li { position: relative; }
.ladder--result { justify-content: center; margin: 14px 0 18px; }
.ladder--result li { opacity: .45; }
.ladder--result li.is-on { opacity: 1; border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 12px 30px -14px rgba(124,247,212,.6); }
.quiz__tier { margin-top: 2px !important; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }
.quiz__tier b { color: #fff; }
@media (min-width: 760px) { .reco { grid-template-columns: 1fr auto; padding: 30px 34px; } .reco .btn { justify-self: end; } }
.price .checks { margin: 0; flex: none; }
/* Listas cortas: se muestran completas */
.price.is-open .checks li { display: list-item; }
.more-btn { margin-top: 14px; align-self: flex-start; padding: 0; border: 0; background: none; color: #b8c3ff; font-size: .86rem; font-weight: 600; cursor: pointer; }
.more-btn::after { content: " ↓"; }
.price.is-open .more-btn::after { content: " ↑"; }
.more-btn:hover { color: #fff; }
.plans__extras { margin-top: 28px; text-align: center; font-size: .9rem; color: var(--muted); }
.plans__extras b { color: var(--text); font-weight: 600; }

.express { position: relative; padding-block: 56px; border-top: 1px solid var(--line); background: radial-gradient(600px 260px at 50% 0%, rgba(139,92,246,.18), transparent 70%), var(--ink-950); }
.express__head { text-align: center; margin-bottom: 24px; }
.express__head h2 { font-size: clamp(1.5rem, 4.4vw, 2.2rem); }
.express__head p { margin-top: 8px; color: var(--muted); font-size: .95rem; }
.express__grid { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.express__grid--one { max-width: 560px; grid-template-columns: 1fr !important; }
.express__grid--one .promo { padding: 28px; }
.express__grid--one .promo__row h3 { font-size: 1.35rem; }
.cards2 { grid-template-columns: 1fr 1fr !important; }
/* Dos planes: siempre centrados */
.pricing.pricing--2 { max-width: 820px; margin-inline: auto; }
@media (min-width: 700px) { .pricing.pricing--2 { grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 28px; } }
.pricing--2 + .plans__extras { max-width: 820px; margin-inline: auto; }

.domain-banner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px 6px; width: fit-content; max-width: 100%; margin: -8px auto 26px; padding: 10px 18px; border-radius: 999px; text-align: center; font-size: .92rem; color: #d9fbe9; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.35); box-shadow: 0 10px 30px -18px rgba(37,211,102,.6); }
.domain-banner b { color: #fff; font-weight: 700; }
.price__domain { display: inline; font-weight: 600; color: #7cf7d4; }
.cards2 .card-opt > span { grid-template-columns: 1fr; text-align: center; height: 100%; padding: 16px 10px; }
.cards2 .card-opt em { grid-row: auto; }
.express .promo { padding: 22px; gap: 16px; }
.promo__row { display: flex; align-items: center; gap: 18px; }
.promo__row h3 { font-size: 1.15rem; }
.promo__row p { font-size: .92rem; color: #cfd4e2; margin-top: 2px; padding-right: 60px; }
.express .promo__time { margin: 0; flex: none; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: rgba(79,107,255,.14); border: 1px solid rgba(79,107,255,.35); font-size: .85rem; line-height: 1; }
.express .promo--hot .promo__time { background: rgba(139,92,246,.18); border-color: rgba(139,92,246,.45); }
.express .promo__time b { font-size: 1.9rem; }
.express .promo__ribbon { top: 14px; right: 14px; }
.express .fineprint { margin-top: 16px; }

.more { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 0 16px; }
.more summary { list-style: none; padding: 14px 0; cursor: pointer; font-weight: 600; font-size: .92rem; color: #cfd4e2; display: flex; align-items: center; gap: 8px; }
.more summary::-webkit-details-marker { display: none; }
.more summary::before { content: "+"; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: transform .3s var(--ease); }
.more[open] summary::before { transform: rotate(45deg); }
.more summary small { font-weight: 400; color: var(--muted); }
.more__body { display: grid; gap: 20px; padding-bottom: 18px; }

.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,8,12,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .45s var(--ease); }
.mobile-cta.is-show { transform: none; }
body.has-mcta .wa-float { bottom: 84px; }
.wa-float { transition: transform .35s var(--ease), bottom .45s var(--ease); }

/* ---------- Hero · entrada ---------- */
.js-anim .hero [data-h] { transition: opacity .9s ease var(--hd, 0s), translate 1.2s cubic-bezier(.16,1,.3,1) var(--hd, 0s), scale 1.1s cubic-bezier(.34,1.56,.64,1) var(--hd, 0s), filter .9s ease var(--hd, 0s), transform 1.6s cubic-bezier(.16,1,.3,1) var(--hd, 0s); }
.hero-pending .hero [data-h] { opacity: 0; translate: 0 28px; filter: blur(10px); }
.hero-pending .hero [data-h3d] { translate: 0 0; transform: perspective(1200px) translate3d(80px, 40px, -320px) rotateY(-28deg) rotateX(16deg); filter: blur(16px); }
.hero-pending .hero [data-hpop] { translate: 0 0; scale: .4; filter: blur(6px); }
.hero-pending .hero__title:not(.is-split) { opacity: 0; }

.hw { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .12em; margin: 0 -.04em -.12em; }
.hw > span { display: inline-block; }
.js-anim .hero .hw > span { transition: translate 1.1s cubic-bezier(.16,1,.3,1) var(--hd, 0s), rotate 1.1s cubic-bezier(.16,1,.3,1) var(--hd, 0s), opacity .6s ease var(--hd, 0s); }
.hero-pending .hero .hw > span { translate: 0 105%; rotate: 5deg; opacity: 0; }

/* Brillo que recorre "lista en horas." */
.hero .grad-text { background-image: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.95) 48%, transparent 60%), var(--grad); background-size: 250% 100%, 100% 100%; background-repeat: no-repeat; background-position: 180% 0, 0 0; }
.hero.is-live .grad-text { animation: shine 7s ease-in-out 1.1s infinite; }
@keyframes shine { 0% { background-position: 180% 0, 0 0; } 22%, 100% { background-position: -80% 0, 0 0; } }

/* Estela de velocidad que cruza el hero */
.hero__streak { position: absolute; top: 58%; left: 0; width: 45vw; height: 1px; opacity: 0; background: linear-gradient(90deg, transparent, rgba(124,247,212,.9), #fff); box-shadow: 0 0 14px rgba(124,247,212,.7); }
.hero.is-live .hero__streak { animation: streak 1.2s cubic-bezier(.45,0,.2,1) .15s forwards; }
.hero-pending .orb { scale: .3; opacity: 0; }
.js-anim .hero .orb { transition: scale 2.4s cubic-bezier(.16,1,.3,1), opacity 1.6s ease; }
.hero-pending .grid-lines { opacity: 0; scale: 1.25; }
.js-anim .hero .grid-lines { transition: opacity 2s ease .2s, scale 2.4s cubic-bezier(.16,1,.3,1) .2s; }

/* ---------- Planes · entrada cinematográfica ---------- */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.plans { overflow: hidden; isolation: isolate; }
.plans > .container { position: relative; z-index: 1; }
.plans__beam { position: absolute; z-index: 0; left: 50%; top: -120px; width: min(1400px, 180vw); height: 1100px; transform-origin: 50% 0; transform: translateX(-50%) scaleY(.2); opacity: 0; pointer-events: none;
  background: conic-gradient(from 180deg at 50% 0%, transparent 152deg, rgba(120,140,255,.22) 172deg, rgba(190,170,255,.34) 180deg, rgba(120,140,255,.22) 188deg, transparent 208deg);
  -webkit-mask-image: linear-gradient(#000 25%, transparent 85%); mask-image: linear-gradient(#000 25%, transparent 85%); filter: blur(6px); }
.plans.is-played .plans__beam { animation: beamIn 2.2s cubic-bezier(.16,1,.3,1) forwards, beamSway 9s ease-in-out 2.2s infinite alternate; }
@keyframes beamIn { 0% { opacity: 0; transform: translateX(-50%) scaleY(.2); } 40% { opacity: 1; } 100% { opacity: .85; transform: translateX(-50%) scaleY(1); } }
@keyframes beamSway { from { opacity: .85; transform: translateX(-50%) scaleY(1) rotate(0deg); } to { opacity: .6; transform: translateX(-50%) scaleY(1) rotate(3deg); } }

/* Estado inicial (solo si JS lo activa) */
.cine .price.cine-wait { opacity: 0; transform: perspective(1400px) translateY(120px) rotateX(34deg) scale(.88); filter: blur(14px); }
.cine .price.cine-run { transition: opacity .9s ease var(--cd, 0s), transform 1.6s cubic-bezier(.16,1,.3,1) var(--cd, 0s), filter 1.1s ease var(--cd, 0s), border-color .3s, box-shadow .5s; }
.cine .price.cine-run .checks li { animation: liIn .7s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(var(--cd, 0s) + .75s + var(--i, 0) * 70ms); }
@keyframes liIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

/* Destello al aterrizar el plan Pro */
.price--featured::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; box-shadow: 0 0 0 1px rgba(160,180,255,.9), 0 0 60px 10px rgba(124,108,255,.55), 0 0 160px 40px rgba(34,211,238,.25); }
.price--featured.cine-landed::after { animation: landFlash 1.6s ease-out both; }
@keyframes landFlash { 0% { opacity: 0; } 15% { opacity: 1; } 100% { opacity: 0; } }

/* Borde de luz giratorio en el plan Pro */
.price--featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--ang), transparent 0 55%, rgba(139,92,246,.9) 70%, #22d3ee 80%, rgba(79,107,255,.9) 88%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinBorder 5s linear infinite; }
@keyframes spinBorder { to { --ang: 360deg; } }

/* Luz que sigue al cursor */
.price__spot { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s; mix-blend-mode: screen;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(130,150,255,.16), transparent 60%); }
.price:hover .price__spot { opacity: 1; }
.js-price { font-variant-numeric: tabular-nums; }

/* ---------- Por qué una web profesional ---------- */
.why { background: var(--paper-2); color: var(--text-dark); border-bottom: 1px solid var(--line-light); }
.why__inner { display: grid; gap: 48px; }
.why__intro h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); font-weight: 700; }
.why__punch { margin: 22px 0 28px; padding: 14px 18px; border-left: 3px solid var(--violet); border-radius: 0 12px 12px 0; background: #f4f0ff; font-weight: 600; color: #3b2a73; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.why__item { display: flex; gap: 20px; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line-light); background: var(--paper); transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s; }
.why__item:hover { transform: translateX(6px); background: #fff; box-shadow: 0 20px 44px -26px rgba(20,30,80,.3); }
.why__n { flex: none; font: 800 1.6rem/1 var(--display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why__item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.why__item p { color: var(--muted-dark); font-size: .95rem; }

/* ---------- Features ---------- */
.features { display: grid; gap: 16px; }
.feature { background: var(--paper-2); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 28px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(20,30,80,.25); border-color: #cfd5ff; }
.feature__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); margin-bottom: 20px; }
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted-dark); font-size: .96rem; }

.process { position: relative; margin-top: 72px; }
.process__line { display: none; }
.process__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; }
.process__steps li { position: relative; padding-left: 64px; }
.step-n { position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font: 700 1.05rem var(--display); color: #fff; background: var(--ink-900); box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--line-light); }
.process__steps h4 { font-size: 1.05rem; margin: 2px 0 4px; }
.process__steps p { font-size: .92rem; color: var(--muted-dark); }

/* ---------- Promos ---------- */
.promos { overflow: hidden; }
.promos__glow { position: absolute; inset: 0; background: radial-gradient(600px 300px at 20% 30%, rgba(79,107,255,.22), transparent 70%), radial-gradient(600px 320px at 80% 70%, rgba(139,92,246,.22), transparent 70%); pointer-events: none; }
.promo-grid { position: relative; display: grid; gap: 20px; }
.promo { position: relative; border-radius: var(--radius-lg); padding: 30px 24px; display: flex; flex-direction: column; gap: 16px; transition: transform .45s var(--ease), border-color .3s; }
.promo:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.promo.is-selected { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 30px 60px -30px rgba(124,247,212,.4); }
.promo--hot { border-color: rgba(139,92,246,.45); }
.promo__ribbon { position: absolute; top: 18px; right: 18px; font: 700 .7rem var(--font); letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--grad); }
.promo__top { display: flex; align-items: center; gap: 14px; }
.promo__tag { font: 600 .75rem var(--font); letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(79,107,255,.15); color: #b8c3ff; border: 1px solid rgba(79,107,255,.35); }
.promo__tag--hot { background: rgba(139,92,246,.15); color: #d7c6ff; border-color: rgba(139,92,246,.4); }
.promo__time { font: 800 1rem var(--display); color: var(--muted); margin-left: auto; }
.promo--hot .promo__time { margin-left: 0; }
.promo__time b { font-size: 3rem; line-height: 1; color: var(--text); }
.promo h3 { font-size: 1.5rem; }
.promo__price { font: 700 2rem var(--display); }
.promo__price small { font: 500 .9rem var(--font); color: var(--muted); }
.promo__guarantee { display: flex; gap: 14px; padding: 16px; border-radius: var(--radius); background: rgba(124,247,212,.06); border: 1px solid rgba(124,247,212,.18); font-size: .95rem; color: #d8dce8; }
.promo__guarantee svg { flex: none; width: 28px; height: 28px; fill: none; stroke: var(--neon); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.promo__guarantee--hot { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.35); }
.promo__guarantee--hot svg { stroke: #c4a7ff; }
.hl { color: var(--neon); }
.promo__actions { display: grid; gap: 10px; margin-top: auto; }
.fineprint { position: relative; margin: 24px auto 0; max-width: 720px; text-align: center; font-size: .82rem; color: var(--muted); }

/* ---------- Planes ---------- */
.plans { background: radial-gradient(900px 500px at 50% 0%, rgba(79,107,255,.14), transparent 70%), var(--ink-900); }
.switch { position: relative; display: grid; grid-template-columns: 1fr 1fr; max-width: 620px; margin: 0 auto 36px; padding: 5px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.switch__btn { position: relative; z-index: 1; padding: 12px 10px; border: 0; background: none; border-radius: 14px; font-weight: 600; font-size: .88rem; line-height: 1.3; color: var(--muted); cursor: pointer; transition: color .3s; }
.switch__btn.is-active { color: #fff; }
.switch__pill { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 14px; background: var(--grad); box-shadow: var(--shadow-glow); transition: transform .5s var(--ease); }
.switch.is-quiz .switch__pill { transform: translateX(100%); }
.view.is-active { animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.delivery { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; margin-bottom: 36px; font-size: .9rem; color: var(--muted); }
.delivery__opts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--muted); font-size: .85rem; font-weight: 500; cursor: pointer; transition: all .25s var(--ease); }
.chip:hover { color: var(--text); }
.chip.is-active { color: var(--ink-950); background: var(--neon); border-color: var(--neon); }

.pricing { display: grid; gap: 20px; align-items: stretch; }
.price { position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); padding: 32px 26px; transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease); }
.price:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price--featured { border-color: rgba(139,92,246,.6); background: linear-gradient(165deg, rgba(79,107,255,.22), rgba(139,92,246,.1) 45%, rgba(255,255,255,.02)); box-shadow: 0 40px 80px -30px rgba(79,107,255,.5), inset 0 1px 0 rgba(255,255,255,.15); }
.price.is-recommended { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 40px 80px -30px rgba(124,247,212,.35); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font: 700 .72rem var(--font); letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); white-space: nowrap; }
.price h3 { font-size: 1.4rem; }
.price__goal { color: var(--muted); font-size: .92rem; margin-top: 4px; }
.price__amount { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 2px; margin: 22px 0 6px; font: 800 3.4rem/1 var(--display); letter-spacing: -.04em; }
.price__amount sup { font-size: 1.5rem; margin-top: 6px; }
.price__amount small { flex-basis: 100%; font: 500 .8rem var(--font); letter-spacing: 0; color: var(--muted); margin-top: 8px; }
.js-price { transition: opacity .2s; }
.js-price.is-changing { opacity: .2; }
.price__quote { font-size: .92rem; font-style: italic; color: #c9cfdf; padding: 14px 0 18px; border-bottom: 1px solid var(--line); }
.checks { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 10px; flex: 1; }
.checks li { position: relative; padding-left: 28px; font-size: .93rem; color: #d7dbe6; }
.checks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(124,247,212,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237cf7d4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 11px no-repeat; }
.checks__all { font-weight: 600; color: #fff !important; }

/* Quiz */
.quiz { max-width: 720px; margin: 0 auto; border-radius: var(--radius-lg); padding: 30px 22px; overflow: hidden; }
.quiz__progress { height: 4px; border-radius: 4px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 28px; }
.quiz__progress span { display: block; height: 100%; width: 0; background: var(--grad); transition: width .6s var(--ease); }
.quiz__q small { font: 600 .78rem var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--neon); }
.quiz__q h3 { font-size: clamp(1.35rem, 4vw, 1.8rem); margin: 10px 0 22px; }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.03); cursor: pointer; transition: all .3s var(--ease); }
.quiz__opt:hover { border-color: var(--blue); background: rgba(79,107,255,.1); transform: translateX(4px); }
.quiz__opt .emo { font-size: 1.4rem; }
.quiz__opt b { display: block; font-weight: 600; }
.quiz__opt small { color: var(--muted); font-size: .85rem; }
.quiz__back { margin-top: 18px; background: none; border: 0; color: var(--muted); cursor: pointer; font-size: .9rem; }
.quiz__back:hover { color: var(--text); }
.quiz__anim { animation: fadeUp .5s var(--ease) both; }
.quiz__result { text-align: center; }
.quiz__result .big { font: 800 clamp(2.4rem, 8vw, 3.4rem) var(--display); margin: 8px 0; }
.quiz__result p { color: var(--muted); max-width: 480px; margin: 0 auto; }
.quiz__result .btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }

/* ---------- Extras ---------- */
.extras { display: grid; gap: 16px; }
.extra { position: relative; background: var(--paper-2); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.extra:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(20,30,80,.25); }
.extra--ai { background: linear-gradient(160deg, #fff, #f3efff); border-color: #ddd2ff; }
.extra__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: #e9edff; margin-bottom: 8px; }
.extra__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.extra__icon--green { background: #dcfbe9; } .extra__icon--green svg { stroke: #16a34a; }
.extra__icon--violet { background: #ede5ff; } .extra__icon--violet svg { stroke: var(--violet); }
.extra h3 { font-size: 1.2rem; }
.extra p { color: var(--muted-dark); font-size: .95rem; }
.extra__price { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-light); color: var(--text-dark) !important; font-size: .9rem !important; }
.extra__price b { font: 700 1.35rem var(--display); }
.extra__price span { color: var(--muted-dark); }

/* ---------- Wizard ---------- */
.brief { background: radial-gradient(800px 400px at 50% 0%, rgba(139,92,246,.16), transparent 70%), var(--ink-950); }
.wizard { border-radius: var(--radius-lg); padding: 24px 18px; }
.wizard__steps { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.wizard__steps li { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .72rem; font-weight: 500; color: var(--muted); text-align: center; position: relative; }
.wizard__steps li span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font: 700 .85rem var(--display); border: 1px solid var(--line-strong); background: var(--ink-900); transition: all .4s var(--ease); position: relative; z-index: 1; }
.wizard__steps li:not(:last-child)::after { content: ""; position: absolute; top: 16px; left: calc(50% + 20px); right: calc(-50% + 20px); height: 2px; background: var(--line); }
.wizard__steps li.is-done::after { background: var(--blue); }
.wizard__steps li.is-active { color: var(--text); }
.wizard__steps li.is-active span { background: var(--grad); border-color: transparent; box-shadow: var(--shadow-glow); color: #fff; }
.wizard__steps li.is-done span { background: var(--blue); border-color: var(--blue); color: #fff; }

.phase { border: 0; margin: 0; padding: 0; min-width: 0; display: grid; gap: 22px; }
.phase.is-active { animation: fadeUp .5s var(--ease) both; }
.row { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field.cond:not([hidden]), .sub.cond:not([hidden]), .notice.cond:not([hidden]) { animation: fadeUp .45s var(--ease) both; }
.field label, .label { font-size: .9rem; font-weight: 600; color: #e3e7f1; }
.label small, .field label small { font-weight: 400; color: var(--muted); }
.hint { font-size: .8rem; color: var(--muted); }
input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea, .mini-input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--text); font-size: 16px; transition: border-color .25s, background .25s, box-shadow .25s; }
textarea { resize: vertical; min-height: 88px; }
input::placeholder, textarea::placeholder { color: #6c7388; }
input:focus, textarea:focus { outline: none; border-color: var(--blue); background: rgba(79,107,255,.07); box-shadow: 0 0 0 4px rgba(79,107,255,.18); }
.is-invalid, .is-invalid input { border-color: #f87171 !important; box-shadow: 0 0 0 4px rgba(248,113,113,.15) !important; }
.chips.is-invalid, .cards3.is-invalid { border-radius: 14px; outline: 2px solid rgba(248,113,113,.6); outline-offset: 6px; box-shadow: none !important; }
.shake { animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
.mini-input { margin-top: 6px; padding: 11px 14px; font-size: .9rem; }
.input-affix { display: flex; align-items: stretch; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.04); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.input-affix:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(79,107,255,.18); }
.input-affix span { display: grid; place-items: center; padding: 0 4px 0 16px; color: var(--muted); font-size: .95rem; }
.input-affix input { border: 0 !important; background: transparent !important; box-shadow: none !important; padding-left: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt > span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); font-size: .9rem; color: #cfd4e2; transition: all .25s var(--ease); user-select: none; }
.opt:hover > span { border-color: #7d8bff; color: #fff; }
.opt input:checked + span { color: #fff; border-color: transparent; background: var(--grad); box-shadow: 0 8px 22px -10px rgba(79,107,255,.8); }
.opt input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.chips--multi .opt input:checked + span::before { content: "✓"; font-weight: 700; }
.opt .save { font-style: normal; font-size: .7rem; padding: 2px 7px; border-radius: 999px; background: rgba(124,247,212,.2); color: var(--neon); }
.opt input:checked + span .save { background: rgba(255,255,255,.2); color: #fff; }
.sw { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); }
.sw--min { background: #f4f4f4; } .sw--dark { background: linear-gradient(135deg, #111, #c9a24a); } .sw--color { background: conic-gradient(#ff5d8f, #ffc53d, #22d3ee, #8b5cf6, #ff5d8f); } .sw--corp { background: linear-gradient(135deg, #1e3a8a, #94a3b8); } .sw--auto { background: var(--grad); }
.count-badge { margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: .75rem; }
.count-badge.is-over { background: rgba(245,158,11,.2); color: #fcd34d; }

.cards3 { display: grid; gap: 10px; }
.card-opt { position: relative; cursor: pointer; }
.card-opt input { position: absolute; opacity: 0; pointer-events: none; }
.card-opt > span { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 12px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); transition: all .3s var(--ease); }
.card-opt b { font: 700 1.05rem var(--display); }
.card-opt em { font: 800 1.2rem var(--display); font-style: normal; grid-row: span 2; }
.card-opt small { color: var(--muted); font-size: .8rem; }
.card-opt:hover > span { border-color: #7d8bff; }
.card-opt input:checked + span { border-color: transparent; background: linear-gradient(160deg, rgba(79,107,255,.3), rgba(139,92,246,.2)); box-shadow: 0 0 0 2px var(--blue), 0 16px 40px -20px rgba(79,107,255,.8); }
.card-opt--hot input:checked + span { box-shadow: 0 0 0 2px var(--violet), 0 16px 40px -20px rgba(139,92,246,.8); }
.card-opt input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

.notice { padding: 14px 16px; border-radius: 12px; font-size: .9rem; background: rgba(79,107,255,.1); border: 1px solid rgba(79,107,255,.3); color: #d6dcff; }
.notice--warn { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.35); color: #fde68a; }
.notice--warn button { margin-left: 6px; background: none; border: 0; color: #fff; text-decoration: underline; cursor: pointer; font-weight: 600; padding: 0; }
.notice--promo { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; background: rgba(37,211,102,.08); border-color: rgba(37,211,102,.3); color: #d1fadf; }
.link-wa { color: var(--wa); font-weight: 600; text-decoration: none; }
.link-wa:hover { text-decoration: underline; }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .9rem; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--blue); flex: none; }
.check--legal { margin-top: 6px; color: var(--muted); }
.check--legal a { color: #b8c3ff; }

.toggles { display: grid; gap: 10px; }
.toggle { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.03); cursor: pointer; transition: border-color .3s, background .3s; }
.toggle:hover { border-color: var(--line-strong); }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle__ui { position: relative; flex: none; width: 46px; height: 26px; border-radius: 999px; background: rgba(255,255,255,.14); transition: background .3s; }
.toggle__ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .4s var(--ease); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.toggle input:checked ~ .toggle__ui { background: var(--grad); }
.toggle input:checked ~ .toggle__ui::after { transform: translateX(20px); }
.toggle:has(input:checked) { border-color: rgba(79,107,255,.5); background: rgba(79,107,255,.08); }
.toggle input:focus-visible ~ .toggle__ui { outline: 2px solid var(--cyan); outline-offset: 2px; }
.toggle__txt b { display: block; font-weight: 600; font-size: .95rem; }
.toggle__txt small { color: var(--muted); font-size: .82rem; }
.sub { padding: 4px 4px 8px 18px; display: grid; gap: 10px; }

.wizard__foot { position: sticky; bottom: 0; margin: 28px -18px -24px; padding: 16px 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); background: rgba(12,14,20,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.total small { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.total strong { font: 800 1.5rem var(--display); }
.total em { display: block; font-style: normal; font-size: .78rem; color: var(--neon); }
.wizard__nav { display: flex; gap: 10px; flex: 1; justify-content: flex-end; }
.wizard__nav .btn { flex: 0 1 auto; }
.wizard__saved { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 34px; min-height: 1em; }

.summary { display: grid; gap: 14px; }
.summary__block { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: rgba(255,255,255,.03); }
.summary__block h4 { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; }
.summary__block h4 button { background: none; border: 0; color: #b8c3ff; font: 500 .82rem var(--font); text-transform: none; letter-spacing: 0; cursor: pointer; }
.summary dl { margin: 0; display: grid; grid-template-columns: minmax(110px, 38%) 1fr; gap: 6px 14px; font-size: .9rem; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; color: var(--text); word-break: break-word; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid rgba(139,92,246,.4); }
.summary__total strong { font: 800 1.8rem var(--display); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--paper-2); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 0 20px; transition: box-shadow .3s; }
.faq details[open] { box-shadow: 0 16px 40px -24px rgba(20,30,80,.25); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font: 600 1rem var(--display); cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #eef0ff; color: var(--blue); font-size: 1.2rem; transition: transform .35s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 20px; color: var(--muted-dark); }
.faq a { color: var(--blue); }

/* ---------- Final + Footer ---------- */
.final { position: relative; overflow: hidden; padding-block: 96px; text-align: center; background: radial-gradient(700px 360px at 50% 100%, rgba(79,107,255,.3), transparent 70%), var(--ink-950); }
.final__inner { display: grid; justify-items: center; gap: 32px; }
.final h2 { font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 800; }
.footer { border-top: 1px solid var(--line); padding-block: 36px 100px; }
.footer__inner { display: grid; justify-items: center; gap: 16px; text-align: center; font-size: .85rem; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--text); }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); transition: transform .35s var(--ease); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: waRing 2.4s infinite; }
@keyframes waRing { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 60; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; max-width: calc(100% - 40px); padding: 14px 20px; border-radius: 14px; background: #fff; color: var(--text-dark); font-weight: 500; font-size: .92rem; box-shadow: 0 20px 50px -10px rgba(0,0,0,.4); transition: all .45s var(--ease); }
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Reveal (el contenido es visible por defecto; JS añade la animación) ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js-anim .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 640px) {
  .container { padding-inline: 28px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .row { grid-template-columns: 1fr 1fr; }
  .cards3 { grid-template-columns: repeat(3, 1fr); }
  .card-opt > span { grid-template-columns: 1fr; text-align: center; height: 100%; padding: 18px 12px; }
  .card-opt em { grid-row: auto; }
  .wizard { padding: 36px 36px 24px; }
  .wizard__foot { margin-inline: -36px; padding-inline: 36px; }
  .wizard__steps li { font-size: .8rem; }
  .quiz { padding: 40px; }
  .quiz__opts { grid-template-columns: 1fr 1fr; }
  .promo__actions { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
  :root { --nav-h: 76px; }
  .section { padding-block: 120px; }
  .nav__burger { display: none; }
  .nav__links { position: static; flex-direction: row; align-items: center; gap: 30px; padding: 0; background: none; backdrop-filter: none; border: 0; transform: none; opacity: 1; visibility: visible; }
  .nav__links a:not(.btn) { padding: 0; border: 0; font-size: .92rem; position: relative; }
  .nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--grad); transform: scaleX(0); transition: transform .35s var(--ease); }
  .nav__links a:not(.btn):hover::after { transform: scaleX(1); }
  .nav__cta { margin-top: 0; }
  .hero { padding: calc(var(--nav-h) + 80px) 0 120px; min-height: 100vh; display: flex; align-items: center; }
  .hero__inner { grid-template-columns: 1.1fr .9fr; }
  .hero__cta .btn { flex: 0 0 auto; }
  .features { grid-template-columns: repeat(4, 1fr); }
  .why3 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .express__grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: none; }
  body.has-mcta .wa-float { bottom: 18px; }
  .why__inner { grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: start; }
  .why__intro { position: sticky; top: calc(var(--nav-h) + 40px); }
  .process__line { display: block; position: absolute; top: 22px; left: 12%; right: 12%; height: 2px; background: var(--line-light); }
  .process__line span { display: block; height: 100%; width: 0; background: var(--grad); transition: width 1.6s var(--ease); }
  .process__steps { grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
  .process__steps li { padding: 64px 10px 0; }
  .step-n { left: 50%; transform: translateX(-50%); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo { padding: 40px 36px; }
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .price--featured { transform: scale(1.04); }
  .price--featured:hover { transform: scale(1.04) translateY(-6px); }
  .extras { grid-template-columns: repeat(3, 1fr); }
  .switch__btn { font-size: .95rem; }
  .footer { padding-bottom: 36px; }
  .footer__inner { grid-template-columns: auto 1fr auto; justify-items: stretch; text-align: left; }
  .footer__links { justify-content: center; }
}

/* Solo efectos intrusivos se desactivan con reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .orb, .strip__track, .float-card, .wa-float::before, .mock__build-fill, .price--featured::before { animation: none !important; }
  .plans.is-played .plans__beam { animation: beamIn 1.2s ease forwards !important; }
  .hero.is-live .grad-text, .hero.is-live .hero__streak { animation: none !important; }
  html { scroll-behavior: auto; }
}
