/* ── RESET GLOBAL ────────────────────────────────────────── */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q,
samp, small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; vertical-align: baseline;
  background: transparent;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--sp-fb);
  font-size: 16px; line-height: 1.65;
  color: #fff; background: var(--sp-bg1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --sp-bg0:      #090f1e;
  --sp-bg1:      #0d1526;
  --sp-bg2:      #111d33;
  --sp-bg3:      #162040;
  --sp-cyan:     #00c8ff;
  --sp-blue:     #0052d4;
  --sp-blue-dk:  #0038a8;
  --sp-grad:     linear-gradient(130deg, #00c8ff 0%, #0038a8 100%);
  --sp-grad-45:  linear-gradient(45deg,  #00c8ff 0%, #0038a8 100%);
  --sp-grad-txt: linear-gradient(120deg, #00c8ff 0%, #4fa8ff 100%);
  --sp-surf:     rgba(255,255,255,0.05);
  --sp-surf-hi:  rgba(255,255,255,0.08);
  --sp-border:   rgba(255,255,255,0.08);
  --sp-muted:    rgba(255,255,255,0.52);
  --sp-dim:      rgba(255,255,255,0.28);
  --sp-fh:       'Sora', sans-serif;
  --sp-fb:       'DM Sans', sans-serif;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.grad-text {
  background: var(--sp-grad-txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-block;
  font-family: var(--sp-fh);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sp-cyan);
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.sec-title {
  font-family: var(--sp-fh);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.07;
  color: #fff;
}
.sec-sub {
  font-size: 17px; color: var(--sp-muted);
  font-weight: 400; line-height: 1.65;
  max-width: 560px; margin-top: 14px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-grad {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sp-fh); font-size: 15px; font-weight: 700;
  color: #fff; -webkit-text-fill-color: #fff;
  background: var(--sp-grad);
  padding: 15px 32px; border-radius: 100px;
  box-shadow: 0 4px 28px rgba(0,56,168,0.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,56,168,0.6); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sp-fh); font-size: 15px; font-weight: 600;
  color: var(--sp-cyan);
  background: rgba(0,200,255,0.07);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 14px 28px; border-radius: 100px;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(0,200,255,0.13); border-color: rgba(0,200,255,0.38); }

/* ── SUBNAV ──────────────────────────────────────────────── */
#subnav {
  position: sticky; top: 0; z-index: 99999; height: 68px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(9,15,30,0.82);
  border-bottom: 1px solid var(--sp-border);
  transition: background .3s;
  float: none; display: flex; align-items: center;
}
.sn-in {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 68px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
/* logo imagen en lugar de texto */
.sn-logo { display: flex; align-items: center; flex-shrink: 0; }
.sn-logo img { height: 44px; width: auto; display: block; }
/* fallback texto si no carga la imagen */
.sn-brand {
  font-family: var(--sp-fh); font-size: 15px; font-weight: 800;
  background: var(--sp-grad-txt);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0;
}
.sn-nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
.sn-nav a {
  font-size: 13px; font-weight: 500; color: var(--sp-muted);
  padding: 6px 13px; border-radius: 20px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.sn-nav a:hover { color: #fff; background: var(--sp-surf-hi); }
/* acciones derecha */
.sn-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sn-ver {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 600;
  color: var(--sp-muted); padding: 7px 14px; border-radius: 20px;
  border: 1px solid var(--sp-border);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.sn-ver:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.sn-cta {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 700;
  color: #fff; -webkit-text-fill-color: #fff;
  background: var(--sp-grad);
  padding: 8px 20px; border-radius: 20px;
  box-shadow: 0 2px 14px rgba(0,56,168,0.4);
  transition: box-shadow .2s, transform .2s; white-space: nowrap;
}
.sn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 22px rgba(0,56,168,0.6); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative; background: var(--sp-bg0); overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 0 28px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.o1 {
  width: 650px; height: 500px; top: -100px; left: -160px; opacity: .38;
  background: radial-gradient(circle,rgba(0,200,255,.5),transparent 70%);
  animation: sp-oa 16s ease-in-out infinite alternate;
}
.o2 {
  width: 550px; height: 550px; bottom: -80px; right: 0; opacity: .32;
  background: radial-gradient(circle,rgba(0,56,168,.55),transparent 70%);
  animation: sp-ob 20s ease-in-out infinite alternate;
}
@keyframes sp-oa { to { transform: translate(40px,30px) scale(1.08); } }
@keyframes sp-ob { to { transform: translate(-40px,24px) scale(1.06); } }

#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px,transparent 1px);
  background-size: 38px 38px; pointer-events: none;
}

.hero-in {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 120px 0 100px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sp-fh); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sp-cyan);
  background: rgba(0,200,255,.1); border: 1px solid rgba(0,200,255,.22);
  padding: 7px 18px; border-radius: 20px; margin-bottom: 28px;
  animation: sp-up .7s ease both;
}
.live-dot {
  width: 6px; height: 6px; background: var(--sp-cyan);
  border-radius: 50%; animation: sp-pulse 2s infinite;
}

h1.hero-h {
  font-family: var(--sp-fh);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  color: #fff; margin-bottom: 22px;
  animation: sp-up .7s .1s ease both;
}
h1.hero-h span {
  background: var(--sp-grad-txt);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc {
  font-size: 18px; color: var(--sp-muted); max-width: 420px;
  margin-bottom: 40px; animation: sp-up .7s .18s ease both;
  font-family: var(--sp-fb);
}

.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--sp-border); border-radius: 16px;
  background: var(--sp-surf); backdrop-filter: blur(10px);
  overflow: hidden; margin-bottom: 40px;
  animation: sp-up .7s .26s ease both;
}
.h-stat {
  flex: 1; padding: 18px 10px; text-align: center;
  border-right: 1px solid var(--sp-border);
}
.h-stat:last-child { border-right: none; }
.h-num {
  display: block; font-family: var(--sp-fh); font-size: 26px; font-weight: 800;
  background: var(--sp-grad-txt);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 3px;
}
.h-label { font-size: 10px; font-weight: 500; color: var(--sp-dim); letter-spacing: .04em; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: sp-up .7s .34s ease both; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: sp-up .9s .2s ease both;
}
.tv-frame {
  width: 100%; max-width: 480px;
  background: var(--sp-bg2);
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.tv-screen {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(160deg,#081228 0%,#0a1a3a 100%);
  position: relative; overflow: hidden; padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.tv-screen::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle,rgba(0,200,255,.25),transparent 70%);
  top: -40px; right: -40px; filter: blur(40px);
}
.tv-screen::after {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle,rgba(0,56,168,.3),transparent 70%);
  bottom: -30px; left: 10px; filter: blur(50px);
}
.tv-header {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.tv-logo {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 800;
  background: var(--sp-grad-txt);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tv-time { font-size: 12px; color: var(--sp-dim); font-weight: 500; }

.tv-featured {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; flex: 1;
}
.tv-card { border-radius: 10px; overflow: hidden; position: relative; background: var(--sp-bg3); }
.tv-card-main {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%),
    url('/img/2026/estadio.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.tv-card-main::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(0,0,0,.7));
}
.tc-badge {
  position: relative; z-index: 1;
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sp-cyan); background: rgba(0,200,255,.15);
  padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 6px;
}
.tc-title {
  position: relative; z-index: 1;
  font-family: var(--sp-fh); font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2;
}
.tc-meta { position: relative; z-index: 1; font-size: 10px; color: var(--sp-muted); margin-top: 3px; }

.tv-card-sm { display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; }
.tv-card-sm:nth-child(2) {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.78) 100%),
    url('/img/2026/futbol.jpg') center/cover no-repeat;
}
.tv-card-sm:nth-child(3) {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.78) 100%),
    url('/img/2026/cine.jpg') center/cover no-repeat;
}
.tv-card-sm::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,.72));
}
.tc-sm-title {
  position: relative; z-index: 1;
  font-family: var(--sp-fh); font-size: 11px; font-weight: 700; color: #fff; line-height: 1.3;
}
.tc-sm-ch { position: relative; z-index: 1; font-size: 9px; color: var(--sp-muted); margin-top: 2px; }

.tv-strip {
  position: relative; z-index: 1; display: flex; gap: 8px; align-items: center;
}
.ts-label {
  font-size: 10px; font-weight: 600; color: var(--sp-dim);
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; margin-right: 4px;
}
.ts-chips { display: flex; gap: 6px; overflow: hidden; }
.ts-chip {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: var(--sp-muted);
  background: var(--sp-surf-hi); border: 1px solid var(--sp-border);
  padding: 4px 10px; border-radius: 8px; white-space: nowrap; flex-shrink: 0;
}
.tv-stand {
  height: 14px; background: var(--sp-bg3); border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
}
.ts-dot { width: 36px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.1); }

.phone-float {
  position: absolute; bottom: -20px; right: -30px; width: 90px;
  background: var(--sp-bg0); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 10px 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.ph-bar { width: 30px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.15); margin: 0 auto 8px; }
.ph-content { display: flex; flex-direction: column; gap: 6px; }
.ph-row { display: flex; gap: 5px; }
.ph-tile { flex: 1; aspect-ratio: 1; border-radius: 6px; background: var(--sp-bg3); }
.ph-tile:nth-child(1) { background: linear-gradient(135deg,#0d2860,#05153a); }
.ph-tile:nth-child(2) { background: linear-gradient(135deg,#002840,#001020); }
.ph-play {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 8px; font-weight: 700; color: var(--sp-cyan); font-family: var(--sp-fh);
  background: rgba(0,200,255,.1); border-radius: 6px; padding: 4px;
}

/* ── BRAND BAR ───────────────────────────────────────────── */
#brand-bar {
  background: var(--sp-bg2);
  border-top: 1px solid var(--sp-border); border-bottom: 1px solid var(--sp-border);
  padding: 18px 28px;
}
.bb-in {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.bb-label { font-size: 11px; font-weight: 600; color: var(--sp-dim); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.bb-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.bb-item {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 600; color: var(--sp-dim);
  display: flex; align-items: center; gap: 7px; transition: color .2s;
}
.bb-item:hover { color: var(--sp-muted); }
.bb-item svg { opacity: .5; }

/* ── FEATURES ────────────────────────────────────────────── */
#features { background: var(--sp-bg1); padding: 110px 28px; }
.feat-wrap { max-width: 1160px; margin: 0 auto; }
.feat-head { margin-bottom: 56px; }
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.f-card {
  background: var(--sp-bg2); border: 1px solid var(--sp-border);
  border-radius: 20px; padding: 28px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 18px;
}
.f-card:hover { border-color: rgba(0,200,255,.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.f-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sp-grad-45);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.f-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f-body h3 { font-family: var(--sp-fh); font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.f-body p { font-size: 14px; color: var(--sp-muted); line-height: 1.55; }

/* ── PLANES ──────────────────────────────────────────────── */
#planes { background: var(--sp-bg2); padding: 110px 28px; }
.pl-wrap { max-width: 1160px; margin: 0 auto; }
.pl-head { text-align: center; margin-bottom: 60px; }
.pl-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: end; }
.pl-card {
  background: var(--sp-bg3); border: 1px solid var(--sp-border);
  border-radius: 24px; padding: 32px 24px 28px; position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pl-card:hover { border-color: rgba(0,200,255,.22); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.pl-card.star {
  border-color: rgba(0,200,255,.32);
  background: linear-gradient(160deg,#0d1a38 0%,#0a1228 100%);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,56,168,.35);
}
.pl-card.star:hover { transform: translateY(-13px); }
.pl-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--sp-fh); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; -webkit-text-fill-color: #fff;
  background: var(--sp-grad); padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.pl-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,200,255,.1); border: 1px solid rgba(0,200,255,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.pl-icon-wrap svg { width: 20px; height: 20px; stroke: var(--sp-cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pl-card.star .pl-icon-wrap { background: rgba(0,200,255,.15); }
.pl-name { font-family: var(--sp-fh); font-size: 17px; font-weight: 800; margin-bottom: 5px; color: #fff; }
.pl-desc { font-size: 13px; color: var(--sp-muted); margin-bottom: 20px; line-height: 1.5; }
.pl-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); }
.pf-ck {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(0,200,255,.12);
  display: flex; align-items: center; justify-content: center;
}
.pf-ck svg { width: 9px; height: 9px; stroke: var(--sp-cyan); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pl-cta {
  display: block; text-align: center;
  font-family: var(--sp-fh); font-size: 14px; font-weight: 700;
  padding: 13px 18px; border-radius: 100px;
  background: var(--sp-surf-hi); color: var(--sp-muted); border: 1px solid var(--sp-border);
  transition: background .2s, color .2s, border-color .2s;
}
.pl-cta:hover { background: rgba(0,200,255,.1); color: var(--sp-cyan); border-color: rgba(0,200,255,.28); }
.pl-card.star .pl-cta { background: var(--sp-grad); color: #fff; -webkit-text-fill-color: #fff; border-color: transparent; box-shadow: 0 4px 18px rgba(0,56,168,.5); }
.pl-card.star .pl-cta:hover { box-shadow: 0 6px 28px rgba(0,56,168,.7); }

/* ── CANALES ─────────────────────────────────────────────── */
#canales { background: var(--sp-bg1); padding: 110px 28px; }
.ch-wrap { max-width: 1160px; margin: 0 auto; }
.ch-head { text-align: center; margin-bottom: 40px; }
.tog-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sp-fh); font-size: 14px; font-weight: 700;
  color: var(--sp-cyan); background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.18);
  padding: 13px 28px; border-radius: 100px; cursor: pointer;
  transition: background .2s, border-color .2s; margin-top: 24px;
}
.tog-btn:hover { background: rgba(0,200,255,.13); border-color: rgba(0,200,255,.32); }
.tog-arr { transition: transform .3s; display: inline-block; }
.tog-btn.open .tog-arr { transform: rotate(180deg); }
.pack-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.p-tab {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 20px; border: 1px solid var(--sp-border);
  color: var(--sp-muted); background: transparent; cursor: pointer; transition: all .2s;
}
.p-tab:hover { color: #fff; border-color: rgba(0,200,255,.25); background: rgba(0,200,255,.07); }
.p-tab.act { background: var(--sp-grad); color: #fff; -webkit-text-fill-color: #fff; border-color: transparent; box-shadow: 0 3px 14px rgba(0,56,168,.4); }
.collapse { max-height: 0; overflow: hidden; transition: max-height .8s cubic-bezier(.4,0,.2,1); }
.collapse.open { max-height: 5000px; }
.panel { display: none; }
.panel.act { display: block; }
.pack-label {
  font-family: var(--sp-fh); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sp-dim);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--sp-border);
}
.c-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(100px,1fr)); gap: 10px; }
.c-card {
  background: var(--sp-surf); border: 1px solid var(--sp-border);
  border-radius: 14px; padding: 14px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.c-card:hover { border-color: rgba(0,200,255,.3); transform: translateY(-2px); }
.c-logo {
  width: 56px; height: 56px; background: var(--sp-surf-hi);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.c-logo img { max-width: 50px; max-height: 50px; object-fit: contain; }
.c-name { font-size: 10px; font-weight: 600; color: var(--sp-muted); line-height: 1.3; }
.c-num { font-size: 9px; color: var(--sp-dim); }

/* ── DEVICES ─────────────────────────────────────────────── */
#devices { background: var(--sp-bg2); padding: 110px 28px; }
.dv-wrap { max-width: 1160px; margin: 0 auto; text-align: center; }
.dv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 56px; }
.dv-card {
  background: var(--sp-bg3); border: 1px solid var(--sp-border);
  border-radius: 22px; padding: 44px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  transition: border-color .25s, background .25s, transform .25s;
}
.dv-card:hover { border-color: rgba(0,200,255,.25); background: rgba(0,200,255,.04); transform: translateY(-4px); }
.dv-ico {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(0,200,255,.08); border: 1px solid rgba(0,200,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.dv-ico svg { width: 28px; height: 28px; stroke: var(--sp-cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dv-name { font-family: var(--sp-fh); font-size: 16px; font-weight: 700; color: #fff; }
.dv-desc { font-size: 13px; color: var(--sp-muted); line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--sp-bg1); padding: 110px 28px; }
.fq-wrap { max-width: 760px; margin: 0 auto; }
.fq-head { text-align: center; margin-bottom: 52px; }
.fq-item {
  background: var(--sp-bg3); border: 1px solid var(--sp-border);
  border-radius: 16px; margin-bottom: 9px; overflow: hidden; transition: border-color .2s;
}
.fq-item.open { border-color: rgba(0,200,255,.25); }
.fq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; font-family: var(--sp-fh); font-size: 16px; font-weight: 600;
  color: #fff; background: none; border: none; cursor: pointer; text-align: left; gap: 14px;
}
.fq-q:hover { color: var(--sp-cyan); }
.fq-ico {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--sp-surf-hi);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.fq-ico svg { width: 12px; height: 12px; stroke: var(--sp-cyan); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.fq-item.open .fq-ico { background: rgba(0,200,255,.14); }
.fq-item.open .fq-ico svg { transform: rotate(180deg); }
.fq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 15px; color: var(--sp-muted); line-height: 1.7; padding: 0 22px;
}
.fq-item.open .fq-a { max-height: 300px; padding: 0 22px 22px; }

.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 56px; }
.vid-box { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--sp-bg0); }
.vid-box iframe { width: 100%; height: 100%; border: none; }

/* ── CTA FINAL ───────────────────────────────────────────── */
#cta-fin {
  background: var(--sp-bg0); padding: 140px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.cf-in { position: relative; z-index: 1; }
.cf-in h2 {
  font-family: var(--sp-fh); font-size: clamp(34px,6vw,66px);
  font-weight: 800; letter-spacing: -.04em; color: #fff; margin-bottom: 16px;
}
.cf-in p { font-size: 18px; color: var(--sp-muted); margin-bottom: 44px; }
.cf-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── ANIMACIONES ─────────────────────────────────────────── */
@keyframes sp-up   { from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:translateY(0) } }
@keyframes sp-pulse { 0%,100%{ opacity:1; transform:scale(1) } 50%{ opacity:.4; transform:scale(1.55) } }

/* ── RESPONSIVE ──────────────────────────────────────────── */
/* ── FOOTER ──────────────────────────────────────────────── */
#sp-footer {
  background: var(--sp-bg2);
  border-top: 1px solid var(--sp-border);
  padding: 28px;
}
.spf-in {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.spf-in img { height: 28px; width: auto; opacity: .6; transition: opacity .2s; }
.spf-in img:hover { opacity: 1; }
.spf-in span { font-size: 13px; color: var(--sp-dim); }
.spf-link {
  font-family: var(--sp-fh); font-size: 13px; font-weight: 600;
  color: var(--sp-muted); transition: color .2s;
}
.spf-link:hover { color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-in     { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-visual { margin-top: 20px; }
  .phone-float { display: none; }
  .feat-grid   { grid-template-columns: 1fr 1fr; }
  .pl-grid     { grid-template-columns: 1fr 1fr; }
  .pl-card.star{ transform: none; }
  .dv-grid     { grid-template-columns: 1fr 1fr; }
  .vid-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .sn-nav  { display: none; }
  .sn-ver  { display: none; }
  .pl-grid { grid-template-columns: 1fr; }
  .pl-card.star { transform: none; box-shadow: 0 12px 40px rgba(0,0,0,.25); }
}
@media (max-width: 600px) {

  /* Evita overflow horizontal global */
  body  { overflow-x: hidden; }
  #hero { overflow: hidden; padding: 0 20px; }

  /* Hero layout */
  .hero-in {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 72px 0 36px;
    gap: 24px;
  }

  /* Centrar todo el texto */
  .hero-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Badge: texto más chico para que no se corte */
  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: .07em;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Título: más chico para que "se volvió internet." entre sin overflow */
  h1.hero-h {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    width: 100%;
    word-break: break-word;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  /* Stats: 3 en fila, todo visible */
  .hero-stats { flex-wrap: nowrap; width: 100%; }
  .h-stat     { flex: 1; min-width: 0; padding: 12px 4px; }
  .h-num      { font-size: 17px; margin-bottom:0 !important; line-height: 17px;}
  .h-label    { font-size: 8px; letter-spacing: 0; }

  /* Botones */
  .hero-btns               { justify-content: center; gap: 10px; width: 100%; }
  .btn-grad, .btn-ghost    { font-size: 14px; padding: 12px 18px; justify-content: center; }

  /* TV mock: ancho completo, sin overflow */
  .hero-visual { width: 100%; padding: 0; }
  .tv-frame    { width: 100%; max-width: 100%; border-radius: 12px; }
  .tv-screen   { padding: 12px; gap: 8px; }
  .tv-featured { grid-template-columns: 1fr 1fr; }
  .tv-card:last-child { display: none; }
  .tv-card-main { min-height: 80px; }
  .tc-title    { font-size: 10px; }
  .ts-label    { display: none; }
  .ts-chips    { gap: 4px; }
  .ts-chip     { font-size: 8px; padding: 3px 6px; }

  /* Resto */
  .feat-grid { grid-template-columns: 1fr; }
  .pl-grid   { grid-template-columns: 1fr; }
  .dv-grid   { grid-template-columns: 1fr 1fr; }
  .vid-grid  { grid-template-columns: 1fr; }
  .spf-in    { flex-direction: column; text-align: center; align-items: center; gap: 10px; }

  #hero {
  min-height: auto;
  align-items: flex-start;
  padding: 0 20px 28px;
}

.hero-in {
  padding: 28px 0 24px;
  gap: 20px;
}

}