/* ============================================================
   MEGAWIRE — Sistema de diseño premium
   ============================================================ */

:root {
  /* PALETA */
  --navy-950: #04162E;
  --navy-900: #06203F;
  --navy-800: #0B2D5B;
  --navy-700: #133A75;
  --navy-600: #1E4E97;
  --navy-500: #2E6DC2;
  --navy-100: #E8EFFA;

  --orange-700: #C95E10;
  --orange-600: #E0721C;
  --orange-500: #F58A2E;
  --orange-400: #F8A24F;
  --orange-300: #FBC07F;
  --orange-100: #FFEDD9;

  --gold-500: #F5B83A;
  --teal-500: #2DD4BF;       /* acento secundario fresco */

  --ink: #FFFFFF;
  --text: #DCE6F5;
  --text-soft: #A9B8D2;
  --muted: #7A8AA8;
  --line: rgba(255,255,255,.08);
  --line-soft: rgba(255,255,255,.04);
  --line-strong: rgba(255,255,255,.16);
  --bg: #0A0F1C;
  --bg-soft: #121929;
  --surface: #1A2236;       /* card oscura */
  --surface-2: #232C45;     /* card elevada / hover */
  --white: #FFFFFF;

  --success: #16A06A;
  --danger: #E2453F;

  /* TIPOGRAFÍA */
  --ff-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* SOMBRAS */
  --shadow-xs: 0 1px 2px rgba(11, 45, 91, .06);
  --shadow-sm: 0 4px 10px rgba(11, 45, 91, .08);
  --shadow-md: 0 14px 32px rgba(11, 45, 91, .12);
  --shadow-lg: 0 28px 60px rgba(11, 45, 91, .18);
  --shadow-glow: 0 24px 60px rgba(245, 138, 46, .35);

  /* RADIO */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* LAYOUT */
  --container: 1240px;
  --header-h: 80px;

  /* GRADIENTES */
  --g-primary: linear-gradient(135deg, #0B2D5B 0%, #133A75 55%, #1E4E97 100%);
  --g-deep:    linear-gradient(160deg, #04162E 0%, #06203F 40%, #0B2D5B 100%);
  --g-accent:  linear-gradient(135deg, #F58A2E 0%, #F5B83A 100%);
  --g-accent-soft: linear-gradient(135deg, rgba(245,138,46,.12), rgba(245,184,58,.12));
  --g-mesh:
    radial-gradient(at 14% 18%, rgba(245,138,46,.45) 0px, transparent 45%),
    radial-gradient(at 86% 12%, rgba(46,109,194,.55) 0px, transparent 45%),
    radial-gradient(at 78% 82%, rgba(245,184,58,.35) 0px, transparent 45%),
    radial-gradient(at 22% 78%, rgba(30,78,151,.55) 0px, transparent 50%),
    linear-gradient(135deg, #04162E 0%, #06203F 50%, #0B2D5B 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* TIPOGRAFÍA */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { color: var(--text-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: var(--g-accent); border-radius: 2px;
}

.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--white); }
.section--dark { background: var(--g-deep); color: #DCE6F5; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #B8C5DD; }

.section-header { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-header h2 { margin-top: 14px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

.gradient-text {
  background: var(--g-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===================================
   TOP BAR
   =================================== */
.topbar {
  background: var(--navy-950);
  color: #C0CDE5;
  font-size: .82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #DCE6F5; }
.topbar a:hover { color: var(--orange-400); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info svg { color: var(--orange-400); }

/* ===================================
   HEADER
   =================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(228, 234, 243, .8);
  transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: 0 8px 24px rgba(11, 45, 91, .08); }
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text {
  font-family: var(--ff-display);
  font-weight: 800; color: var(--ink);
  font-size: 1.1rem; letter-spacing: .04em;
  line-height: 1;
}
.brand-text small {
  display: block; font-weight: 500;
  color: var(--muted); font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  border-radius: var(--r-xs);
  font-weight: 600; font-size: .94rem;
  color: var(--text); position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--orange-600); background: var(--orange-100); }
.nav a.active { color: var(--orange-600); }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--g-accent); border-radius: 2px;
}
.nav-cta { margin-left: 12px; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-xs);
  background: var(--bg-soft);
  color: var(--navy-800);
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ===================================
   BOTONES
   =================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  font-weight: 700; font-size: .95rem;
  border-radius: var(--r-sm);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  position: relative; overflow: hidden;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--g-accent); color: var(--white); box-shadow: 0 10px 24px rgba(245,138,46,.4); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(245,138,46,.55); color: var(--white); }
.btn-secondary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 8px 18px rgba(14,26,46,.25);
}
.btn-secondary:hover { background: var(--navy-700); color: var(--white); }
.btn-outline {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); color: var(--white); }
.btn-block { width: 100%; }
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ===================================
   HERO CINEMATOGRÁFICO
   =================================== */
.hero {
  position: relative;
  min-height: 720px;
  padding: 96px 0 140px;
  background: var(--g-mesh);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(245,138,46,.3), transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(46,109,194,.25), transparent 50%);
  z-index: -1;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
  z-index: -1; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1; pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1; pointer-events: none;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
  color: rgba(255,255,255,.95);
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(45,212,191,.25);
  animation: blink-soft 2s ease-in-out infinite;
}
@keyframes blink-soft { 50% { opacity: .55; } }
.hero-pill svg { color: var(--orange-400); width: 14px; height: 14px; }

.hero h1 { color: var(--white); font-weight: 800; }
.hero h1 .accent { display: inline-block; }
.hero .lead {
  font-size: 1.15rem; color: #C7D4ED;
  margin: 20px 0 32px; max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.9);
  font-weight: 600; font-size: .95rem;
}
.hero-actions .play-btn .play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.hero-actions .play-btn:hover .play { background: var(--white); color: var(--ink); transform: scale(1.08); }
.hero-actions .play-btn .play svg { width: 16px; height: 16px; margin-left: 2px; }

.hero-trust {
  margin-top: 50px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  color: #A9B8D2; font-size: .82rem;
}
.hero-trust strong { color: white; font-size: 1rem; }
.hero-stars {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-500); font-weight: 700;
  background: rgba(255,255,255,.08);
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-stars span { color: var(--white); }
.hero-avatars {
  display: flex; align-items: center;
}
.hero-avatars img, .hero-avatars .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
  background: var(--g-accent);
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: .8rem;
  object-fit: cover;
}
.hero-avatars > :first-child { margin-left: 0; }

/* Fondo SVG anterior (ya no se usa, queda como respaldo) */
.hero-bg-svg { display: none; }

/* FOTO de fondo del hero (familia + casa con WiFi/TV) */
.hero-bg-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: hero-fade-in 1.4s cubic-bezier(.2,.7,.2,1) both;
  transform-origin: center;
  /* Difumina los 4 bordes para que se camufle con el fondo del hero */
  -webkit-mask-image:
    radial-gradient(ellipse 70% 75% at 65% 55%,
      #000 0%,
      rgba(0,0,0,.95) 35%,
      rgba(0,0,0,.55) 65%,
      rgba(0,0,0,.15) 85%,
      transparent 100%);
  mask-image:
    radial-gradient(ellipse 70% 75% at 65% 55%,
      #000 0%,
      rgba(0,0,0,.95) 35%,
      rgba(0,0,0,.55) 65%,
      rgba(0,0,0,.15) 85%,
      transparent 100%);
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: scale(1.0); }
  to   { opacity: 1; transform: scale(.96); }
}

/* Overlay degradado: oscurece el lado izquierdo para legibilidad del texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(4,22,46,.92) 0%,
      rgba(4,22,46,.78) 28%,
      rgba(4,22,46,.45) 55%,
      rgba(4,22,46,.15) 80%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(4,22,46,.35) 0%,
      transparent 25%,
      transparent 75%,
      rgba(4,22,46,.55) 100%);
}

/* Ocultar ilustración SVG anterior (la foto ya muestra el escenario) */
.hero-illus { display: none; }

/* HERO VISUAL: ilustración central + columna de stats */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin-left: auto;
  display: grid;
}

.hero-illus {
  position: absolute;
  inset: 6% 18% 14% 0;
}
.hero-illus img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: bob 10s ease-in-out infinite;
  will-change: transform;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-illus .photo-tag {
  position: absolute; left: 0; bottom: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(4,22,46,.35);
}
.hero-illus .photo-tag .icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--g-accent);
  display: grid; place-items: center; color: white;
}
.hero-illus .photo-tag svg { width: 12px; height: 12px; }

/* Glass cards dispersas en el lado derecho del hero (flex column con gap garantiza no-overlap) */
.glass-stack {
  position: absolute;
  top: 26%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 36px;
  width: 240px;
}
.glass-stack .glass-card {
  animation: float 7s ease-in-out infinite;
  width: 195px;
}
.glass-stack .card-speed {
  margin-right: 200px;      /* derecha (asoma) */
  animation-delay: 0s;
}
.glass-stack .card-wifi {
  margin-right: -70px;       /* hacia adentro */
  animation-delay: .7s;
}
.glass-stack .card-tv {
  margin-right: 120px;      /* bien adentro */
  animation-delay: 1.4s;
}
.glass-stack .card-uptime {
  margin-right: 250px;       /* intermedio */
  width: 215px;
  animation-delay: 2.1s;
}
.glass-stack .card-support {
  margin-right: -20px;      /* derecha (asoma) */
  animation-delay: 2.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (max-width: 1100px) {
  .glass-stack { gap: 22px; right: 20px; }
  .glass-stack .card-speed { margin-right: -10px; }
  .glass-stack .card-wifi { margin-right: 20px; }
  .glass-stack .card-tv { margin-right: 30px; }
  .glass-stack .card-uptime { margin-right: 10px; }
  .glass-stack .card-support { margin-right: 0; }
}

@media (max-width: 980px) {
  .glass-stack {
    width: 210px;
    right: 10px;
    gap: 16px;
  }
  .glass-stack .glass-card { width: 210px; }
  .glass-stack .card-speed,
  .glass-stack .card-wifi,
  .glass-stack .card-tv,
  .glass-stack .card-uptime,
  .glass-stack .card-support { margin-right: 0; }
  .glass-stack .card-uptime { width: 210px; }
}

.glass-card {
  background: rgba(11,45,91,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: 11px 13px;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(4,22,46,.4);
  transition: transform .25s ease, border-color .25s ease;
}
.glass-card:hover {
  transform: translateX(-6px);
  border-color: rgba(245,184,58,.4);
}
.glass-card .row { display: flex; align-items: center; gap: 10px; }
.glass-card .icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--g-accent);
  display: grid; place-items: center; color: white;
  box-shadow: 0 6px 14px rgba(245,138,46,.4);
  flex-shrink: 0;
}
.glass-card .icon svg { width: 17px; height: 17px; }
.glass-card .name { font-weight: 700; font-size: .8rem; line-height: 1.2; }
.glass-card .value { font-size: .66rem; color: #C7D4ED; margin-top: 2px; }

/* Card uptime con barras */
.glass-card.card-uptime {
  display: flex; flex-direction: column; gap: 6px;
}
.glass-card.card-uptime .row { gap: 8px; }
.glass-card.card-uptime .bar {
  display: flex; gap: 2px;
  height: 6px;
  flex: 1;
}
.glass-card.card-uptime .bar span {
  flex: 1; background: rgba(255,255,255,.18); border-radius: 2px;
}
.glass-card.card-uptime .bar span.on {
  background: var(--teal-500);
  box-shadow: 0 0 8px rgba(45,212,191,.6);
}
.glass-card.card-uptime .pct {
  font-size: 1.3rem; font-weight: 800;
  color: var(--teal-500);
  line-height: 1;
  font-family: var(--ff-display);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* STATS row inside hero */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px; max-width: 540px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats .stat .num {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 800;
  background: var(--g-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em; line-height: 1;
}
.hero-stats .stat .label {
  font-size: .8rem; color: #A9B8D2;
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: 8px;
}

/* Wave divider */
.wave-divider {
  position: relative; height: 80px; margin-top: -80px;
  z-index: 3; pointer-events: none;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ===================================
   LOGOS / TRUSTED BAR
   =================================== */
.trusted {
  padding: 36px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trusted-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700;
}
.trusted-row .item { display: inline-flex; align-items: center; gap: 8px; opacity: .65; transition: opacity .25s ease; }
.trusted-row .item:hover { opacity: 1; color: var(--ink); }
.trusted-row .item svg { width: 18px; height: 18px; }

/* ===================================
   SLIDER PROMO
   =================================== */
.promo-slider {
  margin-top: -70px;
  position: relative; z-index: 4;
}
.promo-track {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--line);
}
.promo-slide {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 320px;
}
.promo-slide.active { display: grid; animation: slideIn .55s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.promo-content {
  padding: 44px 50px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.promo-content .tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-100);
  color: var(--orange-700);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  width: fit-content;
}
.promo-content h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}
.promo-price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--ff-display);
}
.promo-price .big {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 800;
  background: var(--g-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.promo-price .per { color: var(--muted); font-weight: 500; }
.promo-content p { color: var(--text-soft); }
.promo-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.promo-visual {
  position: relative; overflow: hidden;
}
.promo-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,45,91,.15), transparent 50%);
  z-index: 1;
}
.promo-controls {
  position: absolute; bottom: 18px; right: 18px;
  display: flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,.95);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.promo-controls button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.promo-controls button:hover { background: var(--ink); color: var(--white); }
.promo-dots { display: flex; gap: 6px; padding: 0 8px; }
.promo-dots span {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--line);
  cursor: pointer; transition: all .25s ease;
}
.promo-dots span.active { background: var(--orange-500); width: 26px; border-radius: var(--r-pill); }

/* ===================================
   SERVICIOS
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 38px 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--g-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--g-accent-soft);
  color: var(--orange-600);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.service-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.service-card .icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: .95rem; }
.service-card ul { margin-top: 18px; list-style: none; }
.service-card ul li {
  font-size: .92rem;
  padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}
.service-card ul li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(22,160,106,.12);
  color: var(--success);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A06A' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center; background-size: 60% 60%; background-repeat: no-repeat;
}

/* ===================================
   PLANES
   =================================== */
.plans-tabs {
  display: flex; gap: 6px; justify-content: center;
  background: var(--white);
  padding: 6px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.plans-tabs button {
  padding: 11px 26px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: .92rem;
  color: var(--muted);
  transition: all .25s ease;
}
.plans-tabs button.active {
  background: var(--ink); color: var(--white);
  box-shadow: 0 6px 14px rgba(14,26,46,.25);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 34px 28px;
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  border-color: transparent;
  background: linear-gradient(180deg, #fff 0%, #FFF7EF 100%);
  box-shadow: 0 22px 50px rgba(245,138,46,.18);
  outline: 2px solid var(--orange-500);
  outline-offset: -2px;
}
.plan-card .badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-accent);
  color: white; font-weight: 700; font-size: .72rem;
  padding: 7px 16px; border-radius: var(--r-pill);
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(245,138,46,.4);
}
.plan-card .name {
  font-weight: 700; color: var(--orange-600);
  font-size: .82rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 14px;
}
.plan-card .speed {
  font-family: var(--ff-display);
  font-size: 2.8rem; font-weight: 800;
  color: var(--ink);
  line-height: 1; letter-spacing: -.04em;
}
.plan-card .speed small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.plan-card .price {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 800; color: var(--navy-800);
  margin: 20px 0 0;
  line-height: 1.1;
}
.plan-card .price small { font-size: .9rem; color: var(--muted); font-weight: 500; }
.plan-card ul {
  list-style: none; margin: 22px 0; padding: 22px 0 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.plan-card ul li {
  font-size: .93rem;
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  color: var(--text);
}
.plan-card ul li svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ===================================
   LIFESTYLE / VIVE CONECTADO
   =================================== */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lifestyle-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 380px;
  background: var(--navy-800);
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.lifestyle-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.lifestyle-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  z-index: -1;
}
.lifestyle-card:hover img { transform: scale(1.08); }
.lifestyle-card::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(4,22,46,.5) 60%, rgba(4,22,46,.92) 100%);
  z-index: -1;
}
.lifestyle-card .lf-content {
  padding: 26px;
  color: white;
}
.lifestyle-card .lf-content h3 { color: white; font-size: 1.2rem; margin-bottom: 8px; }
.lifestyle-card .lf-content p { color: rgba(255,255,255,.8); font-size: .92rem; }
.lifestyle-card .lf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: white;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.18);
}
.lifestyle-card .lf-icon svg { width: 22px; height: 22px; }
.lifestyle-card .lf-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: white;
  transition: background .25s ease, transform .3s ease;
  border: 1px solid rgba(255,255,255,.2);
}
.lifestyle-card:hover .lf-arrow { background: var(--orange-500); transform: rotate(-45deg) scale(1.05); border-color: var(--orange-500); }
.lifestyle-card .lf-arrow svg { width: 16px; height: 16px; }

@media (max-width: 980px) { .lifestyle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lifestyle-grid { grid-template-columns: 1fr; } .lifestyle-card { min-height: 320px; } }

/* ===================================
   GALERÍA
   =================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-800);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); z-index: 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  color: white;
  background: linear-gradient(0deg, rgba(4,22,46,.92), rgba(4,22,46,.4) 60%, transparent);
}
.gallery-item .caption .ttl { font-weight: 700; font-size: 1rem; }
.gallery-item .caption .sub { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 2px; }

.gi-1 { grid-column: span 5; grid-row: span 2; }
.gi-2 { grid-column: span 4; grid-row: span 1; }
.gi-3 { grid-column: span 3; grid-row: span 1; }
.gi-4 { grid-column: span 4; grid-row: span 1; }
.gi-5 { grid-column: span 3; grid-row: span 1; }
.gi-6 { grid-column: span 4; grid-row: span 2; }
.gi-7 { grid-column: span 4; grid-row: span 1; }
.gi-8 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; }
  .gi-1 { grid-column: span 6; grid-row: span 2; }
  .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8 { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  [class^=gi-] { grid-column: 1 / -1 !important; grid-row: span 1 !important; }
}

/* ===================================
   CHANNELS CAROUSEL
   =================================== */
.channels-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.channels-track {
  display: flex; gap: 22px;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}
.channels-carousel:hover .channels-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.channel-logo {
  flex-shrink: 0;
  width: 150px; height: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: .01em;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  gap: 4px;
}
.channel-logo:hover { transform: translateY(-4px); color: var(--orange-600); border-color: var(--orange-300); box-shadow: var(--shadow-sm); }
.channel-logo small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ===================================
   FEATURES (por qué)
   =================================== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  padding: 32px 26px;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .icon-square {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--g-accent-soft);
  color: var(--orange-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature .icon-square svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature p { color: var(--muted); font-size: .92rem; }

/* ===================================
   COBERTURA (banner CTA con form)
   =================================== */
.coverage {
  background: var(--g-deep);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 64px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.coverage::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(245,138,46,.3), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(46,109,194,.3), transparent 50%);
  z-index: -1;
}
.coverage h2 { color: var(--white); }
.coverage p { color: #C7D4ED; margin-top: 12px; }
.coverage .eyebrow { color: var(--orange-400); }
.coverage .eyebrow::before { background: var(--orange-400); }
.coverage-form {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.coverage-form input, .coverage-form select {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-family: inherit;
}
.coverage-form input::placeholder { color: rgba(255,255,255,.65); }
.coverage-form input:focus, .coverage-form select:focus {
  outline: none; border-color: var(--orange-400);
  background: rgba(255,255,255,.16);
  box-shadow: 0 0 0 4px rgba(245,138,46,.15);
}
.coverage-form select option { color: var(--text); background: white; }
#coverage-result {
  margin-top: 18px;
  padding: 16px 22px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: none;
  font-size: .95rem;
}
#coverage-result.show { display: block; }
#coverage-result.ok { background: rgba(22,160,106,.2); border-color: var(--success); }
#coverage-result.no { background: rgba(226,69,63,.2); border-color: var(--danger); }

/* ===================================
   FAQ acordeón
   =================================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .2s ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--orange-300); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; color: var(--ink);
  font-size: 1rem;
}
.faq-q .chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--orange-600);
  display: grid; place-items: center;
  transition: transform .25s ease, background .2s ease, color .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--orange-500); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--text-soft);
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 26px 24px; }

/* ===================================
   TESTIMONIOS
   =================================== */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial .stars { color: var(--gold-500); font-size: 1rem; letter-spacing: 2px; }
.testimonial p { color: var(--text); font-size: 1rem; font-style: italic; flex: 1; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--g-accent);
  color: white;
  display: grid; place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial .name { font-weight: 700; color: var(--ink); }
.testimonial .role { font-size: .82rem; color: var(--muted); }

/* ===================================
   CTA banner
   =================================== */
.cta-banner {
  background: var(--g-accent);
  color: var(--white);
  padding: 56px;
  border-radius: var(--r-lg);
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 30px 60px rgba(245,138,46,.35);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,.92); margin-top: 6px; }
.cta-banner .btn-secondary { background: var(--white); color: var(--orange-700); }
.cta-banner .btn-secondary:hover { background: var(--ink); color: var(--white); }

/* ===================================
   PAGE HERO interior
   =================================== */
.page-hero {
  background: var(--g-deep);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,138,46,.25), transparent 60%);
  z-index: -1;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: #C7D4ED; max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: .82rem; color: #A9B8D2; margin-bottom: 18px; letter-spacing: .04em; }
.breadcrumb a { color: var(--orange-400); }

/* ===================================
   FORM CARD (PQR, cobertura interior)
   =================================== */
.form-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 44px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: -40px auto 0;
  position: relative; z-index: 3;
  border: 1px solid var(--line);
}
.pqr-types {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 30px;
}
.pqr-type {
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  font-weight: 700; font-size: .92rem;
  color: var(--ink);
  transition: all .2s ease;
  background: var(--white);
}
.pqr-type:hover { border-color: var(--orange-300); background: rgba(245,138,46,.04); }
.pqr-type.selected {
  border-color: transparent;
  background: var(--g-accent);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.pqr-type small { display: block; font-weight: 500; font-size: .72rem; opacity: .85; margin-top: 4px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .88rem; font-weight: 600; color: var(--ink);
}
.form-group label .req { color: var(--danger); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  font-family: inherit; font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(245,138,46,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group .hint { font-size: .8rem; color: var(--muted); }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--danger); }
.form-group .error-msg { color: var(--danger); font-size: .8rem; display: none; }
.form-group.error .error-msg { display: block; }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  margin: 8px 0 6px;
  font-size: .88rem;
  color: var(--text-soft);
}
.checkbox-row input[type=checkbox] { margin-top: 3px; accent-color: var(--orange-500); width: 16px; height: 16px; }
.checkbox-row a { color: var(--orange-600); font-weight: 600; }

.form-success {
  background: rgba(22,160,106,.1);
  border: 1.5px solid var(--success);
  color: #0f5d3c;
  padding: 20px 24px;
  border-radius: var(--r-sm);
  display: none;
  margin-bottom: 22px;
}
.form-success.show { display: block; }
.form-success strong { display: block; margin-bottom: 4px; font-size: 1.05rem; color: var(--ink); }
.form-success .ticket {
  display: inline-block;
  background: var(--white);
  border: 1px dashed var(--success);
  padding: 6px 12px;
  margin-top: 8px;
  border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  color: var(--ink);
}

/* CHANNELS / CONTACTO PQR */
.channels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 40px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.channel-card .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--g-accent);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.channel-card h3 { font-size: 1.05rem; }
.channel-card p { color: var(--muted); font-size: .92rem; }
.channel-card .value { color: var(--orange-600); font-weight: 700; font-size: 1rem; }

/* ===================================
   ESTADO DEL SERVICIO
   =================================== */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.status-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}
.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(22,160,106,.15);
  animation: blink-soft 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.status-item .lbl { font-weight: 700; color: var(--ink); }
.status-item .sub { font-size: .82rem; color: var(--muted); }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--navy-950);
  color: #B8C5DD;
  padding: 80px 0 30px;
}
.footer a { color: #B8C5DD; }
.footer a:hover { color: var(--orange-400); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white); font-size: 1rem;
  margin-bottom: 22px; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 700; font-family: var(--ff-display);
}
.footer .brand-text { color: var(--white); }
.footer .brand-text small { color: var(--orange-400); }
.footer ul { list-style: none; }
.footer ul li { padding: 5px 0; font-size: .92rem; }
.footer .about p { font-size: .92rem; margin-top: 14px; line-height: 1.7; }
.footer .social { margin-top: 20px; display: flex; gap: 10px; }
.footer .social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.footer .social a:hover { background: var(--orange-500); transform: translateY(-2px); color: white; }
.footer .social svg { width: 18px; height: 18px; }
.footer .contact-info li { display: flex; align-items: flex-start; gap: 10px; }
.footer .contact-info svg { width: 16px; height: 16px; color: var(--orange-400); flex-shrink: 0; margin-top: 4px; }

.legal-strip {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: .82rem;
}
.legal-strip .links { display: flex; gap: 20px; flex-wrap: wrap; }

.mintic-strip {
  margin-top: 30px;
  padding: 18px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: .8rem;
  line-height: 1.6;
}
.mintic-strip strong { color: var(--orange-400); }

/* ===================================
   WHATSAPP FAB
   =================================== */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-fab-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 16px 36px rgba(37,211,102,.5);
  transition: transform .25s ease;
  animation: wa-pulse 2.6s ease-out infinite;
  position: relative;
}
.wa-fab-btn:hover { transform: scale(1.08) rotate(-6deg); color: white; }
.wa-fab-btn svg { width: 34px; height: 34px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 16px 36px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 16px 36px rgba(37,211,102,.5), 0 0 0 24px rgba(37,211,102,0); }
  100% { box-shadow: 0 16px 36px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-fab-bubble {
  background: var(--white);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  position: relative;
  transform: translateX(20px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.wa-fab-bubble strong { color: #25D366; display: block; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.wa-fab-bubble::after {
  content: ""; position: absolute; right: 24px; bottom: -7px;
  width: 14px; height: 14px;
  background: var(--white);
  transform: rotate(45deg);
}
.wa-fab.show .wa-fab-bubble { transform: translateX(0); opacity: 1; pointer-events: auto; }
.wa-fab-bubble .close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: 0; color: var(--muted);
  font-size: 1.1rem; cursor: pointer;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.wa-fab-bubble .close:hover { background: var(--bg-soft); }

@media (max-width: 540px) {
  .wa-fab { bottom: 16px; right: 16px; }
  .wa-fab-btn { width: 58px; height: 58px; }
  .wa-fab-bubble { font-size: .82rem; padding: 10px 14px; max-width: 220px; }
}

/* ===================================
   REVEAL / Animaciones
   =================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 980px) {
  .hero { padding: 70px 0 100px; min-height: 0; }
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-stats { max-width: none; }
  .hero-illus { inset: 4% 36% 12% 0; }
  .glass-stack { width: 180px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .channels { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pqr-types { grid-template-columns: repeat(2, 1fr); }
  .coverage { padding: 40px 32px; }
  .cta-banner { padding: 40px; text-align: center; justify-content: center; }
  .promo-slide.active { grid-template-columns: 1fr; }
  .promo-visual { min-height: 220px; }
  .promo-content { padding: 32px 28px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: grid; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 16px;
    gap: 4px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 12px 16px; }
  .nav-cta { width: 100%; }
  .topbar-info { font-size: .76rem; gap: 14px; }
  .topbar-info span:nth-child(n+3) { display: none; }
  .section { padding: 70px 0; }
  .form-card { padding: 28px 22px; margin: -30px 16px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-stats .stat:last-child { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: 1fr; }
  .plans-tabs { width: 100%; }
  .plans-tabs button { flex: 1; padding: 10px 12px; font-size: .82rem; }
  .pqr-types { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .hero-trust { gap: 16px; }
  .glass-card { padding: 12px 14px; }
  .glass-card .name { font-size: .85rem; }
  .glass-card .value { font-size: .72rem; }
}

/* ===================================
   ANIMACIONES DE PRIMERA IMPRESIÓN
   =================================== */

/* Canvas de red de partículas (encima de overlay, debajo de contenido) */
.hero-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 2;
  pointer-events: none;
  opacity: .7;
  mix-blend-mode: screen;
}
.hero > .container { position: relative; z-index: 4; }
.hero-grid-lines { z-index: 3; opacity: .35; }
.hero-noise { z-index: 3; opacity: .15; }
.cursor-glow { z-index: 3; }

/* Cursor glow (sin filter blur, el gradiente ya es suave) */
.cursor-glow {
  position: absolute;
  pointer-events: none;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,58,.22), rgba(245,138,46,.08) 40%, transparent 75%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  will-change: left, top, opacity;
  mix-blend-mode: screen;
}
.hero:hover .cursor-glow { opacity: 1; }

/* Typewriter */
.typewriter-wrap {
  display: inline-flex;
  align-items: baseline;
  min-height: 1.1em;        /* reserva el alto de una línea */
  line-height: 1.1;
}
.typewriter {
  background: var(--g-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  white-space: nowrap;
  display: inline-block;
}
.caret {
  display: inline-block;
  width: 4px; height: .85em;
  margin-left: 6px;
  background: var(--orange-400);
  border-radius: 2px;
  vertical-align: -0.06em;
  animation: caret-blink 1s steps(1) infinite;
  box-shadow: 0 0 12px rgba(245,184,58,.6);
}
@keyframes caret-blink { 50% { opacity: 0; } }

/* Entrada cinematográfica del hero */
.hero .hero-pill,
.hero h1,
.hero .lead,
.hero .hero-actions,
.hero .hero-trust,
.hero .hero-stats,
.hero .hero-visual {
  opacity: 0;
  transform: translateY(28px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .hero-pill   { animation-delay: .05s; }
.hero h1           { animation-delay: .15s; }
.hero .lead        { animation-delay: .35s; }
.hero .hero-actions{ animation-delay: .5s;  }
.hero .hero-trust  { animation-delay: .65s; }
.hero .hero-stats  { animation-delay: .8s;  }
.hero .hero-visual {
  animation-delay: .25s;
  animation-name: rise-scale;
  animation-duration: 1.1s;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rise-scale {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .hero-visual { transform: translateY(28px) scale(.96); }

/* Glass cards aparecen escalonadas */
.hero .glass-card {
  opacity: 0;
  transform: translateX(28px);
  animation: rise-x .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .glass-card.card-speed   { animation-delay: 1.0s; }
.hero .glass-card.card-wifi    { animation-delay: 1.08s; }
.hero .glass-card.card-tv      { animation-delay: 1.16s; }
.hero .glass-card.card-uptime  { animation-delay: 1.24s; }
.hero .glass-card.card-support { animation-delay: 1.32s; }
@keyframes rise-x {
  to { opacity: 1; transform: translateX(0); }
}

/* Tilt 3D */
.tilt {
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
  will-change: transform;
}
.tilt > * { transform: translateZ(0); }

/* Magnetic button */
.btn-primary { transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s ease; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--g-accent);
  box-shadow: 0 0 14px rgba(245,138,46,.7);
  z-index: 100;
  transition: width .12s linear;
}

/* Live activity feed */
.live-activity {
  position: fixed;
  bottom: 110px;
  left: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 18px 12px 14px;
  border-radius: 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 22px 50px rgba(11,45,91,.25);
  border: 1px solid var(--line);
  z-index: 80;
  max-width: 320px;
  transform: translateX(-150%) scale(.9);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  font-size: .88rem;
}
.live-activity.show { transform: translateX(0) scale(1); opacity: 1; }
.live-activity .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--g-accent);
  color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: .82rem;
  flex-shrink: 0;
  position: relative;
}
.live-activity .av::after {
  content: ""; position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--success);
  border: 2px solid white;
}
.live-activity .user { font-weight: 700; color: var(--ink); }
.live-activity .action { color: var(--text-soft); }
.live-activity .meta { font-size: .76rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 760px) {
  .live-activity { left: 12px; bottom: 90px; max-width: 280px; font-size: .82rem; padding: 10px 14px 10px 12px; }
  .live-activity .av { width: 34px; height: 34px; }
}

/* Glow pulse en CTA principal del hero */
.btn-primary.pulse-glow::before {
  content: ""; position: absolute; inset: -2px;
  border-radius: inherit;
  background: var(--g-accent);
  opacity: 0; z-index: -1;
  animation: pulseGlow 2.5s ease-out infinite;
}
@keyframes pulseGlow {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* =================================================================
   TEMA OSCURO NETFLIX-LIKE
   Sobrescribe componentes para encajar con el fondo dark del body
   ================================================================= */

body { background: var(--bg); color: var(--text); }

.section--alt { background: var(--bg-soft); }
.section { background: var(--bg); }

/* Cards a oscuro */
.service-card,
.plan-card,
.feature,
.testimonial,
.faq-item,
.channel-card,
.status-item,
.form-card,
.channel-logo,
.city-card,
.help-card,
.pqr-type {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}
.plan-card.featured {
  background: linear-gradient(180deg, var(--surface-2) 0%, rgba(245,138,46,.06) 100%);
  outline: 2px solid var(--orange-500);
  outline-offset: -2px;
  border-color: transparent;
}
.plan-card .price,
.plan-card .speed,
.service-card h3,
.feature h3,
.testimonial p,
.testimonial .name,
.faq-q,
.channel-card h3,
.status-item .lbl,
.form-card h2,
.help-card h3 { color: var(--ink); }
.testimonial p { color: var(--text); }

.service-card:hover,
.feature:hover,
.testimonial:hover,
.channel-card:hover,
.help-card:hover,
.city-card:hover { border-color: var(--orange-500); background: var(--surface-2); }

.plan-card:hover { border-color: var(--line-strong); background: var(--surface-2); }

/* Plans tabs (botones) oscuros */
.plans-tabs {
  background: var(--surface);
  border-color: var(--line);
}
.plans-tabs button { color: var(--text-soft); }
.plans-tabs button.active { background: var(--g-accent); color: white; box-shadow: 0 6px 14px rgba(245,138,46,.4); }

/* FAQ oscuro */
.faq-q .chev { background: rgba(255,255,255,.06); color: var(--orange-400); }
.faq-item.open { border-color: var(--orange-500); background: var(--surface-2); }
.faq-a { color: var(--text-soft); }

/* Channels oscuro */
.channel-logo { color: var(--ink); }
.channel-logo small { color: var(--muted); }
.channel-logo:hover { color: var(--orange-400); }

/* Header se vuelve translúcido oscuro */
.header {
  background: rgba(10,15,28,.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
}
.brand-text { color: var(--ink); }
.nav a { color: var(--text); }
.nav a:hover { color: var(--orange-400); background: rgba(245,138,46,.1); }
.menu-toggle { background: rgba(255,255,255,.06); color: var(--ink); }

/* Topbar más oscuro */
.topbar { background: #04081A; }

/* Section header */
.section-header h2 { color: var(--ink); }
.section-header p { color: var(--text-soft); }

/* Form inputs oscuros */
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,.06);
  border-color: var(--orange-500);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--surface); color: var(--text); }
.form-group label { color: var(--ink); }
.checkbox-row { background: rgba(255,255,255,.04); color: var(--text-soft); }
.pqr-type { color: var(--ink); }
.pqr-type:hover { background: rgba(245,138,46,.08); }
.form-card { color: var(--text); }
.form-card p { color: var(--text-soft); }
.form-card h2 { color: var(--ink); }

/* CTA banner texto se mantiene */
.cta-banner .btn-secondary { background: var(--ink); color: white; }

/* Service card ul items */
.service-card ul li { color: var(--text); }

/* Promo slider oscuro */
.promo-track {
  background: var(--surface);
  border-color: var(--line);
}
.promo-content h3 { color: var(--ink); }
.promo-content p { color: var(--text-soft); }
.promo-controls { background: rgba(10,15,28,.85); }
.promo-controls button { background: rgba(255,255,255,.08); color: var(--ink); }
.promo-controls button:hover { background: var(--orange-500); color: white; }
.promo-dots span { background: var(--line-strong); }
.promo-dots span.active { background: var(--orange-500); }

/* Btn-outline en oscuro: borde claro y fondo translúcido */
.btn-outline {
  background: rgba(255,255,255,.05);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Status item con dot pulsante */
.status-item .sub { color: var(--text-soft); }
.feature p { color: var(--text-soft); }
.help-card p { color: var(--text-soft); }
.channel-card p { color: var(--text-soft); }
.testimonial .role { color: var(--muted); }

/* Trusted bar oscuro */
.trusted {
  background: var(--bg-soft);
  border-bottom-color: var(--line);
}
.trusted-row { color: var(--muted); }
.trusted-row .item:hover { color: var(--orange-400); }

/* =================================================================
   NETFLIX STYLE: row-shelf con scroll horizontal y flechas
   ================================================================= */
.row-shelf {
  position: relative;
  margin: 0 0 64px;
}
.row-shelf:last-child { margin-bottom: 0; }
.row-shelf__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  padding: 0 4px;
}
.row-shelf__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 14px;
  letter-spacing: -.01em;
}
.row-shelf__title .tag {
  font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-400);
  background: rgba(245,138,46,.14);
  padding: 5px 12px; border-radius: var(--r-pill);
  font-weight: 700;
  border: 1px solid rgba(245,138,46,.25);
}
.row-shelf__see {
  font-size: .9rem; font-weight: 600;
  color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.row-shelf__see:hover { color: var(--orange-400); }

.row-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 4px 50px;
  margin: -10px -4px -20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.row-track::-webkit-scrollbar { display: none; }
.row-track > .plan-card,
.row-track > * {
  flex: 0 0 320px;
  scroll-snap-align: start;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
}
.row-track > .plan-card {
  min-height: 460px;
  padding: 30px 26px;
}
.row-track > .plan-card:hover {
  transform: translateY(-8px) scale(1.035);
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
  border-color: var(--orange-500);
}

/* Fix: precio era azul oscuro (invisible sobre dark) */
.plan-card .price { color: var(--ink); font-size: 2.2rem; }
.plan-card .price small { color: var(--text-soft); }
.plan-card .name { color: var(--orange-400); }
.plan-card .speed small { color: var(--text-soft); }
.plan-card ul li { color: var(--text); }

/* Featured: glow naranja más visible */
.plan-card.featured {
  background:
    radial-gradient(ellipse at top, rgba(245,138,46,.18), transparent 60%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  outline: 2px solid var(--orange-500);
  outline-offset: -2px;
  box-shadow: 0 30px 60px rgba(245,138,46,.2), inset 0 1px 0 rgba(255,255,255,.05);
  border-color: transparent;
}
.plan-card.featured .name { color: var(--orange-300); }
.plan-card.featured .price { color: white; }

/* Línea decorativa superior animada */
.plan-card { position: relative; overflow: hidden; }
.plan-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.plan-card:hover::after,
.plan-card.featured::after { opacity: 1; }

.row-arrow {
  position: absolute;
  top: 88px; bottom: 50px;
  width: 64px;
  background: linear-gradient(90deg, rgba(10,15,28,.98) 30%, rgba(10,15,28,0));
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 5;
  border: 0;
}
.row-arrow.next {
  right: -4px;
  background: linear-gradient(-90deg, rgba(10,15,28,.98) 30%, rgba(10,15,28,0));
}
.row-arrow.prev { left: -4px; }
.row-arrow svg {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  padding: 8px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.row-arrow:hover svg { background: var(--orange-500); border-color: var(--orange-500); transform: scale(1.12); }
.row-shelf:hover .row-arrow { opacity: 1; }

@media (max-width: 760px) {
  .row-arrow { display: none; }
  .row-track > * { flex: 0 0 280px; }
  .row-track > .plan-card { min-height: 440px; }
  .row-shelf__title { font-size: 1.2rem; }
}

/* =================================================================
   GALERÍA NETFLIX-STYLE
   ================================================================= */
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item:hover {
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px var(--orange-500);
}
.gallery-item .caption .ttl { font-size: 1.05rem; }

/* =================================================================
   COVERAGE / FORM CARD oscuros refinados
   ================================================================= */
.coverage { background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); }

/* Mejor contraste de "city-card" */
.city-card .name { color: var(--ink); }
.city-card .neighborhoods { color: var(--text-soft); }

/* =================================================================
   Hero pequeños ajustes para tema oscuro coherente
   ================================================================= */
.hero { background: var(--bg); }
.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(10,15,28,.95) 0%,
      rgba(10,15,28,.78) 28%,
      rgba(10,15,28,.45) 55%,
      rgba(10,15,28,.15) 80%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(10,15,28,.45) 0%,
      transparent 25%,
      transparent 70%,
      rgba(10,15,28,.85) 100%);
}

/* Page hero interior */
.page-hero { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .hero-canvas { display: none; }
}
