/* ============================================================
   NeoNet — main.css
   Paleta oficial · Inter font · Light mode · Mobile-first
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
──────────────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --blue: #223483;
  --blue-dark: #0D1B4B;
  --blue-light: #6BB8E7;
  --white: #F7F7F7;
  --gray: #ADADAD;
  --green: #34C759;
  --orange: #FF9F1C;

  /* Semantic aliases */
  --color-bg: #FFFFFF;
  --color-surface: #F7F7F7;
  --color-border: #E0E4F0;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-primary: var(--blue);
  --color-primary-dark: var(--blue-dark);
  --color-accent: var(--blue-light);
  --color-success: var(--green);
  --color-promo: var(--orange);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0D1B4B 0%, #223483 60%, #1a3a7a 100%);
  --grad-card: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
  --grad-badge: linear-gradient(90deg, var(--orange) 0%, #ffb84d 100%);

  /* Typography */
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-black: 900;
  --lh-tight: 1.2;
  --lh-snug: 1.4;
  --lh-normal: 1.6;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 16px rgba(34, 52, 131, .10), 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 40px rgba(34, 52, 131, .15), 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-xl: 0 20px 60px rgba(13, 27, 75, .20);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --fast: 150ms;
  --normal: 250ms;
  --slow: 400ms;

  /* Layout */
  --container-max: 1440px;
  --header-h: 72px;
}

/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

/* ────────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
──────────────────────────────────────────────────────────── */
.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semi {
  font-weight: var(--fw-semi);
}

/* ────────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 640px) {
  .container {
    padding-inline: var(--sp-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--sp-12);
  }
}

.section {
  padding-block: var(--sp-16);
}

.section--sm {
  padding-block: var(--sp-12);
}

.section--lg {
  padding-block: var(--sp-24);
}

.section--alt {
  background-color: var(--color-surface);
}

.section--dark {
  background: var(--grad-hero);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--sp-3);
}

.section-label--dark {
  color: var(--color-promo);
}

.section-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-black);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-snug);
}

.section-subtitle--light {
  color: rgba(255, 255, 255, .72);
}

/* ────────────────────────────────────────────────────────────
   5. BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-base);
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--normal) var(--ease),
    color var(--normal) var(--ease),
    border-color var(--normal) var(--ease),
    transform var(--fast) var(--ease),
    box-shadow var(--normal) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(.97);
}

/* Primary */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

/* Primary outlined */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* White (for dark backgrounds) */
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

/* White outlined */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* Promo / CTA */
.btn-promo {
  background: var(--color-promo);
  color: #fff;
  border-color: var(--color-promo);
}

.btn-promo:hover {
  background: #e88e10;
  border-color: #e88e10;
  box-shadow: 0 6px 20px rgba(255, 159, 28, .35);
}

/* Sizes */
.btn-sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--text-md);
}

.btn-xl {
  padding: var(--sp-5) var(--sp-12);
  font-size: var(--text-lg);
}

.btn-full {
  width: 100%;
}

/* WhatsApp button variant */
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-wa:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* ────────────────────────────────────────────────────────────
   6. LOGO
──────────────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: var(--fw-black);
  letter-spacing: -.03em;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-neo {
  color: var(--blue-light);
}

.logo-net {
  color: #fff;
}

/* Logo on white/light backgrounds */
.logo--dark .logo-neo {
  color: var(--blue);
}

.logo--dark .logo-net {
  color: var(--blue-dark);
}

/* Logo image (real asset) */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  max-width: 200px;
}

@media (max-width: 479px) {
  .logo-img {
    height: 36px;
  }
}

/* ────────────────────────────────────────────────────────────
   7. HEADER
──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow var(--normal) var(--ease);
}

/* Fondo + blur en pseudo-elemento para no convertir al header en
   containing-block de los hijos con position:fixed (ej. menú móvil) */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 75, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  transition: background var(--normal) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.site-header.scrolled::before {
  background: rgba(13, 27, 75, .98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, .78);
  border-radius: var(--radius-sm);
  transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.nav-link--active {
  color: var(--blue-light);
  background: rgba(107, 184, 231, .10);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  transition: background var(--fast) var(--ease);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, .08);
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 22px;
  background: rgba(255, 255, 255, .85);
  border-radius: 2px;
  margin-inline: auto;
  transition: transform var(--normal) var(--ease), opacity var(--normal) var(--ease);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 767px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--blue-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--sp-6) var(--sp-5);
    transform: translateX(100%);
    transition: transform var(--normal) var(--ease);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    width: 100%;
  }

  .nav-link {
    font-size: var(--text-md);
    padding: var(--sp-4) var(--sp-4);
    border-radius: var(--radius-md);
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   8. HERO SECTION
──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, #0d1b4b 0%, #223483 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(13, 27, 75, 0.92) 0%,
      rgba(13, 27, 75, 0.82) 35%,
      rgba(13, 27, 75, 0.58) 62%,
      rgba(13, 27, 75, 0.38) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
  padding-block: 56px 72px;
}

.hero__content {
  max-width: 640px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.15);
  border: 1px solid rgba(255, 159, 28, 0.35);
  color: #ff9f1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.96;
  font-weight: 900;
  color: #ffffff;
  max-width: 760px;
}

.hero__title span {
  color: #6bb8e7;
}

.hero__description {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.hero__plan-card {
  max-width: 430px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  animation: heroCardFloat 5s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__plan-card {
    animation: none;
  }
}

.hero__plan-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.16);
  color: #ff9f1c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__plan-body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.hero__plan-name,
.hero__plan-speed,
.hero__plan-amount,
.hero__plan-period {
  margin: 0;
}

.hero__plan-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}

.hero__plan-speed {
  color: #6bb8e7;
  font-weight: 700;
  font-size: 0.96rem;
}

.hero__plan-price {
  text-align: right;
}

.hero__plan-amount {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero__plan-period {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.hero__plan-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__plan-perks span,
.hero__trust-item {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__neo-video,
.hero__neo-fallback {
  position: relative;
  z-index: 2;
  width: clamp(280px, 30vw, 430px);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(13, 27, 75, 0.45));
  animation: hero-float 5s ease-in-out infinite;
}

.hero__neo-video {
  object-fit: contain;
}

.hero__neo-fallback {
  display: none;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 40px 56px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 280px;
    justify-content: center;
  }

  .hero__neo-video,
  .hero__neo-fallback {
    width: 260px;
  }
}

@media (max-width: 767px) {
  .hero__bg {
    display: none;
  }

  .hero {
    background:
      linear-gradient(160deg, rgba(13, 27, 75, 0.96), rgba(34, 52, 131, 0.90)),
      url("../images/hero/hero-poster.jpg") center/cover no-repeat;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 28px 44px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero__plan-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__plan-price {
    text-align: left;
  }

  /* Hide Neo character entirely on mobile */
  .hero__visual {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__neo {
    animation: none;
  }
}

/* ────────────────────────────────────────────────────────────
   9. PROMO BANNER — Ticker animado (v4.0)
──────────────────────────────────────────────────────────── */
@keyframes promo-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes promo-badge-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
}

@keyframes promo-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.promo-banner {
  background: linear-gradient(270deg, #f59e0b, #ef4444, #f97316, #eab308, #f59e0b);
  background-size: 300% 300%;
  animation: promo-shimmer 6s ease infinite;
  padding: var(--sp-3) 0 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.promo-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-4);
}

.promo-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(0, 0, 0, .30);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, .35);
  flex-shrink: 0;
  white-space: nowrap;
  animation: promo-badge-pulse 2s ease-in-out infinite;
}

/* Ticker track */
.promo-ticker {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.promo-ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: promo-ticker-scroll 18s linear infinite;
}

.promo-ticker__item {
  color: #fff;
  font-size: clamp(var(--text-sm), 2vw, var(--text-base));
  font-weight: var(--fw-black);
  letter-spacing: -.01em;
  padding-right: var(--sp-6);
}

.promo-ticker__dot {
  color: rgba(255, 255, 255, .55);
  font-size: .65em;
  vertical-align: middle;
}

.promo-banner__cta {
  flex-shrink: 0;
  background: #fff;
  color: #c2410c;
  font-weight: var(--fw-black);
  border: none;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  text-decoration: none;
  display: inline-block;
}

.promo-banner__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.promo-banner__legal {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, .60);
  text-align: center;
  padding: var(--sp-1) var(--sp-4) var(--sp-2);
  /* móvil: línea simple, escritorio: nowrap con ellipsis */
  white-space: normal;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .promo-banner__legal {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    animation: none;
  }

  .promo-banner {
    animation: none;
  }

  .promo-banner__badge {
    animation: none;
  }
}



.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.promo-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
}

@media (max-width: 639px) {
  .promo-banner__inner {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }

  .promo-ticker {
    width: 100%;
  }

  .promo-banner__cta {
    width: 100%;
    text-align: center;
  }
}

.promo-banner__badge {
  background: rgba(255, 255, 255, .25);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, .4);
  flex-shrink: 0;
}

/* .promo-banner__text removed v4.0 — replaced by ticker */

/* Plans section — premium visual treatment */
#planes.section--alt {
  background: linear-gradient(180deg, #edf1fb 0%, var(--color-surface) 50%, #edf1fb 100%);
}

#planes .section-title {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 70%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ────────────────────────────────────────────────────────────
   10. PLANS CARDS
──────────────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  flex: 1;
  min-width: 0;
}

@media (min-width: 540px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Salta directamente a 5 columnas: evita el layout de 3 cols
   que generaba una fila final con 2 cards y celda vacía a la derecha */
@media (min-width: 1100px) {
  .plans-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Centra el último plan cuando queda solo en una fila de 2 columnas
   (NEO Ultra, posición 5 = impar → grid-column full-span + justify-self center) */
@media (min-width: 540px) and (max-width: 1099px) {
  .plans-grid>.plan-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc((100% - var(--sp-5)) / 2);
    justify-self: center;
    width: 100%;
  }
}

/* Plans section — Neo sits absolute at bottom-left of the section */
.plans-wrapper {
  position: relative;
}

.plans-neo-deco {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 28px rgba(13, 27, 75, .20));
  z-index: 1;
}

@media (min-width: 1100px) {
  .plans-neo-deco {
    display: block;
  }
}

@media (min-width: 1300px) {
  .plans-neo-deco {
    width: 380px;
  }
}

/* Section needs position relative for Neo absolute anchor */
#planes {
  position: relative;
  overflow: hidden;
}

/* Container padding shifts plans right to sit next to Neo */
@media (min-width: 1100px) {
  #planes .container {
    padding-left: 300px;
  }
}

@media (min-width: 1300px) {
  #planes .container {
    padding-left: 80px;
  }
}

.plan-card {
  position: relative;
  background: var(--grad-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  outline: 3px solid transparent;
  outline-offset: 2px;
  transition:
    transform var(--slow) var(--ease),
    box-shadow var(--slow) var(--ease),
    border-color var(--slow) var(--ease),
    outline-color var(--slow) var(--ease);
}

/* Dark gradient overlay — hidden by default, fades in on hover for ALL cards.
   z-index: 0 keeps it in the stacking flow (above card bg, below z:1 children). */
.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  opacity: 0;
  transition: opacity var(--slow) var(--ease);
  pointer-events: none;
  z-index: 0;
}

/* All direct card children must sit ABOVE the ::after overlay (z:0) */
.plan-card>* {
  position: relative;
  z-index: 1;
}

/* Featured plan: distinguished by border + glow only. Light bg by default. */
.plan-card--featured {
  border-color: #4f46e5;
  border-width: 3px;
  box-shadow: 0 8px 40px rgba(79, 70, 229, .18), var(--shadow-md);
  outline-color: transparent;
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
}

/* NEO Basic — Más elegido (naranja, plan estrella) */
.plan-card__badge--elegido {
  background: var(--grad-badge);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 159, 28, .45);
}

/* NEO Plus — TV incluida (verde éxito) */
.plan-card__badge--tv {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(52, 199, 89, .35);
}

/* NEO Ultra — Todo incluido (azul premium) */
.plan-card__badge--todo-incluido {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 52, 131, .40);
}

/* NEO Estándar — Ideal para hogares (azul sutil) */
.plan-card__badge--hogar {
  background: linear-gradient(90deg, #3a5abf 0%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 52, 131, .25);
}

.plan-card__name {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--sp-3);
  transition: color var(--slow) var(--ease);
}

.plan-card__speed {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--color-text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: var(--sp-1);
  transition: color var(--slow) var(--ease);
}

.plan-card__speed-unit {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  transition: color var(--slow) var(--ease);
}

.plan-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 20%, var(--color-border) 80%, transparent 100%);
  margin: var(--sp-5) 0;
  transition: background var(--slow) var(--ease);
}

.plan-card__price {
  margin-bottom: var(--sp-5);
}

.plan-card__price-amount {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-text);
  letter-spacing: -.03em;
  line-height: 1;
  transition: color var(--slow) var(--ease);
}

.plan-card__price-period {
  font-size: var(--text-xs);
  color: #9CA3AF;
  margin-top: var(--sp-1);
  transition: color var(--slow) var(--ease);
}

.plan-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: #9CA3AF;
  line-height: var(--lh-snug);
  transition: color var(--slow) var(--ease);
}

.plan-card__feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
  transition: color var(--slow) var(--ease);
}

.plan-card__cta {
  margin-top: auto;
}

/* Featured card CTA: btn-white rendered as solid primary on light bg */
.plan-card--featured .btn-white {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ────────────────────────────────────────────────────────────
   10b. PLAN CARDS — HOVER
   Gradient bg activates on hover; all child text transitions to white.
──────────────────────────────────────────────────────────── */
@media (hover: hover) {
  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(13, 27, 75, .30);
    border-color: var(--color-primary);
    z-index: 2;
  }

  /* Activate the dark-blue gradient overlay on hover */
  .plan-card:hover::after {
    opacity: 1;
  }

  /* All text transitions to white as dark bg appears */
  .plan-card:hover .plan-card__name {
    color: rgba(255, 255, 255, .65);
  }

  .plan-card:hover .plan-card__speed {
    color: #fff;
  }

  .plan-card:hover .plan-card__speed-unit {
    color: rgba(255, 255, 255, .6);
  }

  .plan-card:hover .plan-card__price-amount {
    color: #fff;
  }

  .plan-card:hover .plan-card__price-period {
    color: rgba(255, 255, 255, .55);
  }

  .plan-card:hover .plan-card__feature {
    color: rgba(255, 255, 255, .78);
  }

  .plan-card:hover .plan-card__feature-icon {
    color: #6effa0;
  }

  .plan-card:hover .plan-card__lifestyle-tag {
    color: #fff;
  }

  .plan-card:hover .plan-card__lifestyle-sub {
    color: rgba(255, 255, 255, .65);
  }

  .plan-card:hover .plan-card__divider {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .18) 20%, rgba(255, 255, 255, .18) 80%, transparent 100%);
  }

  .plan-card:hover .plan-card__icon-wrap {
    background: rgba(255, 255, 255, .16);
    transform: scale(1.15) rotate(-5deg);
  }

  .plan-card:hover .plan-card__icon-wrap svg {
    color: #fff;
  }

  /* CTA button flips to white on hover dark bg */
  .plan-card:hover .btn-primary,
  .plan-card:hover .btn-white {
    background: #fff;
    color: var(--blue-dark);
    border-color: #fff;
  }

  /* Featured: keep indigo border accent on hover + STOP glow animation */
  .plan-card--featured:hover {
    border-color: #4f46e5;
    animation: none;
    /* critical: prevent glow keyframes overriding hover box-shadow */
  }
}

/* ────────────────────────────────────────────────────────────
   10c. PLAN CARDS — LIFESTYLE ICONS, TAGS & POPULAR FEATURED (v1.4)
──────────────────────────────────────────────────────────── */

/* Icon container — fixed 44×44px, clips any SVG that escapes CSS sizing */
.plan-card__icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(34, 52, 131, .07) 0%, rgba(107, 184, 231, .11) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
  transition:
    transform var(--slow) var(--ease),
    background var(--slow) var(--ease);
}

.plan-card__icon-wrap svg {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--color-primary);
  transition: color var(--slow) var(--ease);
}

/* Lifestyle tag */
.plan-card__lifestyle {
  margin-bottom: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.plan-card__lifestyle-tag {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: var(--lh-snug);
  transition: color var(--slow) var(--ease);
}

.plan-card__lifestyle-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  transition: color var(--slow) var(--ease);
}

/* Liga Pro card badge — NEO Ultra (Zapping gratis) */
.liga-pro-card-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(135deg, #14532d 0%, #166534 60%, #15803d 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(134, 239, 172, .25);
  margin-bottom: var(--sp-4);
}

.liga-pro-card-badge__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.liga-pro-card-badge__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #86efac;
}

.liga-pro-card-badge__sub {
  display: block;
  font-size: 0.68rem;
  color: rgba(134, 239, 172, .75);
  margin-top: 1px;
}

/* Brighten Liga Pro badge border on hover dark overlay */
@media (hover: hover) {
  .plan-card:hover .liga-pro-card-badge {
    border-color: rgba(134, 239, 172, .55);
  }
}

/* Zapping hint — plans with Zapping as available add-on */
.plan-card__zapping-hint {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: #16a34a;
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(22, 163, 74, .07);
  border-radius: var(--radius-sm);
  border-left: 2px solid #16a34a;
  margin-bottom: var(--sp-4);
  transition:
    color var(--slow) var(--ease),
    background var(--slow) var(--ease),
    border-color var(--slow) var(--ease);
}

.plan-card__zapping-price {
  margin-left: auto;
  font-weight: var(--fw-bold);
}

/* Green hint adapts to dark hover overlay */
@media (hover: hover) {
  .plan-card:hover .plan-card__zapping-hint {
    color: #86efac;
    background: rgba(22, 163, 74, .18);
    border-left-color: #4ade80;
  }
}

/* ── Liga Pro mini-badge — small pill at top of card (v1.7) ── */
.plan-card__liga-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px var(--sp-3);
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(22, 163, 74, .40);
  color: #16a34a;
  background: rgba(22, 163, 74, .06);
  align-self: flex-start;
  margin-bottom: var(--sp-5);
  transition:
    color var(--slow) var(--ease),
    background var(--slow) var(--ease),
    border-color var(--slow) var(--ease);
}

.plan-card__liga-badge--free {
  background: rgba(22, 163, 74, .12);
  border-color: rgba(22, 163, 74, .70);
  color: #15803d;
}

@media (hover: hover) {
  .plan-card:hover .plan-card__liga-badge {
    color: #86efac;
    background: rgba(74, 222, 128, .12);
    border-color: rgba(74, 222, 128, .45);
  }
}

/* Badge variant: Más Popular (indigo-violet) */
.plan-card__badge--popular {
  background: linear-gradient(90deg, #4f46e5 0%, #7c67f5 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, .45);
}

/* Glow-pulse animation for the featured/popular card */
@keyframes plan-popular-glow {

  0%,
  100% {
    box-shadow:
      0 8px 40px rgba(79, 70, 229, .18),
      0 0 0 0 rgba(79, 70, 229, .40);
  }

  50% {
    box-shadow:
      0 8px 40px rgba(79, 70, 229, .18),
      0 0 0 10px rgba(79, 70, 229, 0);
  }
}

.plan-card--featured {
  animation: plan-popular-glow 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .plan-card--featured {
    animation: none;
  }
}

/* Desktop 5-col grid: featured card slightly larger than siblings */
@media (min-width: 1100px) {
  .plan-card--featured {
    transform: scale(1.04);
    z-index: 3;
  }
}

/* Desktop hover on featured: keep indigo border + scale prominence + lift */
@media (min-width: 1100px) and (hover: hover) {
  .plan-card--featured:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 28px 76px rgba(79, 70, 229, .28);
    border-color: #4f46e5;
    animation: none;
  }
}

/* ────────────────────────────────────────────────────────────
   10d. TECH SPECS — Glassmorphism dark grid (v3.9)
──────────────────────────────────────────────────────────── */

/* Dark section wrapper */
.section--tech-dark {
  background-color: #0a1540;
  /* fallback for older browsers */
  background: linear-gradient(160deg, #080f2e 0%, #0a1540 50%, #0d1b4b 100%);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
}

/* Override section-header text colors inside dark section */
.section--tech-dark .section-label {
  color: rgba(107, 184, 231, .80);
  background: rgba(107, 184, 231, .10);
  border-color: rgba(107, 184, 231, .20);
}

.section--tech-dark .section-title {
  color: #fff;
}

/* Grid */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 540px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Glassmorphism card */
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-8) var(--sp-6);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(107, 184, 231, .14);
  border-radius: 20px;
  transition:
    transform .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
}

@media (hover: hover) {
  .spec-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, .55);
    box-shadow:
      0 0 0 1px rgba(255, 159, 28, .18),
      0 16px 40px rgba(0, 0, 0, .35);
  }

  .spec-item:hover .spec-item__icon {
    background: rgba(255, 159, 28, .22);
    box-shadow: 0 0 16px rgba(255, 159, 28, .30);
  }
}

/* Icon circle — orange NeoNet color */
.spec-item__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255, 159, 28, .14);
  border: 1px solid rgba(255, 159, 28, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-promo);
  transition:
    background .25s var(--ease),
    box-shadow .25s var(--ease);
}

.spec-item__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.spec-item__title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--lh-snug);
}

.spec-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* ────────────────────────────────────────────────────────────
   11. FEATURES / ICON GRID
──────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 540px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: #fff;
}

.feature-card__title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* ────────────────────────────────────────────────────────────
   12. COVERAGE SECTION
──────────────────────────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 540px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .cities-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.city-card {
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  text-align: center;
  transition: border-color var(--normal) var(--ease), transform var(--normal) var(--ease);
}

.city-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.city-card--highlight {
  border-color: var(--blue);
  background: linear-gradient(145deg, #f0f4ff 0%, #fff 100%);
}

.city-card__name {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.city-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-3);
}

.city-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* ────────────────────────────────────────────────────────────
   13. CTA BAND
──────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--grad-hero);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(107, 184, 231, .14) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  color: #fff;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-black);
  margin-bottom: var(--sp-4);
}

.cta-band__subtitle {
  color: rgba(255, 255, 255, .72);
  font-size: var(--text-md);
  margin-bottom: var(--sp-8);
  max-width: 520px;
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   14. TESTIMONIALS
──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--fw-semi);
  font-size: var(--text-sm);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ────────────────────────────────────────────────────────────
   15. FOOTER
──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, .65);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: var(--sp-12);
  }
}

/* — Col brand ——————————————————————————— */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--sp-4);
  line-height: 0;
}

.footer-logo-img {
  width: 130px;
  height: auto;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .45);
  margin-bottom: var(--sp-6);
}

.footer-schedule {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-schedule__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: var(--sp-1);
}

.footer-schedule__row {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .58);
  line-height: var(--lh-snug);
}

/* — Col title ——————————————————————————— */
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: var(--sp-5);
}

/* — City list ——————————————————————————— */
.footer-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-city-list li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .58);
  padding-left: var(--sp-4);
  position: relative;
}

.footer-city-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(107, 184, 231, .45);
}

/* — Social links ————————————————————————— */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}

.footer-social-link svg {
  flex-shrink: 0;
  transition: color var(--fast) var(--ease);
}

.footer-social-link:hover {
  color: var(--blue-light);
}

/* — Bottom bar ——————————————————————————— */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .3);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-legal-nav a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}

.footer-legal-nav a:hover {
  color: rgba(255, 255, 255, .75);
}

.footer-legal-nav span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .18);
}

/* ────────────────────────────────────────────────────────────
   16. WHATSAPP FLOAT BUTTON
──────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

.whatsapp-float:active {
  transform: scale(.95);
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  color: #fff;
  flex-shrink: 0;
}

/* Tooltip */
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #fff;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--normal) var(--ease), transform var(--normal) var(--ease);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-width: 0;
  border-left-color: #fff;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   17. CONFIGURADOR / COTIZADOR
──────────────────────────────────────────────────────────── */
.configurador {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  max-width: 760px;
  margin-inline: auto;
}

.configurador__step-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-2);
}

.configurador__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
}

.configurador__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

@media (min-width: 540px) {
  .configurador__options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.config-option {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  cursor: pointer;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
  background: #fff;
}

.config-option:hover {
  border-color: var(--blue-light);
}

.config-option.selected {
  border-color: var(--blue);
  background: #f0f4ff;
}

.config-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.config-option__name {
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}

.config-option__speed {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.config-option__price {
  margin-top: var(--sp-2);
  font-size: var(--text-md);
  font-weight: var(--fw-black);
  color: var(--blue);
}

.configurador__addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #fff;
  transition: border-color var(--fast) var(--ease);
  margin-bottom: var(--sp-3);
}

.configurador__addon-row:hover {
  border-color: var(--blue-light);
}

.configurador__addon-row.selected {
  border-color: var(--blue);
  background: #f0f4ff;
}

.configurador__addon-row input {
  display: none;
}

.configurador__addon-name {
  font-weight: var(--fw-semi);
  font-size: var(--text-sm);
}

.configurador__addon-price {
  font-weight: var(--fw-black);
  color: var(--green);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.configurador__result {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  color: #fff;
  margin-top: var(--sp-6);
}

.configurador__result-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: var(--sp-2);
}

.configurador__result-price {
  font-size: 2.8rem;
  font-weight: var(--fw-black);
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.configurador__result-note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .5);
  margin-bottom: var(--sp-5);
}

/* CTA inside result card always fills the width */
.configurador__result .btn {
  width: 100%;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   18. BADGES & TAGS
──────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.badge-blue {
  background: rgba(34, 52, 131, .1);
  color: var(--blue);
}

.badge-green {
  background: rgba(52, 199, 89, .12);
  color: #1a9e40;
}

.badge-orange {
  background: rgba(255, 159, 28, .15);
  color: #c47a00;
}

.badge-gray {
  background: rgba(173, 173, 173, .18);
  color: #5a5a5a;
}

/* ────────────────────────────────────────────────────────────
   19. UTILITIES
──────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-auto {
  margin-top: auto;
}

.mt-2 {
  margin-top: var(--sp-2);
}

.mt-4 {
  margin-top: var(--sp-4);
}

.mt-8 {
  margin-top: var(--sp-8);
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-6 {
  margin-bottom: var(--sp-6);
}

.mb-8 {
  margin-bottom: var(--sp-8);
}

.gap-3 {
  gap: var(--sp-3);
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────────────
   20. SCROLL OFFSET (fixed header compensation)
──────────────────────────────────────────────────────────── */
[id] {
  scroll-margin-top: calc(var(--header-h) + var(--sp-4));
}

/* ────────────────────────────────────────────────────────────
   21. FOCUS STYLES (accessibility)
──────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ────────────────────────────────────────────────────────────
   22. SCROLLBAR (optional polish, webkit)
──────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a8a8a;
}

/* ────────────────────────────────────────────────────────────
   23. PAGE HERO (páginas internas)
──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 30%, rgba(107, 184, 231, .10) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: var(--fw-black);
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.page-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: rgba(255, 255, 255, .7);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-snug);
}

/* ────────────────────────────────────────────────────────────
   23b. PLANES PAGE — HERO ESTADIO · Neo Tri · Liga Badges (v1.9)
──────────────────────────────────────────────────────────── */

/* Hero modifier: left-align, clip floodlight to section bounds */
.page-hero--planes {
  text-align: left;
  overflow: hidden;
  padding-bottom: 0;
  /* Mobile default: solid gradient (estado-movil.webp para mobile) */
  background:
    linear-gradient(160deg, rgba(8, 15, 46, .80) 0%, rgba(13, 27, 75, .70) 55%, rgba(8, 15, 46, .65) 100%),
    url('/public/images/hero/estado-movil.webp') center top / cover no-repeat;
}

/* Desktop only: horizontal stadium photo */
@media (min-width: 640px) {
  .page-hero--planes {
    background:
      linear-gradient(100deg, rgba(8, 15, 46, .82) 0%, rgba(13, 27, 75, .60) 55%, rgba(8, 15, 46, .30) 100%),
      url('/public/images/hero/estadio.webp') center / cover no-repeat;
  }
}

/* Floodlight beams: pure CSS radial gradients, zero HTTP requests */
.planes-hero__floodlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* Main warm spotlight from top-right (behind mascot) */
    radial-gradient(ellipse 55% 90% at 88% -10%, rgba(255, 214, 90, .22) 0%, transparent 55%),
    /* Secondary tight beam */
    radial-gradient(ellipse 30% 60% at 98% 5%, rgba(255, 255, 200, .13) 0%, transparent 45%),
    /* Warm glow pool behind Neo's body */
    radial-gradient(ellipse 45% 55% at 78% 55%, rgba(255, 180, 30, .10) 0%, transparent 58%),
    /* Floor scatter light / crowd glow at bottom-right */
    radial-gradient(ellipse 70% 35% at 72% 105%, rgba(255, 150, 20, .09) 0%, transparent 50%),
    /* Left subtle blue counter-light */
    radial-gradient(ellipse 28% 38% at 8% 0%, rgba(107, 184, 231, .07) 0%, transparent 40%);
}

/* Container and content must sit above the floodlight layer */
.planes-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--sp-6);
}

@media (min-width: 640px) {
  .planes-hero {
    grid-template-columns: 1fr 200px;
  }
}

@media (min-width: 1100px) {
  .planes-hero {
    grid-template-columns: 1fr 320px;
    gap: var(--sp-8);
  }
}

.planes-hero__content {
  padding-bottom: var(--sp-12);
  min-width: 0;
  /* prevent grid cell overflow */
}

@media (min-width: 640px) {
  .planes-hero__content {
    padding-bottom: var(--sp-16);
  }
}

/* Promo Abril badge — amarillo vibrante sobre azul (v4.0) */
.planes-hero__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  color: #0a1540;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px var(--sp-4);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(251, 191, 36, .45);
  margin-bottom: var(--sp-3);
  max-width: 100%;
  flex-wrap: wrap;
}

.planes-hero__subtitle strong {
  color: #fff;
  font-weight: var(--fw-black);
}

.planes-hero__title {
  font-size: clamp(var(--text-2xl), 5.5vw, 52px);
  font-weight: var(--fw-black);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: var(--sp-4) 0 var(--sp-3);
}

.planes-hero__title em {
  font-style: normal;
  color: var(--color-promo);
}

.planes-hero__subtitle {
  font-size: clamp(var(--text-sm), 2vw, var(--text-md));
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-5);
}

.planes-hero__liga {
  margin-bottom: var(--sp-6);
}

/* ── Liga Pro pill: kept for potential reuse elsewhere ── */
.liga-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(90deg, #14532d 0%, #166534 100%);
  color: #bbf7d0;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(134, 239, 172, .25);
  box-shadow: 0 4px 14px rgba(22, 101, 52, .30);
}

/* ── Liga badge: pill + logos row (v1.9) ── */
.liga-badge {
  display: inline-flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: linear-gradient(90deg, #14532d 0%, #166534 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(134, 239, 172, .25);
  box-shadow: 0 4px 14px rgba(22, 101, 52, .30);
  padding: var(--sp-3) var(--sp-4);
  max-width: 100%;
  /* no overflow on mobile */
  box-sizing: border-box;
}

.liga-badge__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* allow wrapping on narrow screens */
  gap: var(--sp-2);
  color: #bbf7d0;
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.liga-badge__logos {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255, 255, 255, .10);
  border-radius: var(--radius-sm);
  padding: 4px var(--sp-2);
}

.liga-badge__logos img {
  height: 16px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  display: block;
  /* Show logos in white so they're readable on dark green */
  filter: brightness(0) invert(1);
  opacity: .90;
}

.liga-badge__logos-sep {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

.planes-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Neo mascota: hidden on small, visible from 640px */
.planes-hero__visual {
  display: none;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

@media (min-width: 640px) {
  .planes-hero__visual {
    display: flex;
  }
}

.planes-hero__neo {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  /* Neo glows slightly from the stadium lights */
  filter:
    drop-shadow(0 0 28px rgba(255, 210, 60, .35)) drop-shadow(0 16px 32px rgba(0, 0, 0, .40));
  animation: neo-planes-float 5s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes neo-planes-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .planes-hero__neo {
    animation: none;
  }
}

──────────────────────────────────────────────────────────── */ .compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: var(--sp-4);
  /* Scroll shadow hint: shows user there's content to the right */
  background:
    linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(255, 255, 255, 0), #fff 70%) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(34, 52, 131, .12), transparent),
    radial-gradient(farthest-side at 100% 50%, rgba(34, 52, 131, .12), transparent) 100% 0;
  background-repeat: no-repeat;
  background-size: 48px 100%, 48px 100%, 16px 100%, 16px 100%;
  background-attachment: local, local, scroll, scroll;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: var(--text-sm);
}

/* Mobile: reduce padding and font so columns breathe more */
@media (max-width: 639px) {
  .compare-table {
    font-size: 0.70rem;
    min-width: 0;
    width: 100%;
  }

  /* Hide Velocidad column — already shown in plan cards above */
  .compare-table thead th:nth-child(2),
  .compare-table tbody td:nth-child(2) {
    display: none;
  }

  .compare-table thead th,
  .compare-table td {
    padding: var(--sp-2) var(--sp-2);
  }

  .compare-table__cell-plan {
    min-width: 80px;
  }

  .compare-table__cell-plan strong {
    font-size: 0.70rem;
  }

  .compare-table__badge {
    font-size: 9px;
    padding: 1px 6px;
    letter-spacing: .04em;
  }

  .compare-table__speed {
    font-size: 0.70rem;
  }

  .compare-table__cell-price {
    font-size: 0.70rem;
  }

  .compare-table thead th {
    font-size: 9px;
    letter-spacing: .04em;
    padding: var(--sp-2) var(--sp-2);
  }
}

.compare-table thead {
  background: var(--blue-dark);
  color: #fff;
}

.compare-table thead th {
  padding: var(--sp-4) var(--sp-5);
  font-weight: var(--fw-bold);
  font-size: var(--text-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--fast) var(--ease);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: #f5f7ff;
}

.compare-table__row--featured {
  background: linear-gradient(90deg, #f0f4ff 0%, #fff 100%);
}

.compare-table__row--featured:hover {
  background: #e8eeff;
}

.compare-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  color: var(--color-text);
  vertical-align: middle;
}

.compare-table__cell-plan {
  text-align: left !important;
  min-width: 140px;
}

.compare-table__cell-plan strong {
  display: block;
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
}

.compare-table__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--fw-black);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-1);
}

.compare-table__badge--elegido {
  background: var(--orange);
  color: #fff;
}

.compare-table__badge--tv {
  background: var(--green);
  color: #fff;
}

.compare-table__badge--todo-incluido {
  background: var(--blue);
  color: #fff;
}

.compare-table__speed {
  font-weight: var(--fw-black);
  font-size: var(--text-base);
  color: var(--blue);
}

.compare-table__cell-price {
  font-weight: var(--fw-semi);
  font-size: var(--text-sm);
}

.compare-table__free {
  display: inline-block;
  background: rgba(52, 199, 89, .12);
  color: #1a9e40;
  font-weight: var(--fw-black);
  font-size: var(--text-xs);
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.compare-table__na {
  color: var(--color-text-light);
}

.compare-table__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}

/* ────────────────────────────────────────────────────────────
   25. FAQ ACCORDION
──────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--fast) var(--ease);
}

.faq-item--open {
  border-color: var(--blue-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-base);
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-text);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}

.faq-question:hover {
  background: var(--color-surface);
  color: var(--blue);
}

.faq-item--open .faq-question {
  color: var(--blue);
  background: #f5f7ff;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--normal) var(--ease);
}

.faq-item--open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
  background: #f5f7ff;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

.faq-answer[hidden] {
  display: none;
}

/* ────────────────────────────────────────────────────────────
   26. COVERAGE PAGE
──────────────────────────────────────────────────────────── */

/* City card as interactive button (override for <button> element) */
button.city-card {
  text-align: left;
  width: 100%;
}

/* --- Tab navigation --- */
.coverage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--sp-8);
}

.coverage-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-text-muted);
  background: transparent;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 2px solid transparent;
  border-bottom: none;
  cursor: pointer;
  position: relative;
  bottom: -2px;
  transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.coverage-tab-btn:hover {
  color: var(--blue);
  background: rgba(34, 52, 131, .04);
}

.coverage-tab-btn.is-active {
  color: var(--blue);
  font-weight: var(--fw-bold);
  background: #fff;
  border-color: var(--color-border);
}

/* Coverage type chip inside tab button */
.coverage-tab-chip {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.coverage-tab-chip--total {
  background: rgba(52, 199, 89, .14);
  color: #1a9e3f;
}

.coverage-tab-chip--parcial {
  background: rgba(255, 159, 28, .14);
  color: #b86a00;
}

.coverage-tab-chip--provincial {
  background: rgba(34, 52, 131, .10);
  color: var(--blue);
}

/* --- Tab panels --- */
.coverage-panel {
  display: none;
}

.coverage-panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: start;
}

@media (min-width: 768px) {
  .coverage-panel.is-active {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .coverage-panel.is-active {
    grid-template-columns: 5fr 7fr;
  }
}

/* --- Info column --- */
.coverage-info__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.coverage-info__badge--total {
  background: rgba(52, 199, 89, .12);
  color: #1a9e3f;
  border: 1px solid rgba(52, 199, 89, .30);
}

.coverage-info__badge--parcial {
  background: rgba(255, 159, 28, .12);
  color: #b86a00;
  border: 1px solid rgba(255, 159, 28, .30);
}

.coverage-info__badge--provincial {
  background: rgba(34, 52, 131, .08);
  color: var(--blue);
  border: 1px solid rgba(34, 52, 131, .20);
}

.coverage-info__city {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: var(--fw-black);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
}

.coverage-info__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-5);
}

.coverage-info__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: rgba(34, 52, 131, .04);
  border-left: 3px solid var(--blue-light);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

.coverage-info__items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.coverage-info__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.coverage-info__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.coverage-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* --- Map column --- */
.coverage-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  min-height: 360px;
  box-shadow: var(--shadow-md);
}

.coverage-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  display: block;
}

.coverage-map-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(13, 27, 75, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   27. CONTACT PAGE
──────────────────────────────────────────────────────────── */

/* Channel cards */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 600px) {
  .contact-channels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-channel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  transition: transform var(--normal) var(--ease), box-shadow var(--normal) var(--ease), border-color var(--normal) var(--ease);
}

a.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.contact-channel--wa {
  border-color: #25D366;
}

a.contact-channel--wa:hover {
  border-color: #1ebe5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .18);
}

.contact-channel__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel__icon--wa {
  background: #25D366;
  color: #fff;
}

.contact-channel__icon--email {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
}

.contact-channel__icon--hours {
  background: rgba(255, 159, 28, .12);
  color: var(--orange);
  border: 1px solid rgba(255, 159, 28, .25);
}

.contact-channel__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-channel__value {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-text);
}

.contact-channel__sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* Two-column layout: info/map + form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .contact-layout {
    grid-template-columns: 5fr 7fr;
  }
}

/* Info sidebar */
.contact-info__heading {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}

.contact-info__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-6);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.contact-info-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(34, 52, 131, .07);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* Form card */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.contact-form-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.contact-form-card__sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
  line-height: var(--lh-snug);
}

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-text);
}

.form-label .required {
  color: #e03d3d;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-base);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34, 52, 131, .10);
  background: #fff;
}

.form-control.is-invalid {
  border-color: #e03d3d;
  box-shadow: 0 0 0 3px rgba(224, 61, 61, .08);
}

.form-error {
  font-size: var(--text-xs);
  color: #e03d3d;
  display: none;
}

/* Show error message when sibling input is invalid (:has support is broad in 2026) */
.form-group:has(.form-control.is-invalid) .form-error {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .form-row .form-group {
    margin-bottom: 0;
  }
}

textarea.form-control {
  resize: vertical;
  min-height: 96px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ADADAD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-submit-wrap {
  margin-top: var(--sp-2);
}

.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--sp-3);
  line-height: var(--lh-snug);
  text-align: center;
}

/* ────────────────────────────────────────────────────────────
   28. TESTIMONIOS PAGE
──────────────────────────────────────────────────────────── */

/* Featured testimonial */
.testimonial-featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative quote mark */
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -32px;
  left: var(--sp-6);
  font-size: 11rem;
  font-weight: var(--fw-black);
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-featured__stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  margin-bottom: var(--sp-5);
}

.testimonial-featured__text {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-weight: var(--fw-semi);
  line-height: var(--lh-snug);
  color: #fff;
  margin-bottom: var(--sp-6);
  max-width: 720px;
}

.testimonial-featured__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-featured__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}

.testimonial-featured__name {
  font-weight: var(--fw-bold);
  color: #fff;
  font-size: var(--text-base);
}

.testimonial-featured__city {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .65);
  margin-top: 2px;
}

/* Trust block */
.trust-block {
  text-align: center;
}

.trust-block__title {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--sp-6);
}

.trust-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.trust-city-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  background: rgba(34, 52, 131, .07);
  border: 1px solid rgba(34, 52, 131, .14);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--blue);
}

.trust-city-chip svg {
  color: var(--green);
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ────────────────────────────────────────────────────────────
   29. NEONET MÓVIL · LEGAL PAGES · DELETE ACCOUNT · ARCOTEL
──────────────────────────────────────────────────────────── */

/* ── Shared utilities ─────────────────────────────────────── */
.link-inline {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.link-inline:hover {
  color: var(--color-accent);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-list li {
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
  color: var(--gray-600);
}

.legal-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: .8em;
  top: .15em;
}

/* ── NeoNet Móvil — app download block ───────────────────── */
.app-download-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .app-download-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.app-download-block__mockup {
  display: flex;
  justify-content: center;
}

.app-download-block__mockup img {
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.app-download-block__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-download-block__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.25;
}

.app-download-block__desc {
  color: var(--gray-600);
  line-height: 1.7;
}

.app-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 160px;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.btn-store--android {
  background: #1a1a1a;
  color: #fff;
}

.btn-store--ios {
  background: #1a1a1a;
  color: #fff;
}

.btn-store__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.btn-store__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-store__small {
  font-size: .65rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.btn-store__big {
  font-size: .95rem;
  font-weight: var(--fw-semi);
}

/* ── NeoNet Móvil — feature grid ─────────────────────────── */
.app-features-section {
  background: var(--gray-100);
  padding: 5rem 0;
}

.app-features-section .section-header {
  margin-bottom: 3rem;
}

.app-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .app-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.app-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.app-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.app-feature-card__title {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  color: var(--color-primary);
}

.app-feature-card__desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── NeoNet Móvil — legal / resolution block ─────────────── */
.app-legal-section {
  padding: 4rem 0;
}

.app-legal-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .app-legal-block {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.app-legal-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.app-legal-item__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-500);
  font-weight: var(--fw-semi);
}

.app-legal-item__value {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.app-legal-item__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.app-legal-item__link:hover {
  color: var(--color-accent);
}

/* ── Legal pages layout (terminos) ───────────────────────── */
.legal-page-section {
  padding: 4rem 0 6rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    gap: 4rem;
  }
}

/* TOC sidebar */
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

.legal-toc__title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  font-weight: var(--fw-semi);
  margin-bottom: 1rem;
}

.legal-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-toc__link {
  display: block;
  padding: .35rem .5rem;
  font-size: .875rem;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: calc(var(--radius) / 2);
  transition: background var(--transition), color var(--transition);
}

.legal-toc__link:hover {
  background: var(--white);
  color: var(--color-primary);
}

/* Body */
.legal-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section__num {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  font-weight: var(--fw-semi);
  margin-bottom: .4rem;
}

.legal-section__title {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.legal-section__body {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── Delete account page ──────────────────────────────────── */
.delete-page-section {
  padding: 4rem 0 6rem;
}

.delete-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .delete-layout {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
  }
}

.delete-steps-block__heading {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: .6rem;
}

.delete-steps-block__intro {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.delete-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.delete-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--gray-200);
}

.delete-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  position: relative;
}

.delete-step:last-child {
  padding-bottom: 0;
}

.delete-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: .85rem;
  z-index: 1;
}

.delete-step__content {
  padding-top: .5rem;
}

.delete-step__title {
  font-weight: var(--fw-semi);
  color: var(--color-primary);
  margin-bottom: .35rem;
}

.delete-step__desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.delete-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
}

.delete-cta__note {
  font-size: .8rem;
  color: var(--gray-500);
}

/* Notice sidebar */
.delete-notice-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.delete-notice {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.delete-notice--warning {
  background: #fff8ed;
  border-left: 4px solid var(--color-promo);
}

.delete-notice--info {
  background: #eef5fb;
  border-left: 4px solid var(--color-accent);
}

.delete-notice--security {
  background: #edf7ef;
  border-left: 4px solid var(--color-success);
}

.delete-notice__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.delete-notice__title {
  font-size: .95rem;
  font-weight: var(--fw-semi);
  color: var(--gray-800);
}

.delete-notice__text {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.delete-notice__help {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: .25rem;
}

/* ── Arcotel page ─────────────────────────────────────────── */
.arcotel-page-section {
  padding: 4rem 0 6rem;
}

.arcotel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .arcotel-layout {
    grid-template-columns: 1fr 300px;
    gap: 4rem;
  }
}

.arcotel-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.arcotel-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.arcotel-block__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.arcotel-block__title {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: .75rem;
}

.arcotel-block__text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.arcotel-block__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: var(--fw-semi);
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.arcotel-block__link:hover {
  color: var(--color-accent);
}

/* Sidebar */
.arcotel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.arcotel-sidebar__card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

.arcotel-sidebar__card--contact {
  background: var(--color-primary);
  color: var(--white);
}

.arcotel-sidebar__title {
  font-size: .95rem;
  font-weight: var(--fw-bold);
  margin-bottom: .75rem;
}

.arcotel-sidebar__card--contact .arcotel-sidebar__title {
  color: var(--white);
}

.arcotel-sidebar__desc {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.arcotel-sidebar__card--contact .arcotel-sidebar__desc {
  color: rgba(255, 255, 255, .8);
}

.arcotel-resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.arcotel-resource-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--color-primary);
  text-decoration: none;
  padding: .4rem .5rem;
  border-radius: calc(var(--radius) / 2);
  transition: background var(--transition), color var(--transition);
}

.arcotel-resource-link:hover {
  background: var(--white);
  color: var(--color-accent);
}

.arcotel-resource-link svg {
  flex-shrink: 0;
  opacity: .6;
}

/* ────────────────────────────────────────────────────────────
   30. HOME PAGE ENHANCEMENTS (inicio.php only)
──────────────────────────────────────────────────────────── */

/* — Hero plan-card badge: subtle pulse glow — */
@keyframes planBadgePulse {

  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 159, 28, .14);
  }
}

.hero__plan-badge {
  animation: planBadgePulse 3.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__plan-badge {
    animation: none;
  }
}

/* — Cotizador: tagline + step circles — */
.configurador__tagline {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
}

.configurador__tagline svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.configurador__step-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.configurador__step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-weight: var(--fw-black);
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.configurador__step-header .configurador__step-label {
  margin-bottom: 0;
}

/* Result: bigger price + IVA note */
.configurador__result-price {
  font-size: clamp(3.2rem, 6vw, 4.2rem) !important;
  line-height: 1 !important;
  margin-bottom: var(--sp-1) !important;
}

.configurador__result-iva {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

/* Micro-animation on option select */
@keyframes optionPop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(.97);
  }

  65% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.config-option.anim-select {
  animation: optionPop .28s cubic-bezier(.4, 0, .2, 1);
}

.configurador__addon-row.anim-select {
  animation: optionPop .28s cubic-bezier(.4, 0, .2, 1);
}

/* — Cobertura: commercial phrase — */
.section-commercial {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-primary);
  margin: calc(-1 * var(--sp-2)) 0 var(--sp-4);
}

/* — City cards: icon + improved visual — */
.city-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: #fff;
  transition: transform var(--normal) var(--ease);
}

.city-card:hover .city-card__icon {
  transform: scale(1.1);
}

.city-card--highlight .city-card__icon {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

/* — Testimonials: featured card — */
.testimonial-card--featured {
  background: var(--grad-hero);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.testimonial-card--featured::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .07);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 255, 255, .9);
  font-size: var(--text-base);
  line-height: var(--lh-snug);
}

.testimonial-card--featured .testimonial-card__stars {
  color: var(--orange);
}

.testimonial-card--featured .testimonial-card__name {
  color: #fff;
  font-weight: var(--fw-bold);
}

.testimonial-card--featured .testimonial-card__location {
  color: rgba(255, 255, 255, .55);
}

.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .3);
}

.testimonial-card:not(.testimonial-card--featured) {
  transition:
    transform var(--normal) var(--ease),
    box-shadow var(--normal) var(--ease);
}

@media (hover: hover) {
  .testimonial-card:not(.testimonial-card--featured):hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

/* — Scroll reveal: stagger support — */
.reveal-stagger {
  transition-delay: var(--reveal-delay, 0ms);
}