/* ===================== TOKENS (TEMA CLARO) ===================== */
:root {
  --bg: #ffffff;
  --bg-2: #f5f6fc;
  --bg-3: #eef0fb;
  --panel: #ffffff;
  --panel-2: #f3f1ff;
  --line: rgba(23, 23, 64, 0.08);
  --line-strong: rgba(23, 23, 64, 0.14);
  --text: #14152b;
  --text-2: #2c2e4a;
  --muted: #5d6280;
  --violet: #6f4bff;
  --violet-2: #7c5cff;
  --magenta: #c04bff;
  --grad: linear-gradient(100deg, #6f4bff 0%, #c04bff 100%);
  --grad-btn: linear-gradient(100deg, #6f4bff 0%, #b14bff 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow-sm: 0 2px 8px rgba(23, 23, 64, 0.06);
  --shadow: 0 12px 34px rgba(23, 23, 64, 0.10);
  --shadow-lg: 0 26px 60px rgba(23, 23, 64, 0.16);
  --shadow-violet: 0 14px 32px rgba(111, 75, 255, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { color: var(--violet); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 14px; }
.eyebrow.light { color: rgba(255, 255, 255, 0.92); }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 46ch; }
.muted { color: var(--muted); }
.section { padding: 84px 0; position: relative; }
.section-title { text-align: center; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 48px; }
.fineprint { color: var(--muted); font-size: 0.8rem; margin-top: 18px; }
.fineprint.center { text-align: center; }
.fineprint a { color: var(--violet); }

/* Iconos SVG genéricos */
svg { display: block; }
.bicon svg, .fc-icon svg, .step-num svg { width: 22px; height: 22px; }

/* ===================== ANIMACIONES ===================== */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseGlow { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.in, .reveal-right.in { transform: none; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, border-color .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-violet); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(111, 75, 255, 0.42); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--violet); box-shadow: var(--shadow); }
.btn-light { background: #fff; color: #5326c6; box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0,0,0,0.26); }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(4px); }
.play { font-size: 0.7rem; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); background: rgba(255, 255, 255, 0.92); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-logo { height: 40px; }
.brand-name { font-size: 1.15rem; letter-spacing: 0.04em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(111, 75, 255, 0.10); border: 1px solid rgba(111, 75, 255, 0.22); }
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; position: relative; padding: 4px 0; transition: color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--grad); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { padding: 76px 0 92px; position: relative; overflow: hidden;
  background:
    radial-gradient(800px 420px at 78% 0%, rgba(124, 92, 255, 0.16), transparent 60%),
    radial-gradient(680px 460px at 6% 4%, rgba(192, 75, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
.hero::before { width: 320px; height: 320px; background: rgba(124, 92, 255, 0.22); top: -80px; right: 8%; }
.hero::after { width: 260px; height: 260px; background: rgba(192, 75, 255, 0.16); bottom: -60px; left: 4%; animation-delay: 2s; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; position: relative; z-index: 1; }
.hero-copy { text-align: left; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); margin-bottom: 22px; }
.hero .grad { background-size: 200% auto; }
.hero .lead { margin: 0 0 30px; }
.hero-cta { justify-content: flex-start; }
.hero-media { display: grid; place-items: center; }
.hero-media img { width: 100%; max-width: 580px; filter: drop-shadow(0 30px 55px rgba(76, 50, 160, 0.28)); animation: floatY 6s ease-in-out infinite; }
.hero-badges { list-style: none; display: flex; gap: 16px; padding: 0; margin: 0 0 34px; flex-wrap: wrap; justify-content: center; }
.hero-badges li {
  display: flex; gap: 12px; align-items: center; font-size: 0.82rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.hero-badges li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hero-badges strong { color: var(--text); font-size: 0.9rem; }
.hero-badges em { color: var(--violet); font-style: normal; font-size: 0.76rem; }
.bicon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--panel-2); color: var(--violet); flex: none; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ===================== BENEFICIOS ===================== */
.beneficios { background: var(--bg); }
.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cards-grid.three { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; max-width: 1000px; margin-inline: auto; }
.feature-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(111, 75, 255, 0.35); box-shadow: var(--shadow-lg); }
.fc-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--panel-2); color: var(--violet); margin-bottom: 18px; transition: transform .22s; }
.fc-icon.round { width: 78px; height: 78px; border-radius: 50%; margin-bottom: 22px; }
.fc-icon.round svg { width: 30px; height: 30px; }
.feature-card:hover .fc-icon { transform: scale(1.06); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 20px; }
.fc-line { display: block; width: 38px; height: 4px; border-radius: 4px; background: var(--grad-btn); margin-top: auto; }
.link-more { color: var(--violet); font-weight: 700; font-size: 0.85rem; }
.link-more:hover { color: var(--magenta); }

/* Franja de confianza */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; margin: 24px auto 0; max-width: 1000px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 8px 18px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--violet); flex: none; }
.trust-ico svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 0.95rem; color: var(--text); }
.trust-item span { font-size: 0.82rem; color: var(--muted); }

/* Barra "Conecta donde estés" */
.connect-bar { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 26px; margin: 20px auto 0; max-width: 1000px; box-shadow: var(--shadow-sm); }
.connect-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--panel-2); color: var(--violet); flex: none; }
.connect-ico svg { width: 24px; height: 24px; }
.connect-bar p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.connect-bar strong { color: var(--text); }

/* ===================== CÓMO FUNCIONA ===================== */
.como-funciona { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.cf-grid { display: block; }
.cf-copy { text-align: center; max-width: 900px; margin-inline: auto; }
.cf-copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 44px; }
.steps { list-style: none; padding: 0; margin: 0 0 38px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.steps li { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.steps li:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num { flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-violet); }
.steps h3 { font-size: 1.1rem; margin-bottom: 4px; }
.steps p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ===================== COBERTURA ===================== */
.cobertura { background: var(--bg-2); }
.cov-grid { display: block; }
.cov-copy { max-width: 860px; margin-inline: auto; text-align: center; }
.cov-copy .lead { margin-inline: auto; }
.cov-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cobertura .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 34px auto 0; max-width: 860px; }
.cobertura .fineprint { max-width: 860px; margin-inline: auto; }
.stats div { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.stats div:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stats strong { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
.stats span { color: var(--muted); font-size: 0.82rem; margin-top: 4px; }

/* ===================== TESTIMONIOS ===================== */
.testimonios { background: var(--bg); }
.test-head { margin-bottom: 40px; text-align: center; }
.test-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; margin: 0; box-shadow: var(--shadow-sm); text-align: center; transition: transform .22s, box-shadow .22s; }
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: #f5b301; letter-spacing: 3px; margin-bottom: 14px; }
.test-card blockquote { margin: 0 0 20px; font-size: 0.98rem; color: var(--text-2); }
.test-card figcaption { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 0.85rem; }
.test-card figcaption strong { color: var(--text); }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; background: var(--grad-btn); color: #fff; flex: none; }

/* ===================== CTA FINAL ===================== */
.cta-final { background: var(--bg); }
.cta-banner {
  position: relative; overflow: hidden;
  border-radius: 26px; min-height: 360px;
  background:
    linear-gradient(100deg, #2c1474 0%, rgba(60, 30, 150, 0.78) 42%, rgba(70, 35, 170, 0.32) 64%, rgba(70, 35, 170, 0.05) 80%),
    #2c1474 url("imagenes/mujer_celular.webp") right center / cover no-repeat;
  display: flex; align-items: center;
  box-shadow: var(--shadow-lg); color: #fff;
}
.cta-inner { position: relative; z-index: 2; padding: 52px 48px; max-width: 600px; display: grid; gap: 28px; }
.cta-banner h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 26px; color: #fff; }
.cta-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.cta-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); flex: none; }
.check svg { width: 14px; height: 14px; }
.cta-copy h2 { margin-bottom: 0; }
.cta-copy .btn { margin-top: 26px; }

/* ===================== PREGUNTAS / CONTACTO ===================== */
.preguntas { background: var(--bg-2); }
.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-head { text-align: center; margin-bottom: 34px; }
.faq-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--violet); font-size: 1.3rem; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { color: var(--muted); margin: 12px 0 0; font-size: 0.92rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-card .muted { font-size: 0.88rem; margin-bottom: 20px; }
.lead-form { display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.lead-form input[type="text"], .lead-form input[type="email"], .lead-form input[type="tel"] {
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; color: var(--text); font: inherit; font-size: 0.92rem; transition: border-color .15s, box-shadow .15s;
}
.lead-form input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(111, 75, 255, 0.18); background: #fff; }
.consent { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px; font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.consent input { margin-top: 3px; accent-color: var(--violet); }
.consent a { color: var(--violet); }
.form-msg { font-size: 0.85rem; margin: 4px 0 0; }
.form-msg.ok { color: #1a9d5e; }
.form-msg.err { color: #d63864; }

/* ===================== FOOTER ===================== */
.site-footer { background: #0d0e1c; color: #c9cce6; border-top: 1px solid var(--line); padding: 56px 0 30px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-mark { background: rgba(124, 92, 255, 0.16); border-color: rgba(124, 92, 255, 0.3); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; text-align: left; }
.footer-brand p { color: #9396b8; font-size: 0.9rem; margin: 14px 0 0; max-width: 30ch; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; justify-content: flex-start; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); color: #c9cce6; transition: background .18s, transform .18s, color .18s; }
.footer-social a:hover { background: var(--grad-btn); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer-col a { display: block; color: #9396b8; font-size: 0.9rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { color: #9396b8; font-size: 0.82rem; margin: 0 0 8px; }
.footer-bottom .disclaimer { font-size: 0.74rem; opacity: 0.7; max-width: 90ch; }

/* ===================== LEGAL PAGES ===================== */
.legal { padding: 60px 0 80px; background: var(--bg); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--text-2); font-size: 0.96rem; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--violet); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--violet); font-weight: 700; margin-bottom: 30px; }

/* ===================== PLANES ===================== */
.eyebrow.center { text-align: center; }
.planes { background: var(--bg-2); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; max-width: 980px; margin-inline: auto; }
.plan-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--violet); box-shadow: 0 22px 48px rgba(111, 75, 255, 0.28); transform: scale(1.04); }
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-btn); color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-violet); white-space: nowrap;
}
.plan-card h3 { font-size: 1.3rem; margin: 8px 0; text-align: center; }
.plan-price { text-align: center; font-size: 2.9rem; font-weight: 800; color: var(--text); line-height: 1; }
.plan-price .currency { font-size: 1.4rem; vertical-align: super; color: var(--violet); margin-right: 2px; }
.plan-price .per { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-top: 10px; letter-spacing: 0.02em; }
.plan-features { list-style: none; padding: 24px 0; margin: 22px 0; display: grid; gap: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-2); font-weight: 500; }
.pcheck { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--panel-2); color: var(--violet); flex: none; }
.pcheck svg { width: 12px; height: 12px; }
.plan-card .btn { margin-top: auto; }
.plans-highlights { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 38px; }
.plans-highlights div { display: flex; align-items: center; gap: 10px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.plans-highlights svg { width: 18px; height: 18px; color: var(--violet); flex: none; }

/* ===================== BOTÓN FLOTANTE LLAMAR ===================== */
.call-fab {
  position: fixed; z-index: 60; right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-btn); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 24px; border-radius: 999px; box-shadow: 0 12px 30px rgba(111, 75, 255, 0.5);
  transition: transform .18s, box-shadow .18s; animation: callPulse 2.6s ease-in-out infinite;
}
.call-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(111, 75, 255, 0.62); }
.call-fab svg { width: 20px; height: 20px; }
@keyframes callPulse { 0%, 100% { box-shadow: 0 12px 30px rgba(111, 75, 255, 0.45); } 50% { box-shadow: 0 12px 40px rgba(111, 75, 255, 0.78); } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 8px 20px 18px;
    transform: translateY(-130%); transition: transform .28s ease; margin-left: 0;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-sm { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-media img { max-width: 300px; }
  .cobertura .stats { grid-template-columns: repeat(2, 1fr); }
  .cf-grid, .faq-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan-card.featured { transform: none; order: -1; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .cta-banner {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(34, 16, 92, 0.78) 0%, rgba(44, 20, 116, 0.88) 100%),
      #2c1474 url("imagenes/mujer_celular.webp") center top / cover no-repeat;
  }
  .cta-inner { padding: 40px 30px; max-width: 100%; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .container { width: min(100% - 32px, var(--maxw)); }

  .hero { padding: 28px 0 52px; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); margin-bottom: 16px; }
  .hero .lead { margin-bottom: 22px; }

  .hero-badges { flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .hero-badges li { width: 100%; }
  .hero-badges br { display: none; }
  .hero-badges li > span:last-child { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: baseline; }

  .hero-cta { width: 100%; gap: 12px; }
  .hero-cta .btn, .cf-copy .btn, .cta-copy .btn { width: 100%; justify-content: center; }
  .btn { padding: 15px 24px; }

  .section-title { margin-bottom: 34px; }
  .cobertura .stats { gap: 14px; }
  .cta-banner { border-radius: 20px; }
  .cta-inner { padding: 32px 22px; }
  .cta-list { grid-template-columns: 1fr; }
  .contact-card { padding: 24px 20px; }

  /* Franja de confianza y barra apiladas en móvil */
  .trust-strip { grid-template-columns: 1fr; gap: 4px; }
  .trust-item { justify-content: flex-start; padding: 14px 6px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .connect-bar { flex-direction: column; text-align: center; }

  /* Botón flotante centrado y ancho en móvil */
  .call-fab { left: 16px; right: 16px; bottom: 16px; justify-content: center; padding: 16px 24px; font-size: 1rem; }
  .site-footer { padding-bottom: 96px; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cf-media img, .hero::before, .hero::after, .call-fab { animation: none !important; }
  .btn:hover, .feature-card:hover, .test-card:hover, .stats div:hover { transform: none; }
}
