/* ════════════════════════════════════════════════
   LIVEMATCH TV — style.css
   Estructura:
   1. Variables y Reset
   2. Base / Body
   3. Navbar
   4. Mobile Menu
   5. Hero
   6. Hero Slider
   7. Sections base
   8. Anatomía del Anuncio
   9. Comparativa
   10. Métricas / Tech
   11. Targets (Negocios / Anunciantes)
   12. Precios
   13. CTA Banner
   14. Footer
   15. Utilidades (badges, reveal)
   16. Responsive
════════════════════════════════════════════════ */

/* ─── 1. VARIABLES Y RESET ─── */
:root {
  --bg-deepest:   #050b18;
  --bg-dark:      #0a1628;
  --bg-card:      #0f1e35;
  --bg-card2:     #111d30;
  --accent:       #00e5ff;
  --accent2:      #00ff88;
  --accent-glow:  rgba(0, 229, 255, 0.18);
  --accent2-glow: rgba(0, 255, 136, 0.15);
  --text-white:   #f0f6ff;
  --text-muted:   #8499b8;
  --text-dim:     #4e6080;
  --border:       rgba(0, 229, 255, 0.12);
  --border-soft:  rgba(255, 255, 255, 0.06);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
  --font-head:    'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ─── 2. BASE / BODY ─── */
body {
  font-family: var(--font-body);
  background: var(--bg-deepest);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── 3. NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 11, 24, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 16px var(--accent-glow);
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 110%; object-fit: cover; display: block; }

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text-white);
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #007aff);
  color: #050b18;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.45);
  filter: brightness(1.1);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: var(--transition);
}

/* ─── 4. MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(5, 11, 24, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.5rem 2rem; z-index: 999;
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a.btn-primary { border-bottom: none; justify-content: center; }

/* ─── 5. HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-dark) 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1.3fr;
  gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: -0.01em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent2); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-white); margin-bottom: 1.4rem;
}
.hero-title .accent  { color: var(--accent); }
.hero-title .accent2 { color: var(--accent2); }

.hero-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  font-weight: 400; line-height: 1.75;
  margin-bottom: 2.2rem; max-width: 540px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.btn-hero-main {
  background: linear-gradient(135deg, var(--accent), #0078ff);
  color: #050b18;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.6rem; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
  letter-spacing: 0.2px;
}
.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.45);
  filter: brightness(1.08);
}

.btn-hero-sec {
  background: rgba(0, 255, 136, 0.06);
  color: var(--accent2);
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 1.6rem; border-radius: 10px;
  border: 1.5px solid rgba(0, 255, 136, 0.3);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.btn-hero-sec:hover {
  background: rgba(0, 255, 136, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.2);
  border-color: var(--accent2);
}

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.3px;
}

/* ─── 6. HERO VISUAL — TV CON CARRUSEL ─── */
.hero-visual { display: flex; justify-content: center; align-items: flex-start; }

.tv-mockup-wrap {
  width: 100%; max-width: 620px;
  position: relative;
}

/* Cuerpo del TV */
.tv-body {
  background: #1a1d24;
  border-radius: 16px 16px 6px 6px;
  border: 6px solid #2a2d38;
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.08),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0,229,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

/* Barra superior del TV */
.tv-topbar {
  background: #0d0f17;
  padding: 7px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,229,255,0.08);
}
.tv-topbar-left {
  display: flex; align-items: center; gap: 7px;
}
.tv-brand-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent2); animation: pulse 2s infinite;
}
.tv-topbar-name {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.tv-topbar-right {
  display: flex; align-items: center; gap: 10px;
}
.tv-signal { font-size: 0.55rem; color: rgba(0,229,255,0.5); }
.tv-clock {
  font-size: 0.65rem; font-weight: 600;
  color: rgba(255,255,255,0.35); letter-spacing: 0.05em;
}

/* Área de pantalla con slider */
.tv-screen-area {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

/* Slider */
.tv-slider { width: 100%; height: 100%; position: relative; }
.tv-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  z-index: 1;
}
.tv-slide.active { opacity: 1; z-index: 2; }
.tv-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Fallback si no hay imagen */
.tv-slide-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a0e1a 0%, #111828 100%);
  display: flex; align-items: center; justify-content: center;
}
.tv-slide-placeholder i { font-size: 3rem; color: rgba(0,229,255,0.1); }

/* Pie del TV con dots */
.tv-footer {
  background: #0d0f17;
  padding: 8px 14px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.tv-slider-dots { display: flex; gap: 6px; }
.tv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer; border: none;
  transition: var(--transition);
}
.tv-dot.active {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Stand / Pie del TV */
.tv-stand {
  display: flex; flex-direction: column; align-items: center;
}
.tv-stand-neck {
  width: 18%; height: 22px;
  background: linear-gradient(180deg, #2a2d38, #1e2128);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.tv-stand-base {
  width: 38%; height: 8px;
  background: linear-gradient(180deg, #2a2d38, #1e2128);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Tags flotantes */
.tv-tag {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.7rem; display: flex; align-items: center; gap: 6px;
  color: var(--text-white); font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.tv-tag i { color: var(--accent); font-size: 0.6rem; }
.tv-tag-1 { bottom: 48px; left: -18px; }
.tv-tag-2 { top: -12px; right: -14px; }

/* ─── 7. SECTIONS BASE ─── */
section {
  position: relative;
  padding: 5rem 2rem;
  z-index: 1;
}

.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1rem; color: var(--text-white);
}
.section-title span   { color: var(--accent); }
.section-title span.g { color: var(--accent2); }

.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.75;
}

.how-bg {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 229, 255, 0.04), transparent 70%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deepest) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* ─── 8. INSIGHT / PROBLEMA ─── */
.insight-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.insight-quote {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15; color: var(--text-white);
  margin-bottom: 1rem;
}
.insight-quote em {
  font-style: normal; color: var(--accent);
}
.insight-quote-sub {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}

.insight-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.istat {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 1.4rem;
  transition: var(--transition);
}
.istat:hover { border-color: var(--border); transform: translateY(-2px); }
.istat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; line-height: 1; margin-bottom: 0.4rem;
}
.istat-num.blue   { color: var(--accent); }
.istat-num.green  { color: var(--accent2); }
.istat-num.cyan   { color: #00d4ff; }
.istat-num.orange { color: #ffd166; }
.istat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ─── 9. PASOS / HOW IT WORKS ─── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 3rem;
  background: var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden;
}
.step-item {
  background: var(--bg-card);
  padding: 2rem 1.6rem;
  transition: background 0.2s;
}
.step-item:hover { background: var(--bg-card2); }
.step-num {
  font-family: var(--font-head);
  font-size: 2rem; line-height: 1;
  color: rgba(0,229,255,0.08); margin-bottom: 1rem;
}
.step-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent);
  margin-bottom: 1rem;
}
.step-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ─── 10. WIDGETS ─── */
.widgets-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 3rem;
}
.widgets-list-preview {
  display: flex; flex-direction: column; gap: 10px;
}
.wl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}
.wl-item:hover { border-color: var(--border); transform: translateX(4px); }
.wl-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.wl-name { font-size: 0.88rem; font-weight: 600; flex: 1; color: var(--text-white); }
.wl-desc { font-size: 0.76rem; color: var(--text-muted); }

.widgets-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 1.6rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.widget-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
}
.widget-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }

.wc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.wc-title { font-size: 0.92rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.wc-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.wc-tag {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px; font-weight: 600;
}

/* widget accent variants */
.wc-menu     .wc-icon { background: rgba(0,255,136,0.1);   color: var(--accent2); }
.wc-menu::before      { background: var(--accent2); }
.wc-menu     .wc-tag  { background: rgba(0,255,136,0.08);  color: var(--accent2); }

.wc-social   .wc-icon { background: rgba(255,110,180,0.1); color: #ff6eb4; }
.wc-social::before    { background: #ff6eb4; }
.wc-social   .wc-tag  { background: rgba(255,110,180,0.08); color: #ff6eb4; }

.wc-encuesta .wc-icon { background: rgba(255,209,102,0.1); color: #ffd166; }
.wc-encuesta::before  { background: #ffd166; }
.wc-encuesta .wc-tag  { background: rgba(255,209,102,0.08); color: #ffd166; }

.wc-promo    .wc-icon { background: rgba(0,229,255,0.1);   color: var(--accent); }
.wc-promo::before     { background: var(--accent); }
.wc-promo    .wc-tag  { background: rgba(0,229,255,0.08);  color: var(--accent); }

.wc-trivia   .wc-icon { background: rgba(167,139,250,0.1); color: #a78bfa; }
.wc-trivia::before    { background: #a78bfa; }
.wc-trivia   .wc-tag  { background: rgba(167,139,250,0.08); color: #a78bfa; }

.wc-clima    .wc-icon { background: rgba(0,212,255,0.1);   color: #00d4ff; }
.wc-clima::before     { background: #00d4ff; }
.wc-clima    .wc-tag  { background: rgba(0,212,255,0.08);  color: #00d4ff; }

.wc-corp     .wc-icon { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.wc-corp::before      { background: rgba(255,255,255,0.15); }
.wc-corp     .wc-tag  { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.wc-corp.full { grid-column: span 3; }
.wc-corp.full .wc-inner { display: flex; gap: 1.2rem; align-items: flex-start; }
.wc-corp.full .wc-icon  { flex-shrink: 0; }

/* ─── 11. SECTORES ─── */
.sectors-title-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.sectors-title-row .section-sub { text-align: right; max-width: 340px; }

.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 1.8rem;
  transition: var(--transition); display: flex; flex-direction: column; gap: 0.8rem;
}
.sector-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.sector-emoji { font-size: 1.8rem; }
.sector-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem; letter-spacing: -0.01em; color: var(--text-white);
}
.sector-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.sector-widgets { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.sector-pill {
  font-size: 0.67rem; padding: 2px 9px; border-radius: 100px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.12);
  color: var(--accent);
}

/* ─── 12. WHITELABEL ─── */
.wl-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.wl-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; }
.wl-feature { display: flex; gap: 1rem; align-items: flex-start; }
.wl-feature-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem;
}
.wl-feature-text strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-white); margin-bottom: 3px; }
.wl-feature-text span   { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* brand preview */
.brand-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden;
}
.bp-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card2);
}
.bp-header-title { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; }
.bp-tabs {
  display: flex; gap: 2px;
  background: var(--bg-deepest); border-radius: 8px; padding: 3px;
}
.bp-tab {
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.7rem; color: var(--text-muted); cursor: pointer;
  transition: var(--transition);
}
.bp-tab.active {
  background: linear-gradient(135deg, var(--accent), #0078ff);
  color: #050b18; font-weight: 700;
}

.bp-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

.bp-color-row { display: flex; align-items: center; gap: 10px; }
.bp-color-label { font-size: 0.76rem; color: var(--text-muted); width: 90px; flex-shrink: 0; }
.bp-swatches { display: flex; gap: 7px; }
.bp-swatch {
  width: 26px; height: 26px; border-radius: 7px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.bp-swatch.active { border-color: var(--text-white); transform: scale(1.15); }

.bp-logo-area {
  background: var(--bg-deepest); border-radius: 10px; padding: 1rem;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border-soft);
}
.bp-logo-placeholder {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  color: #050b18; transition: background 0.4s; flex-shrink: 0;
}
.bp-logo-name { font-family: var(--font-head);
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; transition: color 0.4s; }
.bp-logo-sub  { font-size: 0.68rem; color: var(--text-dim); margin-top: 2px; }

.bp-preview-bar { height: 4px; border-radius: 2px; transition: background 0.4s; }

.bp-status-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bp-status-box { background: var(--bg-deepest); border-radius: 8px; padding: 10px; border: 1px solid var(--border-soft); }
.bp-status-label { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 4px; }
.bp-status-val   { font-size: 0.8rem; font-weight: 600; }

/* ─── 13. LIVE PLAYER ─── */
.live-frame-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(0,229,255,0.2);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.06),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(0,229,255,0.08);
}

.live-frame-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card2);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  gap: 1rem; flex-wrap: wrap;
}
.live-header-left  { display: flex; align-items: center; gap: 0.75rem; }
.live-header-right { display: flex; align-items: center; gap: 1.2rem; }
.live-header-right span { font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.35rem; }
.live-header-right span i { color: var(--accent); font-size: 0.65rem; }

.live-dot-pulse {
  width: 8px; height: 8px; background: #ff3b3b;
  border-radius: 50%; flex-shrink: 0;
  animation: livePulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255,59,59,0.6);
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}
.live-label {
  font-family: var(--font-head);
  font-size: 0.85rem; letter-spacing: 2.5px; color: #ff3b3b;
}

.live-screen {
  position: relative; width: 100%; background: #000; overflow: hidden;
}
.live-screen iframe {
  position: absolute; top: 0; left: 0;
  width: 1280px; height: 720px;
  border: none; display: block; transform-origin: top left;
}

.live-screen-overlay {
  position: absolute; inset: 0;
  background: var(--bg-deepest);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: opacity 0.6s ease;
}
.live-screen-overlay.hidden { opacity: 0; pointer-events: none; }

.live-loading { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.live-loading span { font-size: 0.85rem; color: var(--text-dim); }
.live-spinner {
  width: 36px; height: 36px;
  border: 2px solid rgba(0,229,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.live-frame-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card2);
  border-top: 1px solid rgba(0,229,255,0.08);
  flex-wrap: wrap; gap: 0.75rem;
}
.live-frame-footer > span { font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.4rem; }
.live-frame-footer > span i { color: var(--accent); }
.live-cta-link {
  font-size: 0.8rem; font-weight: 700; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s ease, opacity 0.3s ease; white-space: nowrap;
}
.live-cta-link:hover { gap: 0.7rem; opacity: 0.85; }

/* ─── 14. PRECIOS ─── */
.pricing-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,255,136,0.04), transparent 70%),
    linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-dark) 100%);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.price-card.featured {
  border-color: rgba(0,229,255,0.3);
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(0,229,255,0.1);
}
.price-featured-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #050b18; font-size: 0.65rem; font-weight: 800;
  letter-spacing: -0.01em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 0 0 8px 8px;
}
.price-tier {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.price-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem; letter-spacing: -0.02em; color: var(--text-white);
  margin-bottom: 1rem;
}
.price-amount { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.4rem; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }
.price-num {
  font-family: var(--font-head);
  font-size: 3.5rem; color: var(--text-white); line-height: 1;
}
.price-card.featured .price-num { color: var(--accent); }
.price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.price-divider { height: 1px; background: var(--border-soft); margin: 1.2rem 0; }
.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.65rem;
  flex: 1; margin-bottom: 1.6rem;
}
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-muted); }
.price-features li i { color: var(--accent2); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
.price-features li strong { color: var(--text-white); font-weight: 600; }

.btn-price {
  width: 100%; padding: 0.85rem; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; text-align: center; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-price-main {
  background: linear-gradient(135deg, var(--accent), #0072ff);
  color: #050b18; border: none;
  box-shadow: 0 4px 20px rgba(0,229,255,0.25);
}
.btn-price-main:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,255,0.4); }
.btn-price-ghost {
  background: transparent; color: var(--text-muted);
  border: 1.5px solid var(--border-soft);
}
.btn-price-ghost:hover { border-color: var(--border); color: var(--accent); background: rgba(0,229,255,0.04); transform: translateY(-2px); }

/* ─── 15. CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg,
    rgba(0,229,255,0.08) 0%,
    rgba(0,255,136,0.05) 50%,
    rgba(0,100,255,0.08) 100%);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 24px; padding: 3.5rem;
  text-align: center; position: relative; overflow: hidden;
  max-width: 800px; width: 100%;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,229,255,0.06), transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em;
  color: var(--text-white); margin-bottom: 0.75rem;
}
.cta-sub {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.75; max-width: 500px; margin: 0 auto 2rem;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ─── 16. FOOTER ─── */
footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-top: 0.75rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-socials a {
  width: 32px; height: 32px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.8rem;
  transition: var(--transition);
}
.footer-socials a:hover { color: var(--accent); border-color: rgba(0,229,255,0.25); background: rgba(0,229,255,0.06); }
.footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { text-decoration: none; font-size: 0.875rem; color: var(--text-muted); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-tech { font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.4rem; }

/* ─── UTILIDADES ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.badge-good { display: inline-flex; align-items: center; gap: 4px; background: rgba(0,255,136,0.08); color: var(--accent2); font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 6px; border: 1px solid rgba(0,255,136,0.15); }
.badge-bad  { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,80,80,0.06); color: #ff6b6b; font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 6px; border: 1px solid rgba(255,80,80,0.12); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero { padding: 90px 1.5rem 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .insight-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .widgets-intro { grid-template-columns: 1fr; gap: 2rem; }
  .wl-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .sectors-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 2rem; }
  .sectors-title-row .section-sub { text-align: left; }
  .wc-corp.full  { grid-column: span 3; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .widgets-cards { grid-template-columns: 1fr; }
  .wc-corp.full  { grid-column: span 1; }
  .wc-corp.full .wc-inner { flex-direction: column; }
  .sectors-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .insight-stats { grid-template-columns: 1fr 1fr; }
  .cta-banner    { padding: 2rem 1.5rem; }
  .live-header-right { display: none; }
}

@media (min-width: 1400px) {
  .hero-title { font-size: 4.5rem; }
}


  .wl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start; /* Alinea los elementos al inicio vertical */
  }

  /* Forzamos el espacio superior en Desktop con padding para saltarnos cualquier restricción de altura del Grid */
  .fast-column-alignment {
    padding-top: 11.5rem !important; 
    box-sizing: border-box;
  }

  .fast-channels-container {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .fast-channels-header {
    margin-bottom: 1.5rem;
  }

  .fast-channels-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }

  .fast-channels-subtitle {
    font-size: 0.8rem;
    color: var(--text-dim, #888);
    margin: 0;
  }

  .fast-grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .fast-logo-card {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .fast-logo-card:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.02);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.08);
    transform: translateY(-2px);
  }

  .fast-logo-card img {
    max-width: 85%;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(20%) brightness(95%);
    transition: filter 0.3s ease;
  }

  .fast-logo-card:hover img {
    filter: grayscale(0%) brightness(100%);
  }

  .fast-logo-card.font-logo i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .fast-logo-card.font-logo span {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-align: center;
  }

  .fast-logo-card.custom-slot {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.15);
    background: transparent;
  }

  .fast-logo-card.custom-slot i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 4px;
    transition: color 0.3s ease;
  }

  .fast-logo-card.custom-slot span {
    font-size: 0.6rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
  }

  .fast-logo-card.custom-slot:hover {
    border-style: solid;
    border-color: #00e5ff;
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.08);
  }

  .fast-logo-card.custom-slot:hover i,
  .fast-logo-card.custom-slot:hover span {
    color: #00e5ff;
  }

  /* Ajustes para Tablets y Pantallas medianas */
  @media (max-width: 992px) {
    .wl-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    /* Quitamos el espacio en móvil para que no deje un hueco gigante vacío */
    .fast-column-alignment {
      padding-top: 0 !important;
    }
  }

  /* Celulares */
  @media (max-width: 576px) {
    .fast-grid-4x4 {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .fast-logo-card {
      height: 65px;
    }
  }




