/* ============================================================
   TOMAYA Energía — Landing
   Estilo: Vibrant & Block-based · navy + amarillo eléctrico + azul
   Fuentes: Fredoka (display) + Poppins (texto)
   ============================================================ */

:root {
  --navy: #0A1128;
  --navy-2: #0d1836;
  --surface: #172A4F;
  --surface-2: #1d3563;
  --yellow: #FFD700;
  --yellow-soft: #FFE55C;
  --blue: #4A7BD5;
  --blue-bright: #5B9BFF;
  --green: #29d17e;
  --green-deep: #12401f;
  --red-deep: #4A1A22;
  --red: #ff7a7a;
  --text: #EEF2FB;
  --text-dim: #AFBCD9;
  --line: rgba(255, 255, 255, 0.10);
  --line-yellow: rgba(255, 215, 0, 0.30);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --maxw: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .display { font-family: 'Fredoka', 'Poppins', sans-serif; font-weight: 600; line-height: 1.06; }
.gold { color: var(--yellow); }
.blue { color: var(--blue-bright); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Fondo con formas / glow ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-fx .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.bg-fx .b1 { width: 620px; height: 620px; background: rgba(74, 123, 213, .35); top: -180px; right: -160px; }
.bg-fx .b2 { width: 520px; height: 520px; background: rgba(255, 215, 0, .16); top: 40%; left: -220px; }
.bg-fx .b3 { width: 480px; height: 480px; background: rgba(74, 123, 213, .22); bottom: -220px; right: 10%; }

/* ---------- Botones ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; cursor: pointer;
  padding: 17px 34px; border-radius: 999px; border: 0; transition: transform .18s var(--ease), box-shadow .2s var(--ease), filter .2s; white-space: nowrap; }
.btn:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; }
.btn-primary { background: linear-gradient(180deg, var(--yellow-soft), var(--yellow)); color: #21160a;
  box-shadow: 0 16px 34px rgba(255, 215, 0, .30), inset 0 0 0 1px rgba(255, 255, 255, .3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(255, 215, 0, .42); }
.btn-primary:active { transform: translateY(-1px) scale(.99); }
.btn-ghost { background: rgba(255, 255, 255, .06); color: var(--text); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--line-yellow); background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn-wa { background: linear-gradient(180deg, #2bd06e, #1fb457); color: #fff; box-shadow: 0 14px 30px rgba(37, 211, 102, .34); }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn svg { width: 22px; height: 22px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.header.scrolled { background: rgba(10, 17, 40, .82); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0, 0, 0, .35); border-bottom: 1px solid var(--line); }
.header .inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.header .logo { height: 38px; width: auto; }
.header .nav-cta { display: flex; align-items: center; gap: 12px; }
.header .btn { font-size: 16px; padding: 12px 24px; }

/* ---------- Eyebrow / secciones ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--yellow);
  background: rgba(255, 215, 0, .08); border: 1.5px solid var(--line-yellow); border-radius: 999px; padding: 9px 18px; }
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.sec { padding: 72px 0; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 44px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sec-head h2 { font-size: clamp(32px, 5vw, 52px); }
.sec-head p { color: var(--text-dim); font-size: 20px; }

/* ---------- Hero ---------- */
.hero { padding: 40px 0 80px; }
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -.01em; }
.hero .lead { color: var(--text-dim); font-size: clamp(18px, 2.2vw, 22px); margin: 22px 0 14px; max-width: 30ch; }
.hero .trust-mini { display: flex; gap: 22px; flex-wrap: wrap; margin: 26px 0 30px; }
.hero .trust-mini span { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-dim); }
.hero .trust-mini svg { width: 20px; height: 20px; color: var(--green); }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Vídeo (placeholder poster + play) */
.video-card { position: relative; border-radius: 26px; overflow: hidden; border: 1.5px solid var(--line-yellow);
  box-shadow: var(--shadow); aspect-ratio: 16 / 10; background: linear-gradient(160deg, var(--surface), var(--navy)); }
.video-card .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .96; }
.video-card .vscrim { position: absolute; inset: 0; background: radial-gradient(80% 70% at 50% 45%, transparent, rgba(6,12,28,.45)); }
.video-card .play { position: absolute; inset: 0; margin: auto; width: 96px; height: 96px; border-radius: 50%; border: 0;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow)); color: #21160a; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 34px rgba(255, 215, 0, .5); transition: transform .18s var(--ease); }
.video-card .play:hover { transform: scale(1.08); }
.video-card .play svg { width: 40px; height: 40px; margin-left: 5px; }
.video-card .play::after { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 2px solid rgba(255,215,0,.4); animation: pulse 2.4s var(--ease) infinite; }
.play-hint { position: absolute; top: 112px; right: 69px; left: auto; transform: translateX(50%); z-index: 5;
  white-space: nowrap; pointer-events: none; color: #fff; font-weight: 700; font-size: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,.75); animation: hintbob 1.8s ease-in-out infinite; }
@keyframes hintbob { 0%, 100% { transform: translateX(50%) translateY(0); } 50% { transform: translateX(50%) translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .play-hint { animation: none; } }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }
/* ---------- Tarjetas (bloques) ---------- */
.block { background: linear-gradient(170deg, var(--surface), var(--navy-2) 70%); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.block:hover { transform: translateY(-6px); border-color: var(--line-yellow); box-shadow: var(--shadow); }
.block .ic { width: 66px; height: 66px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  background: radial-gradient(circle at 50% 35%, rgba(56,200,255,.3), rgba(56,200,255,.06)); border: 1.5px solid var(--blue);
  box-shadow: 0 0 26px rgba(56,200,255,.28); }
.block .ic svg { width: 34px; height: 34px; color: var(--blue-bright); }
.block h3 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.block p { color: var(--text-dim); font-size: 16.5px; }

/* Banda de stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat { position: relative; overflow: hidden; text-align: center; background: rgba(255,215,0,.06); border: 1.5px solid var(--line-yellow); border-radius: var(--radius); padding: 34px 20px; }
.stat .n { font-family: 'Fredoka', sans-serif; font-size: clamp(44px, 6vw, 68px); font-weight: 700; color: var(--yellow); line-height: 1; position: relative; z-index: 1; }
.stat .l { color: var(--text-dim); font-size: 17px; margin-top: 8px; position: relative; z-index: 1; }

/* --- Tarjetas Pixar divididas (imagen arriba / texto abajo) --- */
.stats-pixar .stat { overflow: hidden; padding: 0; background: rgba(255,215,0,.05); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.stat-media { width: 100%; aspect-ratio: 16 / 11; overflow: hidden; background: #0b1740; border-bottom: 1.5px solid var(--line-yellow); }
.stat-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; transition: transform .45s ease; }
.stats-pixar .stat:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,215,0,.25); }
.stats-pixar .stat:hover .stat-media img { transform: scale(1.06); }
.stat-body { padding: 14px 16px 18px; text-align: center; }
.stats-pixar .stat .n { font-size: clamp(38px, 4.6vw, 54px); }
.stats-pixar .stat .l { margin-top: 4px; }

/* ---------- Pasos (recorrido) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: linear-gradient(170deg, var(--surface), var(--navy-2)); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 40px 30px 32px; }
.step .num { position: absolute; top: -22px; left: 30px; width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow)); color: #21160a; font-family: 'Fredoka', sans-serif;
  font-weight: 700; font-size: 26px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(255,215,0,.4); }
.step h3 { font-size: 22px; margin: 14px 0 8px; color: #fff; }
.step p { color: var(--text-dim); font-size: 16px; }

/* --- Pasos con línea de progreso + iconos --- */
.steps-flow { position: relative; margin-top: 40px; }
.steps-flow .step { text-align: center; padding: 42px 24px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.steps-flow .step:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.steps-flow .step .num { left: 50%; transform: translateX(-50%); top: -22px; z-index: 2; transition: transform .25s ease; }
.steps-flow .step:hover .num { transform: translateX(-50%) scale(1.08); }
.step-ic { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin: 8px auto 4px;
  border-radius: 18px; background: rgba(56,200,255,.1); border: 1px solid rgba(56,200,255,.38); color: #38C8FF; }
.step-ic svg { width: 30px; height: 30px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: linear-gradient(170deg, var(--surface), var(--navy-2)); border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .chev { width: 26px; height: 26px; flex: 0 0 auto; transition: transform .3s var(--ease); color: var(--yellow); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 26px 24px; color: var(--text-dim); font-size: 17px; }

/* ---------- CTA final ---------- */
.final { text-align: center; }
.final h2 { font-size: clamp(30px, 5vw, 50px); }
.final p { color: var(--text-dim); font-size: 20px; margin: 16px 0 30px; }
.final .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .sign { margin-top: 26px; font-family: 'Fredoka', sans-serif; font-style: italic; color: var(--yellow-soft); font-size: 22px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer .inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .ftxt { color: var(--text-dim); font-size: 14px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-dim); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
@media (max-width: 640px) { .footer .inner { flex-direction: column; text-align: center; gap: 16px; } }

/* ---------- WhatsApp flotante ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(180deg, #2bd06e, #1fb457); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .5); transition: transform .18s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; color: #fff; }
.wa-float[hidden] { display: none; }

/* ---------- Reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .video-card .play::after { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .grid { grid-template-columns: 1fr; gap: 30px; }
  .hero .lead { max-width: none; }
  .cards-3, .steps, .stats { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .amigo { grid-template-columns: 1fr; padding: 40px 28px; }
  .sec { padding: 54px 0; }
  .header .logo { height: 32px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .btn { font-size: 16px; padding: 15px 26px; }
  .header .nav-cta [data-whatsapp] { display: none; }
}

/* Ocultar botones data-whatsapp cuando no hay número configurado */
.btn[hidden] { display: none !important; }

/* ---------- Póster del vídeo: fondo + Tommy compuesto ---------- */
.video-card .poster { z-index: 0; }
.video-card .vscrim { z-index: 1; }
.video-card .play { z-index: 4; }

/* ---------- Banda de tranquilidad (reassure) ---------- */
.reassure { position: relative; overflow: hidden; margin-top: 44px; display: flex; align-items: stretch; gap: 0; justify-content: flex-start;
  background: linear-gradient(120deg, rgba(255,215,0,.08), rgba(56,200,255,.08)); border: 1.5px solid var(--line-yellow); border-radius: 22px;
  padding: 0; max-width: none; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.reassure-media { flex: 0 0 auto; width: 300px; align-self: stretch; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 18%, #16295c, #0b1740 72%); border-right: 1.5px solid var(--line-yellow); }
.reassure-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; display: block; }
.reassure-body { flex: 1 1 auto; align-self: center; text-align: left; padding: 26px 44px; }
.reassure-body h4 { font-family: 'Fredoka', sans-serif; font-size: 26px; color: var(--yellow); margin-bottom: 6px; }
.reassure-body p { font-size: 18px; line-height: 1.55; color: var(--text); }
.reassure-body b { color: var(--yellow); }
@media (max-width: 640px) { .reassure { flex-direction: column; }
  .reassure-media { width: 100%; aspect-ratio: 16 / 10; border-right: none; border-bottom: 1.5px solid var(--line-yellow); }
  .reassure-body { text-align: center; padding: 22px 22px 26px; } }

/* Play: bajarlo para no tapar a Tommy */
.video-card .play { inset: auto auto 14% 50%; margin: 0 0 0 -48px; }

/* ============================================================
   Hero centrado — vídeo protagonista
   ============================================================ */
.hero-center { padding: 26px 0 64px; }
.hero-center .wrap { max-width: 1060px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.hero-center .eyebrow { margin: 0 auto; }
.hero-top { font-size: clamp(30px, 4.6vw, 56px); line-height: 1.05; }
.hero-center .hero-video { width: 100%; max-width: 960px; margin: 6px auto 0; }
.hero-center .video-card { aspect-ratio: 16 / 9; }
.hero-center .lead { text-align: center; max-width: 56ch; margin: 6px auto 0; color: var(--text-dim); font-size: clamp(18px, 2vw, 21px); }
.hero-center .trust-mini { justify-content: center; margin: 8px 0; }
.hero-center .cta-row { justify-content: center; }

/* ---------- Hero: titular completo arriba + checks grandes ---------- */
.hero-top { font-size: clamp(28px, 4.2vw, 50px); }
.hero-ya { display: inline-block; font-size: clamp(54px, 9.2vw, 108px); line-height: .95; margin-top: 6px; text-shadow: 0 8px 44px rgba(255,215,0,.28); }
.trust-mini.big { gap: 12px 14px; margin: 12px 0; }
.trust-mini.big span { font-size: 17.5px; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 18px; }
.trust-mini.big svg { width: 22px; height: 22px; color: var(--green); }
@media (max-width: 560px) { .trust-mini.big span { font-size: 15.5px; padding: 8px 14px; } }

/* ---------- Reproductor Wistia en la video-card ---------- */
#wistiaEmbed { z-index: 0; }
.video-card .poster { z-index: 2; }
.video-card .vscrim { z-index: 3; }
.video-card .play { z-index: 4; }
.video-card.playing .poster, .video-card.playing .vscrim, .video-card.playing .play, .video-card.playing .play-hint { display: none !important; }

/* Póster totalmente opaco (tapa la miniatura de Wistia) */
.video-card .poster { opacity: 1; }

/* ---------- Play sobre la calculadora + tarjeta clicable ---------- */
.video-card { cursor: pointer; }
.video-card.playing { cursor: default; }
.play-oncalc::after { inset: -9px !important; }

/* Play arriba a la derecha, más grande y visible */
.play-oncalc { top: 24px !important; right: 30px !important; left: auto !important; bottom: auto !important; margin: 0 !important; width: 78px !important; height: 78px !important; }
.play-oncalc svg { width: 32px !important; height: 32px !important; }

/* ============================================================
   Armonía con el vídeo — azul eléctrico #38C8FF + motion
   ============================================================ */
:root { --blue: #38c8ff; --blue-bright: #6fd4ff; --blue-deep: #1f6fd0; }

/* Blobs de fondo: más azul + deriva lenta */
.bg-fx .b1 { background: rgba(56,200,255,.30); animation: drift1 22s ease-in-out infinite alternate; }
.bg-fx .b2 { background: rgba(255,215,0,.14); animation: drift2 26s ease-in-out infinite alternate; }
.bg-fx .b3 { background: rgba(56,200,255,.22); animation: drift1 30s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(46px,-34px) scale(1.06); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-44px,32px) scale(1.05); } }

/* Botón fantasma / WhatsApp con acento azul */
.btn-ghost { border-color: rgba(56,200,255,.42); }
.btn-ghost:hover { border-color: var(--blue); background: rgba(56,200,255,.12); box-shadow: 0 0 26px rgba(56,200,255,.28); }

/* Glow azul: vídeo + tarjetas */
.video-card { box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 42px rgba(56,200,255,.15); }
.block:hover { box-shadow: var(--shadow), 0 0 34px rgba(56,200,255,.20); }
.block:hover .ic { box-shadow: 0 0 30px rgba(56,200,255,.36); }

/* Punto del eyebrow con latido */
.eyebrow .dot { animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 10px var(--yellow); } 50% { box-shadow: 0 0 18px var(--yellow), 0 0 28px rgba(255,215,0,.5); } }

/* CTA principal del hero con latido suave */
.hero-center .cta-row .btn-primary { animation: ctaGlow 3s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100% { box-shadow: 0 16px 34px rgba(255,215,0,.30), inset 0 0 0 1px rgba(255,255,255,.3); } 50% { box-shadow: 0 16px 42px rgba(255,215,0,.5), 0 0 30px rgba(255,215,0,.32), inset 0 0 0 1px rgba(255,255,255,.3); } }

/* WhatsApp flotante con latido azul-verde */
.wa-float { animation: waPulse 2.8s ease-in-out infinite; }
@keyframes waPulse { 0%,100% { box-shadow: 0 14px 34px rgba(37,211,102,.5); } 50% { box-shadow: 0 14px 40px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); } }

/* Flechas / pasos con acento azul */
.step .num { box-shadow: 0 10px 24px rgba(255,215,0,.4), 0 0 20px rgba(56,200,255,.25); }

@media (prefers-reduced-motion: reduce) {
  .bg-fx .blob, .eyebrow .dot, .hero-center .cta-row .btn-primary, .wa-float { animation: none !important; }
}

.sec-cta { text-align: center; margin-top: 36px; }
.sec-cta .btn { display: inline-flex; }

/* ============================================================
   Rompe-objeciones v2 — tarjetas claras
   ============================================================ */
.compare2 { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.cmp-col { border-radius: 24px; padding: 32px 30px; border: 1.5px solid var(--line); position: relative;
  background: linear-gradient(170deg, rgba(23,42,79,.5), var(--navy-2)); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.cmp-col:hover { transform: translateY(-5px); }
.cmp-col.no { border-color: rgba(255,122,122,.32); }
.cmp-col.no:hover { box-shadow: 0 18px 40px rgba(0,0,0,.4), 0 0 34px rgba(255,122,122,.18); }
.cmp-col.si { border-color: rgba(41,209,126,.36); background: linear-gradient(170deg, rgba(18,64,34,.5), var(--navy-2)); }
.cmp-col.si:hover { box-shadow: 0 18px 40px rgba(0,0,0,.4), 0 0 34px rgba(41,209,126,.2); }
.cmp-top { display: flex; align-items: center; gap: 16px; font-family: 'Fredoka', sans-serif; font-size: 27px; font-weight: 600; margin-bottom: 22px; }
.cmp-top b { font-weight: 700; }
.cmp-col.no .cmp-top { color: #ffb0b0; }
.cmp-col.si .cmp-top { color: #7ff0b6; }
.cmp-badge { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.cmp-badge svg { width: 30px; height: 30px; stroke-width: 3; }
.cmp-badge.no { background: rgba(255,122,122,.16); border: 1.5px solid rgba(255,122,122,.5); color: #ff8f8f; box-shadow: 0 0 22px rgba(255,122,122,.22); }
.cmp-badge.si { background: rgba(41,209,126,.16); border: 1.5px solid rgba(41,209,126,.5); color: #43d98a; box-shadow: 0 0 22px rgba(41,209,126,.22); }
.compare2 ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare2 li { display: flex; align-items: center; gap: 14px; font-size: 18px; color: var(--text);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; }
.cmp-ic { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.cmp-ic svg { width: 16px; height: 16px; stroke-width: 3.2; }
.cmp-ic.no { background: rgba(255,122,122,.18); color: #ff8f8f; }
.cmp-ic.si { background: rgba(41,209,126,.2); color: #43d98a; }
.cmp-vs { display: flex; align-items: center; justify-content: center; }
.cmp-vs span { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy);
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow)); box-shadow: 0 10px 26px rgba(255,215,0,.4);
  animation: vspulse 2.2s ease-in-out infinite; }

/* --- Mejoras "vida": SÍ ganadora + VS latido + filas escalonadas + NO apagado --- */
@keyframes vspulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 26px rgba(255,215,0,.4); }
  50% { transform: scale(1.09); box-shadow: 0 12px 32px rgba(255,215,0,.6), 0 0 0 7px rgba(255,215,0,.12); }
}
/* SÍ = la ganadora: elevada, borde y glow verde más marcados */
.cmp-col.si { margin-top: -10px; border-color: rgba(41,209,126,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,.32), 0 0 26px rgba(41,209,126,.16); }
.cmp-col.si:hover { box-shadow: 0 22px 46px rgba(0,0,0,.42), 0 0 40px rgba(41,209,126,.26); }
/* NO en tono apagado + tachado sutil */
.cmp-col.no li > span:last-child { color: var(--text-dim); }
/* Reveal escalonado de filas: la columna NO plantea, la SÍ responde después */
.compare2 li { opacity: 0; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.cmp-col.no li { transform: translateX(-16px); }
.cmp-col.si li { transform: translateX(16px); }
.cmp-col.is-in li { opacity: 1; transform: none; }
.cmp-col.no.is-in li:nth-child(1) { transition-delay: .10s; }
.cmp-col.no.is-in li:nth-child(2) { transition-delay: .20s; }
.cmp-col.no.is-in li:nth-child(3) { transition-delay: .30s; }
.cmp-col.no.is-in li:nth-child(4) { transition-delay: .40s; }
.cmp-col.si.is-in li:nth-child(1) { transition-delay: .48s; }
.cmp-col.si.is-in li:nth-child(2) { transition-delay: .58s; }
.cmp-col.si.is-in li:nth-child(3) { transition-delay: .68s; }
.cmp-col.si.is-in li:nth-child(4) { transition-delay: .78s; }
@media (prefers-reduced-motion: reduce) {
  .cmp-vs span { animation: none; }
  .compare2 li { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 900px) {
  .compare2 { grid-template-columns: 1fr; }
  .cmp-vs { margin: -6px 0; }
  .cmp-vs span { width: 48px; height: 48px; font-size: 17px; }
}

/* ============================================================
   Soporte v2 — personaje recortado + tarjetas nativas
   ============================================================ */
.support2 { display: grid; grid-template-columns: 380px 1fr; gap: 20px; align-items: center; }
.sup-char { align-self: center; display: flex; flex-direction: column; align-items: center; }
.sup-char img { width: 100%; height: auto; position: relative; z-index: 1; margin-bottom: -26px; filter: drop-shadow(0 20px 34px rgba(0,0,0,.55)); }
.sup-wa { position: relative; z-index: 2; width: 100%; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,.32); }
.sup-cards { display: flex; flex-direction: column; gap: 16px; }
.sup-card { display: flex; align-items: center; gap: 18px; background: linear-gradient(150deg, rgba(56,200,255,.08), rgba(13,24,54,.6));
  border: 1.5px solid rgba(56,200,255,.28); border-radius: 18px; padding: 20px 24px; transition: transform .22s var(--ease), box-shadow .22s, border-color .22s; }
.sup-card:hover { transform: translateX(6px); border-color: var(--blue); box-shadow: 0 0 30px rgba(56,200,255,.22); }
.sup-ic { width: 58px; height: 58px; flex: 0 0 auto; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(56,200,255,.3), rgba(56,200,255,.06)); border: 1.5px solid var(--blue); box-shadow: 0 0 24px rgba(56,200,255,.3); }
.sup-ic svg { width: 28px; height: 28px; color: var(--blue-bright); }
.sup-card h4 { font-family: 'Fredoka', sans-serif; font-size: 21px; color: #fff; margin-bottom: 3px; }
.sup-card p { font-size: 16px; color: var(--text-dim); }
.sup-note { display: flex; align-items: center; gap: 12px; font-size: 18px; color: var(--text); padding: 6px 4px; }
.sup-note svg { width: 26px; height: 26px; color: var(--blue-bright); }
.sup-note b { color: var(--blue-bright); }
@media (max-width: 900px) {
  .support2 { grid-template-columns: 1fr; }
  .sup-char { max-width: 300px; margin: 0 auto; }
}

/* ============================================================
   Secciones con personajes recortados (v2)
   ============================================================ */
/* Plan ahorro */
.ahorro2 { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; margin-bottom: 8px; }
.ahorro-tommy { align-self: end; }
.ahorro-tommy img { width: 100%; height: auto; filter: drop-shadow(0 22px 32px rgba(0,0,0,.5)); }
.ahorro-cards { display: flex; flex-direction: column; gap: 18px; }
.block.row { display: flex; align-items: flex-start; gap: 20px; }
.block.row .ic { margin-bottom: 0; flex: 0 0 auto; }
.block.row h3 { font-size: 22px; }
@media (max-width:900px){ .ahorro2 { grid-template-columns: 1fr; } .ahorro-tommy { max-width: 240px; margin: 0 auto; } }

/* Plan amigo */
.amigo2 { display: grid; grid-template-columns: 330px 1fr; gap: 4px; align-items: center; }
.amigo-woman { align-self: end; justify-self: end; }
.amigo-woman img { width: 100%; height: auto; position: relative; left: 26px; filter: drop-shadow(0 22px 34px rgba(0,0,0,.55)); }
.amigo-friends img { width: 100%; max-width: 430px; display: block; margin: 0 auto 0; filter: drop-shadow(0 14px 26px rgba(0,0,0,.5)); }
.amigo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.astep { background: linear-gradient(150deg, rgba(56,200,255,.07), rgba(13,24,54,.6)); border: 1.5px solid rgba(56,200,255,.24); border-radius: 18px; padding: 22px 20px; transition: transform .22s var(--ease), border-color .22s; }
.astep:hover { transform: translateY(-4px); border-color: var(--blue); }
.astep-ic { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items:center; justify-content:center; margin-bottom: 14px;
  background: radial-gradient(circle at 50% 35%, rgba(56,200,255,.3), rgba(56,200,255,.06)); border: 1.5px solid var(--blue); box-shadow: 0 0 24px rgba(56,200,255,.3); }
.astep-ic svg { width: 26px; height: 26px; color: var(--blue-bright); }
.astep h4 { font-family:'Fredoka',sans-serif; font-size: 21px; color:#fff; margin-bottom: 4px; }
.astep p { font-size: 15.5px; color: var(--text-dim); }
@media (max-width:900px){ .amigo2 { grid-template-columns: 1fr; } .amigo-woman { max-width: 240px; margin: 0 auto; } .amigo-woman img { left: 0; } .amigo-steps { grid-template-columns: 1fr; } }

/* CTA final */
.final-cta { position: relative; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; text-align: left; }
.final-body { text-align: left; }
.final-cta .eyebrow { margin-bottom: 16px; }
.final .final-body h2 { text-align: left; font-size: clamp(28px, 4vw, 48px); }
.final .final-body p { text-align: left; margin: 14px 0 26px; max-width: 520px; }
.final .final-body .cta-row { justify-content: flex-start; display: flex; gap: 14px; flex-wrap: wrap; }
.final .final-body .sign { text-align: left; margin-top: 24px; }
.final-fig-wrap { display: flex; align-items: center; justify-content: center; }
.final-fig { width: 100%; height: auto; margin: 0; filter: drop-shadow(0 18px 30px rgba(0,0,0,.5)); animation: floaty 6.2s ease-in-out infinite .2s; }
@media (max-width: 900px) {
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-body, .final .final-body h2, .final .final-body p, .final .final-body .sign { text-align: center; }
  .final .final-body p { margin-left: auto; margin-right: auto; }
  .final .final-body .cta-row, .final-cta .eyebrow { justify-content: center; }
  .final-fig-wrap { order: -1; }
  .final-fig { width: auto; height: 210px; }
  .final-cta::before { right: auto; left: 50%; top: 14%; transform: translateX(-50%); }
}

/* Flotado sutil de los personajes recortados (vida) */
.ahorro-tommy img { animation: floaty 6s ease-in-out infinite; }
.amigo-woman img { animation: floaty 6.6s ease-in-out infinite .3s; }
.sup-char img { animation: floaty 7s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .ahorro-tommy img,.amigo-woman img,.sup-char img,.final-fig { animation: none; } }

/* Logo del header + footer (igualados) */
.header .logo { height: 44px; width: auto; }
.footer .logo { height: 44px; width: auto; }
@media (max-width: 560px) { .header .logo { height: 34px; } .footer .logo { height: 34px; } }

/* Hero: sin eyebrow, más compacto arriba, ¡TOMA YA! un poco menor */
.hero-center { padding: 10px 0 58px; gap: 16px; }
.hero-top { margin-top: 4px; }
.hero-ya { font-size: clamp(44px, 7.4vw, 90px); }
.hero-center .lead { margin-top: 2px; }

/* ============================================================
   Hero above-the-fold: etiquetas en 1 línea + más compacto (desktop)
   ============================================================ */
@media (min-width: 900px) {
  .hero-center { padding: 6px 0 40px; gap: 12px; }
  .hero-top { font-size: clamp(26px, 3.4vw, 44px); margin-top: 2px; }
  .hero-ya { font-size: clamp(40px, 6vw, 78px); }
  .hero-center .hero-video { max-width: 860px; }
  .hero-center .lead { font-size: 18px; max-width: 64ch; margin-top: 0; }
  .hero-center .cta-row { margin-top: 2px; }
  .trust-mini.big { gap: 10px; margin: 6px 0; }
  .trust-mini.big span { font-size: 15px; padding: 9px 14px; }
  .trust-mini.big span svg { width: 19px; height: 19px; }
}
/* Etiquetas en una sola fila solo cuando hay ancho de sobra (evita overflow 900-1024px) */
@media (min-width: 1024px) {
  .trust-mini.big { flex-wrap: nowrap; }
  .trust-mini.big span { white-space: nowrap; }
}

/* ============================================================
   Modal de captación (formulario puente)
   ============================================================ */
.lead-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lead-overlay { position: absolute; inset: 0; background: rgba(4, 8, 22, .72); backdrop-filter: blur(4px); animation: leadfade .25s ease; }
.lead-card { position: relative; z-index: 1; width: 100%; max-width: 440px; background: linear-gradient(170deg, #12224e, #0b1533);
  border: 1.5px solid var(--line-yellow); border-radius: 22px; padding: 52px 30px 30px; box-shadow: 0 30px 70px rgba(0,0,0,.55);
  animation: leadpop .28s var(--ease); }
.lead-x { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.05); color: var(--text-dim); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.lead-x:hover { color: #fff; border-color: var(--line-yellow); }
.lead-x svg { width: 18px; height: 18px; }
.lead-card h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 27px; line-height: 1.1; text-align: center; margin-bottom: 6px; padding: 0 20px; }
.lead-sub { text-align: center; color: var(--text-dim); font-size: 15.5px; margin-bottom: 22px; }
#leadForm { display: flex; flex-direction: column; gap: 12px; }
#leadForm input[type=text], #leadForm input[type=tel], #leadForm input[type=email] {
  width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 15px 18px; color: #fff; font-family: 'Poppins', sans-serif; font-size: 16px; transition: border-color .2s, background .2s; }
#leadForm input::placeholder { color: #7f8fb0; }
#leadForm input:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,.08); }
.lead-check { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-dim); margin: 2px 2px 4px; cursor: pointer; }
.lead-check input { margin-top: 2px; accent-color: var(--yellow); flex: 0 0 auto; }
.lead-check a { color: var(--yellow); }
.lead-error { color: #ff9a9a; font-size: 14px; text-align: center; }
.lead-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: 17px; }
.lead-submit[disabled] { opacity: .7; cursor: default; }
@keyframes leadfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadpop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lead-overlay, .lead-card { animation: none; } }

/* ============================================================
   Refinamientos móvil (Codex review 2026-07-11)
   ============================================================ */
@media (max-width: 768px) {
  .header .nav-cta [data-whatsapp] { display: none; }         /* WhatsApp fuera en tablets estrechas */
  .reassure { flex-direction: column; }
  .reassure-media { width: 100%; aspect-ratio: 16 / 10; border-right: none; border-bottom: 1.5px solid var(--line-yellow); }
  .reassure-body { text-align: center; padding: 22px 22px 26px; }
  .footer .inner { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  .sec { padding: 52px 0; }
  .sec-head { margin-bottom: 34px; }
  .sec-cta .btn { width: 100%; white-space: normal; text-align: center; }  /* CTA a lo ancho, sin cortar texto */
  .cmp-col.si { margin-top: 0; }                             /* la columna SÍ no pega al VS */
  .sup-char img { margin-bottom: -14px; }                    /* menos solape con el botón base */
  .sup-wa { max-width: 300px; }
  .lead-card { max-height: calc(100dvh - 28px); overflow: auto; padding: 46px 22px 26px; }  /* modal siempre cabe */
}
@media (max-width: 430px) {
  .sec-head h2 { font-size: 30px; }
  .sec-head p { font-size: 17px; }
  .hero-center { gap: 12px; }
  .play-oncalc { width: 62px !important; height: 62px !important; top: 16px !important; right: 16px !important; }
  .play-oncalc svg { width: 26px !important; height: 26px !important; }
  .play-hint { top: 86px; right: 47px; font-size: 13px; }
  .lead-card h3 { padding: 0; font-size: 24px; }
  .cmp-col { padding: 24px 18px; }
  .compare2 li { font-size: 16px; padding: 12px 14px; }
}
