/* ============================================================
   styles.css — Slam TV
   Versión corregida con layout del hero forzado
   ============================================================ */

/* --- VARIABLES GLOBALES --- */
:root {
  --bg: #070912;
  --bg-alt: #0c1023;
  --surface: #121732;
  --surface-2: #181f42;
  --line: rgba(148, 163, 196, .14);
  --cyan: #2ddcff;
  --magenta: #ef4bff;
  --gold: #ffcf4d;
  --text: #f2f5ff;
  --text-dim: #95a0c7;
  --glow-cyan: rgba(45, 220, 255, .35);
  --glow-magenta: rgba(239, 75, 255, .3);
}

/* --- RESET Y BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 900px 500px at 15% -5%, rgba(239, 75, 255, .12), transparent 60%),
    radial-gradient(ellipse 900px 500px at 100% 10%, rgba(45, 220, 255, .12), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display { font-family: 'Chakra Petch', sans-serif; }
.mono { font-family: 'JetBrains Mono', monospace; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.grad-text {
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- HEADER --- */
header {
  background: rgba(7, 9, 18, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
}

.brand-logo-img {
  height: 84px;
  width: auto;
  display: block;
}

.nav-cta {
  font-size: 18px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  color: #050611;
  white-space: nowrap;
}

/* --- HERO (CORREGIDO) --- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  background: #000000;
  overflow: hidden;
  z-index: 2;
}

/* --- LAYOUT DEL HERO: DOS COLUMNAS (FORZADO) --- */
.hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 56px !important;
  align-items: center !important;
}

/* Asegurar que la TV no se desplace */
.tv-wrap {
  order: 0 !important;
  margin-bottom: 0 !important;
}

/* --- TEXTO DEL HERO --- */
.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p.sub {
  font-size: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
  max-width: 480px;
  margin-bottom: 30px;
  line-height: 1.55;
  opacity: 1 !important;
}

/* --- BADGES DEL HERO --- */
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c8cedb;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.badge .badge-icon {
  font-size: 1rem;
  line-height: 1;
}

.badge:hover {
  border-color: var(--cyan, #2ddcff);
  color: #ffffff;
  background: rgba(45, 220, 255, 0.06);
  transform: translateY(-2px);
}

/* --- ANIMACIONES DEL HERO (burbujas neón) --- */
.hero-anim-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-anim-bg::before,
.hero-anim-bg::after {
  content: '';
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 640px;
  max-height: 640px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .32;
}
.hero-anim-bg::before {
  background: var(--cyan);
  top: -18%;
  left: -10%;
  animation: driftA 16s ease-in-out infinite;
}
.hero-anim-bg::after {
  background: var(--magenta);
  bottom: -12%;
  right: -8%;
  animation: driftB 18s ease-in-out infinite;
}
@keyframes driftA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6%, 8%); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6%, -8%); }
}

/* --- EYEBROW Y BOTONES DEL HERO --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cyan);
  border: 1px solid var(--glow-cyan);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  color: #050611;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08) inset, 0 10px 30px -8px var(--glow-magenta);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset, 0 16px 34px -8px var(--glow-magenta);
}
.cta-note {
  font-size: 13px;
  color: var(--text-dim);
}
.cta-note b { color: var(--text); }

/* --- TICKER --- */
.ticker-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  margin-top: 40px;
  background: rgba(7, 9, 18, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#ticker .chip {
  background: rgba(18, 23, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #a0a5c0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s ease;
}

#ticker .chip:hover {
  border-color: #2ddcff;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(45, 220, 255, 0.3);
  transform: translateY(-1px);
}

.ticker {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll 22s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- SMART TV --- */
.tv-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.tv-glow {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 92%;
  height: 78%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 30% 35%, rgba(45, 220, 255, .4), transparent 60%),
    radial-gradient(ellipse at 72% 62%, rgba(239, 75, 255, .35), transparent 60%);
  filter: blur(46px);
  z-index: 0;
  opacity: .85;
}

.tv-set {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
}

.tv-bezel {
  background: linear-gradient(155deg, #26282f, #131418 55%, #0b0c0f);
  border-radius: 14px;
  padding: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    inset 0 0 0 1px rgba(0, 0, 0, .6),
    0 30px 60px -18px rgba(0, 0, 0, .75);
}

.tv-screen {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 0 30px rgba(0, 0, 0, 0.7);
}

.tv-screen video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #000;
}

/* Capa de brillo superior (sheen) */
.screen-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: 5px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 30%,
      transparent 70%,
      rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    inset 0 0 50px rgba(255, 255, 255, 0.03),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.screen-sheen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  border-radius: 5px 5px 0 0;
}

/* Reflejo tipo ventana (sobre la pantalla) */
.tv-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 25%,
    transparent 45%,
    transparent 65%,
    rgba(0, 0, 0, 0.04) 85%,
    rgba(0, 0, 0, 0.12) 100%
  );
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
}

.tv-cam {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3a3d46;
  z-index: 4;
}

.tv-brand-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .3em;
  color: #565b6b;
  margin-top: 9px;
}

.tv-neck {
  width: 16px;
  height: 22px;
  margin: 0 auto;
  background: linear-gradient(180deg, #22242b, #0d0e11);
}

.tv-base {
  width: 150px;
  height: 9px;
  margin: 0 auto;
  border-radius: 5px;
  background: linear-gradient(180deg, #2a2c33, #0d0e11);
  box-shadow: 0 12px 22px -8px rgba(0, 0, 0, .65);
}

.tv-shadow {
  width: 220px;
  height: 22px;
  margin: 16px auto 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 72%);
  filter: blur(2px);
}

/* --- STATS BAR --- */
.stats-bar {
  margin-top: 70px;
  padding: 28px 0;
  background: rgba(13, 17, 38, 0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(45, 220, 255, 0.2);
  border-bottom: 1px solid rgba(239, 75, 255, 0.2);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.stats-bar-grid {
  max-width: 100%;
  padding: 0 24px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-block {
  padding: 16px 20px;
  text-align: center;
  position: relative;
  cursor: default;
  transition: background 0.4s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-block:last-child { border-right: none; }

.stat-block b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.2 !important;
  margin-bottom: 4px !important;
  white-space: nowrap;
  background: linear-gradient(135deg, #2ddcff 0%, #ef4bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.stat-block:hover b {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  transform: translateY(-2px);
}

.stat-block span {
  font-size: 13px;
  font-weight: 700;
  color: #a0a5c0;
  text-transform: uppercase;
  letter-spacing: .15em;
  display: block;
  line-height: 1 !important;
  transition: color 0.4s ease;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2ddcff, #ef4bff);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.stat-block:hover::after { width: 80%; }
.stat-block:hover {
  background: rgba(45, 220, 255, 0.06);
}
.stat-block:hover b {
  -webkit-text-fill-color: #ffffff;
  background: none;
  color: #ffffff;
  transform: translateY(-2px);
}
.stat-block:hover span { color: #ffffff; }

/* --- SECCIONES GENÉRICAS --- */
section { padding: 88px 0; }
.section-head { max-width: 600px; margin-bottom: 48px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--magenta);
  letter-spacing: .12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}
.section-head p {
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
}

/* --- BENEFICIOS --- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(45, 220, 255, 0.25);
}
.benefit-card .material-symbols-outlined {
  font-size: 38px !important;
  color: var(--cyan);
  margin-bottom: 16px;
  display: inline-block;
  animation: neonPulse 2.5s infinite alternate ease-in-out;
}
.benefit-card:nth-child(2) .material-symbols-outlined {
  color: var(--magenta);
  animation-delay: 0.5s;
}
.benefit-card:nth-child(3) .material-symbols-outlined {
  color: var(--gold);
  animation-delay: 1s;
}
.benefit-card:nth-child(4) .material-symbols-outlined {
  color: var(--cyan);
  animation-delay: 1.5s;
}
@keyframes neonPulse {
  0% { text-shadow: 0 0 4px currentColor; transform: scale(1); }
  50% { text-shadow: 0 0 12px currentColor, 0 0 22px currentColor; transform: scale(1.08); }
  100% { text-shadow: 0 0 4px currentColor; transform: scale(1); }
}
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* --- PLANES --- */
.toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 34px;
}
.toggle label { position: relative; }
.toggle input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.toggle span {
  display: block;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.toggle input:checked + span {
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  color: #050611;
}
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.hi {
  border-color: transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              linear-gradient(135deg, var(--cyan), var(--magenta)) border-box;
  border-width: 1.5px;
}
.badge-best {
  position: absolute;
  top: -13px;
  right: 20px;
  background: linear-gradient(100deg, var(--gold), #ff9d4d);
  color: #241300;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.plan-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.plan-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 2px;
}
.plan-price span {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}
.plan-equiv {
  font-size: 12.5px;
  color: var(--cyan);
  margin-bottom: 18px;
}
.plan-feat {
  list-style: none;
  font-size: 13.5px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.plan-feat li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plan-feat li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
}
.plan-btn {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid var(--line);
  color: var(--text);
  display: block;
}
.plan-card.hi .plan-btn {
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  color: #050611;
  border: none;
}

/* --- LOGO GRID --- */
.logo-grid { display: grid; gap: 16px; }
.logo-card {
  background: linear-gradient(180deg, #f7f9ff, #e9edfb);
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02) inset, 0 18px 30px -18px rgba(0, 0, 0, .6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--glow-cyan) inset, 0 20px 36px -16px var(--glow-cyan);
}
.logo-card img { height: 30px; width: auto; max-width: 78%; object-fit: contain; }
.logo-card span { font-size: 11.5px; font-weight: 600; color: #3a4159; letter-spacing: .02em; }

/* --- CTA FINAL --- */
#cta-final {
  padding: 60px 0;
  text-align: center;
}
.cta-banner {
  background: rgba(18, 23, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(7, 9, 19, 0.8);
}
.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.highlight-slam {
  background: linear-gradient(90deg, #2ddcff 0%, #ef4bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-subtitle {
  color: #a0a5c0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.5;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #2ddcff 0%, #ef4bff 100%);
  color: #070913;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(45, 220, 255, 0.35);
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(239, 75, 255, 0.5);
}

/* --- FAQ --- */
#faq {
  padding: 80px 0;
  text-align: left;
}
.section-head-faq { margin-bottom: 40px; }
.section-eyebrow-faq {
  color: var(--magenta, #ef4bff);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title-faq {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.faq-container {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: rgba(18, 23, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(45, 220, 255, 0.3);
  background: rgba(22, 28, 58, 0.8);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon::before {
  content: '+';
  color: var(--cyan, #2ddcff);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon::before {
  content: '✕';
  color: var(--cyan, #2ddcff);
}
.faq-item[open] {
  border-color: rgba(45, 220, 255, 0.25);
  box-shadow: 0 0 20px rgba(7, 9, 19, 0.5);
}
.faq-answer {
  margin-top: 16px;
  padding-top: 12px;
}
.faq-answer p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- FLOATING WHATSAPP --- */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  color: #050611;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px -8px var(--glow-magenta);
  animation: pulse-float 2.5s ease-in-out infinite;
  transform-origin: center;
  transition: transform 0.2s ease;
}
.float-wa:hover {
  animation-play-state: paused;
  transform: scale(1.06);
}
@keyframes pulse-float {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 28px -8px var(--glow-magenta);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 40px -4px var(--glow-magenta), 0 0 30px rgba(45, 220, 255, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 28px -8px var(--glow-magenta);
  }
}

/* --- FOOTER --- */
footer {
  padding: 34px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 12.5px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .tv-wrap {
    order: -1 !important;
    margin-bottom: 0 !important;
  }
  .logo-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat-block:last-child { border-bottom: none; }
  .hero { padding: 40px 0 20px; }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .hero p.sub { font-size: 18px; }
  .brand-logo-img { height: 35px; }
  .nav-cta { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 520px) {
  .benefits { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker, .eyebrow .dot { animation: none; }
}

/* --- Grupo CTA: botón + badges alineados a la izquierda --- */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.cta-row {
  width: 100%;
}

.cta-group .btn-primary {
  width: auto;         /* ← opcional: quita si quieres que ocupe todo el ancho */
  justify-content: left;
  box-sizing: border-box;
}

.cta-badges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c8cedb;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.badge .badge-icon {
  font-size: 1rem;
  line-height: 1;
}

.badge:hover {
  border-color: var(--cyan, #2ddcff);
  color: #ffffff;
  background: rgba(45, 220, 255, 0.06);
  transform: translateY(-2px);
}

/* --- Animación de entrada para tarjetas de "Cómo funciona" --- */
.step-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

.step-card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Retrasos escalonados para cada tarjeta */
.step-card:nth-child(1) {
  transition-delay: 0.1s;
}
.step-card:nth-child(2) {
  transition-delay: 0.3s;
}
.step-card:nth-child(3) {
  transition-delay: 0.5s;
}

/* Efecto Hover: elevación y borde neón */
.step-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 0 30px rgba(45, 220, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.hero h1 .grad-text {
  text-shadow: 0 0 35px rgba(45, 220, 255, 0.4), 0 0 60px rgba(239, 75, 255, 0.2);
}

.btn-primary {
    display: inline-block;
    margin-left: 4px;
    }

 /* --- Tooltip para iconos de dispositivos --- */
.device-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: default;
}

.device-icon .tooltip {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a0a5c0;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
}

.device-icon:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

.device-icon:hover div {
  transform: scale(1.08);
  border-color: var(--cyan) !important;
  box-shadow: 0 0 20px rgba(45, 220, 255, 0.2);
}