/* =========================================================
   HFC - Sistema de Telecomunicaciones
   Diseño: hogar moderno · Logo protagonista
   Paleta: 100% azul del logo (sin acentos ajenos)
   ========================================================= */

:root {
  /* === Paleta del logo (única) === */
  --hfc-blue:        #4A7AB5;  /* azul logo */
  --hfc-blue-dark:   #2E5285;  /* azul medio */
  --hfc-blue-darker: #1F3A5F;  /* azul profundo */
  --hfc-blue-deep:   #0F1E33;  /* casi negro azul */
  --hfc-blue-bright: #6B97C9;  /* azul claro vivo (deriva del logo) */
  --hfc-sky:         #B8D4E8;  /* azul cielo */
  --hfc-sky-soft:    #DCE8F2;  /* cielo suave */
  --hfc-ice:         #E8F2FA;  /* hielo */
  --hfc-pale:        #F5F9FD;  /* fondo casi blanco */
  --hfc-white:       #FFFFFF;

  /* === Texto y soporte === */
  --hfc-text:    #1F3A5F;
  --hfc-muted:   #6B7B95;
  --hfc-mutedl:  #94A3B8;
  --hfc-border:  #E5ECF4;
  --hfc-success: #10B981;
  --hfc-warning: #F59E0B;
  --hfc-danger:  #EF4444;

  /* === Gradientes solo en azul === */
  --grad-bg-light:  linear-gradient(180deg, #FFFFFF 0%, #F5F9FD 100%);
  --grad-blue:      linear-gradient(135deg, #4A7AB5 0%, #2E5285 100%);
  --grad-blue-soft: linear-gradient(135deg, #6B97C9 0%, #4A7AB5 100%);
  --grad-deep:      linear-gradient(135deg, #2E5285 0%, #1F3A5F 60%, #0F1E33 100%);
  --grad-featured:  linear-gradient(135deg, #1F3A5F 0%, #2E5285 50%, #4A7AB5 100%);
  --grad-card:      linear-gradient(160deg, #FFFFFF 0%, #F5F9FD 100%);
  --grad-card-blue: linear-gradient(160deg, #DCE8F2 0%, #B8D4E8 100%);

  /* === Sombras === */
  --shadow-xs:    0 1px 3px rgba(31, 58, 95, 0.06);
  --shadow-sm:    0 6px 18px rgba(31, 58, 95, 0.08);
  --shadow-md:    0 14px 32px rgba(31, 58, 95, 0.12);
  --shadow-lg:    0 28px 60px rgba(31, 58, 95, 0.18);
  --shadow-glow:  0 14px 32px rgba(74, 122, 181, 0.32);
  --shadow-deep:  0 20px 50px rgba(15, 30, 51, 0.30);

  /* === Radios === */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;

  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --topbar-h: 38px;
  --header-h: 78px;
  --container: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h));
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hfc-text);
  background: var(--hfc-white);
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--hfc-blue); color: white; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--hfc-pale); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--hfc-white);
  color: var(--hfc-blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid var(--hfc-border);
  box-shadow: var(--shadow-xs);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hfc-blue);
  box-shadow: 0 0 0 4px rgba(74, 122, 181, 0.20);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--hfc-blue-darker);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--hfc-blue) 0%, var(--hfc-blue-darker) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  margin-top: 16px;
  color: var(--hfc-muted);
  font-size: 1.05rem;
  max-width: 660px;
}
.section-head:not(.section-head--left) .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--grad-blue); color: var(--hfc-white); box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(46, 82, 133, 0.42); }
.btn--solid {
  background: var(--hfc-blue-darker);
  color: white;
  box-shadow: 0 10px 28px rgba(31, 58, 95, 0.30);
}
.btn--solid:hover { transform: translateY(-3px); background: var(--hfc-blue-deep); }
.btn--outline {
  background: var(--hfc-white);
  color: var(--hfc-blue-dark);
  border-color: var(--hfc-blue);
}
.btn--outline:hover {
  background: var(--hfc-blue);
  color: var(--hfc-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--hfc-blue-darker);
  border-color: var(--hfc-border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--hfc-white); border-color: var(--hfc-blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
/* Mantener compatibilidad con clases viejas (si quedan en HTML) */
.btn--coral { background: var(--grad-blue); color: var(--hfc-white); box-shadow: var(--shadow-glow); }
.btn--coral:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(46, 82, 133, 0.42); }
.btn--whatsapp { background: #25D366; color: white; box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-3px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--hfc-blue-deep);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
}
.top-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(74,122,181,0.20) 100%);
  pointer-events: none;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.top-bar-left, .top-bar-right { display: flex; gap: 22px; align-items: center; }
.top-bar a { transition: color 0.2s var(--ease); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--hfc-sky); }
.top-bar i { color: var(--hfc-sky); font-size: 0.78rem; }
.top-bar .socials { display: flex; gap: 12px; }
.top-bar .socials a { font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--hfc-border);
  box-shadow: var(--shadow-sm);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--hfc-blue-darker);
  letter-spacing: 0.04em;
}
.brand-text small { font-size: 0.7rem; color: var(--hfc-muted); font-weight: 500; letter-spacing: 0.04em; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--hfc-text);
  border-radius: 100px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.main-nav a:hover { color: var(--hfc-blue-dark); background: var(--hfc-pale); }
.main-nav a.active {
  color: var(--hfc-white);
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--hfc-pale);
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--hfc-blue-dark); border-radius: 2px; transition: all 0.3s var(--ease); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Nav móvil: overlay a pantalla completa === */
.nav-mobile {
  display: none;                  /* oculto en escritorio */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--hfc-white);
  z-index: 200;                   /* encima del header (que es 100) */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);   /* recortado por la izquierda → no genera overflow */
  transition: clip-path 0.35s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0.35s;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -20px 0 40px rgba(15, 30, 51, 0.18);
}
.nav-mobile.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.35s var(--ease), opacity 0.25s var(--ease), visibility 0s;
}

/* Barra superior dentro del panel: brand + cerrar */
.nav-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hfc-border);
  flex-shrink: 0;
  height: var(--header-h);
  background: var(--hfc-white);
}
.nav-mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mobile-brand img { height: 42px; width: auto; }
.nav-mobile-brand strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--hfc-blue-darker);
  letter-spacing: 0.04em;
}
.nav-mobile-close {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--hfc-pale);
  color: var(--hfc-blue-darker);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-mobile-close:hover {
  background: var(--hfc-blue);
  color: white;
  transform: rotate(90deg);
}

/* Lista de enlaces (scrolleable si no caben) */
.nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-links a {
  display: block;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hfc-blue-darker);
  border-bottom: 1px solid var(--hfc-border);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.nav-mobile-links a:hover { color: var(--hfc-blue); padding-left: 10px; }
.nav-mobile-links a:last-child { border-bottom: 0; }

/* CTA fijo abajo */
.nav-mobile-cta {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--hfc-border);
  flex-shrink: 0;
  background: var(--hfc-pale);
}

/* =================================================================
   HERO LOGO-FIRST · El logo es el protagonista
================================================================= */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,212,232,0.65), transparent 60%),
    var(--grad-bg-light);
  text-align: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.7;
  animation: floatBlob 16s ease-in-out infinite;
}
.hero-blob--1 {
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(74, 122, 181, 0.25), transparent 70%);
}
.hero-blob--2 {
  bottom: -150px; left: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46, 82, 133, 0.22), transparent 70%);
  animation-direction: reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.10); }
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,122,181,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,122,181,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 75%);
  pointer-events: none;
}

/* Constelación de red telecom: enmarca el logo sin opacarlo */
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  /* Máscara radial: la red se ve solo en los bordes, NO en el centro donde está el logo */
  mask-image: radial-gradient(ellipse 30% 28% at 50% 45%, transparent 0%, transparent 50%, black 90%);
  -webkit-mask-image: radial-gradient(ellipse 30% 28% at 50% 45%, transparent 0%, transparent 50%, black 90%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

/* === LOGO PROTAGONISTA === */
.hero-logo-wrap {
  position: relative;
  width: clamp(240px, 34vw, 380px);
  aspect-ratio: 1.4 / 1;
  display: grid;
  place-items: center;
  margin: 24px auto 44px;
}
.hero-logo {
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(46, 82, 133, 0.35));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Aurora: mesh azul flotando lento detrás del logo (efecto premium tipo Stripe/Linear) */
.hero-aurora {
  position: absolute;
  inset: -50% -40%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 30%, rgba(74,122,181,0.42) 0%, transparent 38%),
    radial-gradient(circle at 72% 28%, rgba(184,212,232,0.35) 0%, transparent 38%),
    radial-gradient(circle at 75% 75%, rgba(46,82,133,0.32) 0%, transparent 40%),
    radial-gradient(circle at 25% 78%, rgba(107,151,201,0.28) 0%, transparent 38%);
  filter: blur(40px);
  border-radius: 50%;
  animation: auroraFlow 18s ease-in-out infinite;
  mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
}
@keyframes auroraFlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(18px, -14px) rotate(8deg) scale(1.05); }
  66%      { transform: translate(-16px, 16px) rotate(-6deg) scale(0.97); }
}

/* Halo principal — disco azul detrás del logo, sutilmente vivo */
.hero-halo {
  position: absolute;
  inset: -6% -4%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%,
    rgba(74,122,181,0.50) 0%,
    rgba(184,212,232,0.22) 42%,
    transparent 72%);
  filter: blur(24px);
  animation: pulseHalo 5s ease-in-out infinite;
  border-radius: 50%;
}
@keyframes pulseHalo {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* Pulsos de señal (efecto radar) — anillos azules expandiéndose */
.hero-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(74,122,181,0.55);
  z-index: 3;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  animation: pulseRadar 4s cubic-bezier(0, 0, 0.3, 1) infinite;
}
.hero-pulse--1 { animation-delay: 0s; }
.hero-pulse--2 { animation-delay: 1.3s; border-color: rgba(46,82,133,0.50); }
.hero-pulse--3 { animation-delay: 2.6s; border-color: rgba(107,151,201,0.50); }
@keyframes pulseRadar {
  0%   { transform: translate(-50%, -50%) scale(0.55); opacity: 0; border-width: 3px; }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.85); opacity: 0; border-width: 1px; }
}

/* Reflejo elíptico debajo del logo (efecto de "asienta" sobre superficie de luz) */
.hero-base {
  position: absolute;
  bottom: -8%;
  left: 12%; right: 12%;
  height: 28px;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(74,122,181,0.55) 0%,
    rgba(74,122,181,0.20) 40%,
    transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
}

/* === 3 service pills inline debajo del logo === */
.hero-services-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
}
.hsp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--hfc-border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hsp:hover {
  transform: translateY(-3px);
  border-color: var(--hfc-blue);
  box-shadow: var(--shadow-md);
}
.hsp-ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(74,122,181,0.30);
}
.hsp:nth-child(2) .hsp-ic { background: var(--grad-deep); box-shadow: 0 6px 14px rgba(31,58,95,0.30); }
.hsp:nth-child(3) .hsp-ic { background: var(--grad-blue-soft); box-shadow: 0 6px 14px rgba(107,151,201,0.30); }

.hsp-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.hsp-text strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--hfc-blue-darker);
  letter-spacing: -0.01em;
}
.hsp-text small { font-size: 0.72rem; color: var(--hfc-muted); font-weight: 500; }

/* === Pill, título, lead, CTAs === */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--hfc-white);
  color: var(--hfc-blue-dark);
  border: 1px solid var(--hfc-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hfc-blue);
  box-shadow: 0 0 0 4px rgba(74,122,181,0.22);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,122,181,0.22); }
  50% { box-shadow: 0 0 0 8px rgba(74,122,181,0.10); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--hfc-blue-darker);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--hfc-blue) 0%, var(--hfc-blue-darker) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%;
  bottom: -2px;
  height: 10px;
  background: var(--hfc-sky);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.55;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--hfc-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

/* === Trust strip === */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 30px;
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hfc-blue-darker);
  line-height: 1.2;
}
.trust-item small { display: block; font-size: 0.78rem; color: var(--hfc-muted); }
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--hfc-border);
}
.avs { display: flex; }
.avs span {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: white;
  border: 2px solid white;
  margin-left: -10px;
  box-shadow: var(--shadow-xs);
  background: var(--grad-blue);
}
.avs span:first-child { margin-left: 0; }
.avs span:nth-child(2) { background: var(--hfc-blue); }
.avs span:nth-child(3) { background: var(--hfc-blue-darker); }
.avs span:nth-child(4) { background: var(--hfc-white); color: var(--hfc-blue-dark); font-size: 1rem; border-color: var(--hfc-blue-bright); }
.trust-stars {
  background: var(--grad-blue);
  color: white;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
}
.trust-num {
  background: var(--grad-blue);
  color: white;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-glow);
}
.trust-num span { font-size: 0.7rem; font-weight: 600; opacity: 0.85; margin-left: 2px; }

/* =================================================================
   STICKER MARQUEE BAND
================================================================= */
.sticker-band {
  background: var(--hfc-blue-deep);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sticker-band::before, .sticker-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sticker-band::before { left: 0; background: linear-gradient(90deg, var(--hfc-blue-deep), transparent); }
.sticker-band::after { right: 0; background: linear-gradient(-90deg, var(--hfc-blue-deep), transparent); }
.sticker-marquee {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sticker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}
.sticker i {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--grad-blue);
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 6px 14px rgba(74, 122, 181, 0.30);
}
.sticker:nth-child(odd) i {
  background: var(--hfc-white);
  color: var(--hfc-blue-darker);
  box-shadow: 0 6px 14px rgba(255,255,255,0.20);
}

/* =================================================================
   SERVICIOS BENTO · Variación por shade de azul
================================================================= */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.srv {
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.srv:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.srv--internet { grid-column: span 3; grid-row: span 2; padding: 40px; background: var(--grad-deep); color: white; border: 0; }
.srv--tv       { grid-column: span 3; }
.srv--phone    { grid-column: span 3; }
.srv--support  { grid-column: span 3; background: var(--grad-card-blue); border: 0; }

.srv::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(circle, rgba(74,122,181,0.40), transparent 70%);
}
.srv:hover::before { opacity: 0.85; }
.srv--internet::before { background: radial-gradient(circle, rgba(184,212,232,0.40), transparent 70%); }

.srv-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}
.srv--internet .srv-icon {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.srv--support .srv-icon {
  background: var(--hfc-white);
  color: var(--hfc-blue-dark);
  box-shadow: var(--shadow-md);
}

.srv-tag {
  position: absolute;
  top: 32px; right: 32px;
  background: rgba(255,255,255,0.16);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.srv h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--hfc-blue-darker);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.srv--internet h3 { color: white; }
.srv p { color: var(--hfc-muted); margin-bottom: 22px; position: relative; z-index: 1; line-height: 1.65; }
.srv--internet p { color: rgba(255,255,255,0.85); font-size: 1.02rem; }
.srv--support p { color: var(--hfc-blue-darker); }
.srv-list { display: grid; gap: 10px; margin-bottom: 24px; position: relative; z-index: 1; }
.srv-list li { display: flex; gap: 10px; align-items: center; font-size: 0.92rem; font-weight: 500; color: var(--hfc-text); }
.srv--internet .srv-list li { color: rgba(255,255,255,0.92); }
.srv--support .srv-list li { color: var(--hfc-blue-darker); }
.srv-list li i {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex: 0 0 auto;
}
.srv--internet .srv-list li i {
  background: rgba(255,255,255,0.18);
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hfc-blue-dark);
  position: relative;
  z-index: 1;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.srv-link:hover { gap: 12px; color: var(--hfc-blue); }
.srv--internet .srv-link { color: var(--hfc-sky); }
.srv--internet .srv-link:hover { color: white; }

/* =================================================================
   TV CANALES · 4 categorías en distintos shades de azul
================================================================= */
.tv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tv-cat {
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tv-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tv-cat::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
}
/* Cada categoría usa una intensidad de azul distinta */
.tv-cat:nth-child(1)::before { background: radial-gradient(circle, rgba(74,122,181,0.40), transparent 70%); }
.tv-cat:nth-child(2)::before { background: radial-gradient(circle, rgba(46,82,133,0.40), transparent 70%); }
.tv-cat:nth-child(3)::before { background: radial-gradient(circle, rgba(107,151,201,0.40), transparent 70%); }
.tv-cat:nth-child(4)::before { background: radial-gradient(circle, rgba(31,58,95,0.40), transparent 70%); }

.tv-cat-head { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; position: relative; z-index: 1; }
.tv-cat-head .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.tv-cat:nth-child(1) .ic { background: var(--grad-blue); box-shadow: var(--shadow-glow); }
.tv-cat:nth-child(2) .ic { background: var(--grad-deep); box-shadow: var(--shadow-deep); }
.tv-cat:nth-child(3) .ic { background: var(--grad-blue-soft); box-shadow: 0 14px 32px rgba(107,151,201,0.32); }
.tv-cat:nth-child(4) .ic { background: var(--grad-featured); box-shadow: var(--shadow-deep); }

.tv-cat h3 { font-size: 1.25rem; font-weight: 800; color: var(--hfc-blue-darker); letter-spacing: -0.01em; }
.tv-cat-count { font-size: 0.82rem; color: var(--hfc-muted); font-weight: 500; }
.tv-channels { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.tv-chan {
  background: var(--hfc-pale);
  border: 1px solid var(--hfc-border);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hfc-blue-darker);
  transition: all 0.25s var(--ease);
}
.tv-cat:hover .tv-chan { border-color: var(--hfc-sky); }
.tv-chan--more {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.tv-cat:nth-child(2) .tv-chan--more { background: var(--grad-deep); }
.tv-cat:nth-child(3) .tv-chan--more { background: var(--grad-blue-soft); }
.tv-cat:nth-child(4) .tv-chan--more { background: var(--grad-featured); }

/* =================================================================
   PLANES (CARDS)
================================================================= */
.plans-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  background: var(--hfc-white);
  border: 1.5px solid var(--hfc-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--hfc-sky); }
.plan-card.is-featured {
  background: var(--grad-featured);
  color: white;
  border: 0;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.plan-card.is-featured:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 36px 70px rgba(46,82,133,0.40); }
.plan-card.is-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hfc-white);
  color: var(--hfc-blue-darker);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  border: 1px solid var(--hfc-blue-bright);
}
.plan-ribbon i { color: var(--hfc-blue); }

.plan-card-head { margin-bottom: 22px; position: relative; }
.plan-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--hfc-blue-darker);
  letter-spacing: -0.02em;
}
.plan-card.is-featured .plan-name { color: white; }
.plan-tag { font-size: 0.84rem; color: var(--hfc-muted); font-weight: 500; }
.plan-card.is-featured .plan-tag { color: rgba(255,255,255,0.82); }

.plan-speed-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px dashed var(--hfc-border);
  border-bottom: 1px dashed var(--hfc-border);
  margin-bottom: 22px;
  position: relative;
}
.plan-card.is-featured .plan-speed-row { border-color: rgba(255,255,255,0.18); }
.plan-speed-num {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--hfc-blue) 0%, var(--hfc-blue-darker) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-card.is-featured .plan-speed-num {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--hfc-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-speed-unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hfc-blue-darker);
  line-height: 1.15;
}
.plan-speed-unit small { font-size: 0.75rem; font-weight: 500; color: var(--hfc-muted); }
.plan-card.is-featured .plan-speed-unit { color: white; }
.plan-card.is-featured .plan-speed-unit small { color: rgba(255,255,255,0.7); }

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}
.plan-price-row sup {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hfc-blue-darker);
  vertical-align: super;
  opacity: 0.7;
}
.plan-price-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--hfc-blue-darker);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-card.is-featured .plan-price-row sup,
.plan-card.is-featured .plan-price-num { color: white; }
.plan-price-period {
  font-size: 0.88rem;
  color: var(--hfc-muted);
  line-height: 1.2;
}
.plan-price-period small { font-size: 0.72rem; opacity: 0.8; }
.plan-card.is-featured .plan-price-period { color: rgba(255,255,255,0.78); }

.plan-highlights { display: grid; gap: 10px; margin-bottom: 26px; position: relative; flex: 1; }
.plan-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--hfc-text);
  font-weight: 500;
}
.plan-card.is-featured .plan-highlights li { color: rgba(255,255,255,0.92); }
.plan-highlights li i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  flex: 0 0 auto;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(74,122,181,0.28);
}
.plan-card.is-featured .plan-highlights li i {
  background: rgba(255,255,255,0.20);
  box-shadow: none;
}

.plan-fine {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--hfc-muted);
}
.plan-card.is-featured .plan-fine { color: rgba(255,255,255,0.7); }
.plan-card.is-featured .btn--coral,
.plan-card.is-featured .btn--primary {
  background: white;
  color: var(--hfc-blue-darker);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.plan-card.is-featured .btn--coral:hover,
.plan-card.is-featured .btn--primary:hover {
  background: var(--hfc-sky-soft);
  transform: translateY(-3px);
}

.plans-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--hfc-muted);
}
.plans-foot a { color: var(--hfc-blue); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; transition: gap 0.25s var(--ease); }
.plans-foot a:hover { gap: 12px; }

/* =================================================================
   POR QUÉ HFC
================================================================= */
.por-que-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.pq-stat {
  background: var(--grad-card);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pq-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pq-stat::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(15px);
}
.pq-stat:nth-child(1)::before { background: radial-gradient(circle, rgba(74,122,181,0.20), transparent 70%); }
.pq-stat:nth-child(2)::before { background: radial-gradient(circle, rgba(46,82,133,0.20), transparent 70%); }
.pq-stat:nth-child(3)::before { background: radial-gradient(circle, rgba(107,151,201,0.20), transparent 70%); }
.pq-stat:nth-child(4)::before { background: radial-gradient(circle, rgba(31,58,95,0.20), transparent 70%); }

.pq-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(120deg, var(--hfc-blue) 0%, var(--hfc-blue-darker) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.pq-num small { font-size: 1.3rem; opacity: 0.6; -webkit-text-fill-color: var(--hfc-muted); }
.pq-lbl { font-size: 0.92rem; color: var(--hfc-muted); font-weight: 500; }

.razones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.razon {
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.razon:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.razon-ic {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 22px;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}
.razon:nth-child(2) .razon-ic { background: var(--grad-deep); box-shadow: var(--shadow-deep); }
.razon:nth-child(3) .razon-ic { background: var(--grad-blue-soft); box-shadow: 0 14px 32px rgba(107,151,201,0.30); }
.razon h3 { font-size: 1.25rem; font-weight: 800; color: var(--hfc-blue-darker); margin-bottom: 12px; letter-spacing: -0.01em; }
.razon p { color: var(--hfc-muted); line-height: 1.65; }

/* =================================================================
   PROCESO TIMELINE
================================================================= */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--hfc-blue) 0, var(--hfc-blue) 6px, transparent 6px, transparent 14px);
  opacity: 0.5;
}
.tl-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.tl-step:last-child { margin-bottom: 0; }
.tl-num {
  width: 72px; height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hfc-white);
  border: 3px solid var(--hfc-blue);
  color: var(--hfc-blue-darker);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-bounce);
}
.tl-step:hover .tl-num {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: var(--shadow-glow);
}
/* Variación de tono entre pasos */
.tl-step:nth-child(2) .tl-num { border-color: var(--hfc-blue-dark); }
.tl-step:nth-child(2):hover .tl-num { background: var(--grad-blue); }
.tl-step:nth-child(3) .tl-num { border-color: var(--hfc-blue-darker); }
.tl-step:nth-child(3):hover .tl-num { background: var(--grad-deep); box-shadow: var(--shadow-deep); }
.tl-step:nth-child(4) .tl-num { border-color: var(--hfc-blue-deep); }
.tl-step:nth-child(4):hover .tl-num { background: var(--grad-featured); box-shadow: var(--shadow-deep); }

.tl-card {
  flex: 1;
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tl-step:hover .tl-card { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hfc-blue-darker);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.tl-card h4 i { color: var(--hfc-blue); font-size: 1rem; }
.tl-card p { color: var(--hfc-muted); line-height: 1.65; }

/* =================================================================
   TESTIMONIOS
================================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-top: 4px solid var(--hfc-blue);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi:nth-child(2) { border-top-color: var(--hfc-blue-darker); }
.testi:nth-child(3) { border-top-color: var(--hfc-blue-bright); }
.testi::before {
  content: '"';
  position: absolute;
  top: 18px; right: 22px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--hfc-pale);
  font-family: Georgia, serif;
}
.testi-stars { color: var(--hfc-blue); letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.testi-text {
  color: var(--hfc-text);
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.testi-foot { display: flex; gap: 14px; align-items: center; }
.testi-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 auto;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}
.testi:nth-child(2) .testi-av { background: var(--grad-deep); box-shadow: var(--shadow-deep); }
.testi:nth-child(3) .testi-av { background: var(--grad-blue-soft); box-shadow: 0 10px 24px rgba(107,151,201,0.30); }
.testi-foot strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--hfc-blue-darker); }
.testi-foot small { display: block; font-size: 0.8rem; color: var(--hfc-muted); }

/* =================================================================
   COBERTURA STRIP
================================================================= */
.cobertura-strip {
  background: var(--grad-deep);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cobertura-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184,212,232,0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cobertura-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(74,122,181,0.30), transparent 45%),
    radial-gradient(circle at 88% 90%, rgba(184,212,232,0.18), transparent 45%);
  pointer-events: none;
}
.cobertura-strip .container { position: relative; z-index: 1; }
.cob-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.cob-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cob-head h2 i {
  color: var(--hfc-sky);
  font-size: 0.9em;
  filter: drop-shadow(0 0 12px rgba(184,212,232,0.6));
}
.cob-head h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--hfc-sky) 0%, var(--hfc-blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cob-head p { color: rgba(255,255,255,0.78); margin-top: 14px; font-size: 1rem; }
.cob-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.cob-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: all 0.25s var(--ease);
}
.cob-city:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--hfc-sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(184,212,232,0.18);
}
.cob-city i { color: var(--hfc-sky); }
.cob-cta { text-align: center; }

/* =================================================================
   FAQ
================================================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-aside { position: sticky; top: calc(var(--header-h) + 20px); }
.faq-aside .section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }

.faq-wrap { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--hfc-white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.faq-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.faq-item.is-open { border-color: var(--hfc-blue); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hfc-blue-darker);
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--hfc-blue); }
.faq-q .ic {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--hfc-pale);
  color: var(--hfc-blue);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease-bounce), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  margin-left: 16px;
}
.faq-item.is-open .faq-q .ic {
  transform: rotate(135deg);
  background: var(--grad-blue);
  color: white;
  box-shadow: var(--shadow-glow);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--hfc-muted); line-height: 1.75; }
.faq-a-inner a { color: var(--hfc-blue); text-decoration: underline; font-weight: 600; }

/* =================================================================
   CTA BANNER
================================================================= */
.cta-banner {
  padding: 80px 0;
  background: var(--grad-featured);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,212,232,0.30), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,122,181,0.30), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.cta-eyebrow i { color: var(--hfc-sky); }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.6; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { width: 100%; }

/* =================================================================
   CONTACTO
================================================================= */
.contact-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: var(--r-2xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(74,122,181,0.18), transparent 70%);
  filter: blur(15px);
  pointer-events: none;
}
.contact-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px dashed var(--hfc-border);
}
.contact-quick { display: flex; gap: 22px; flex-wrap: wrap; }
.contact-quick a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hfc-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease);
}
.contact-quick a:hover { color: var(--hfc-blue); }
.contact-quick a i { color: var(--hfc-blue); }

/* ---------- Forms (general) ---------- */
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.form-row.cols-1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--hfc-blue-darker); }
.form-group label .req { color: var(--hfc-danger); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--hfc-border);
  border-radius: 12px;
  background: var(--hfc-pale);
  color: var(--hfc-text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--hfc-blue);
  background: var(--hfc-white);
  box-shadow: 0 0 0 4px rgba(74,122,181,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-help { font-size: 0.78rem; color: var(--hfc-muted); }
.form-error { font-size: 0.78rem; color: var(--hfc-danger); display: none; font-weight: 500; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--hfc-danger); background: #fef2f2; }
.form-group.has-error .form-error { display: block; }

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  background: var(--grad-deep);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184,212,232,0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.site-footer::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,122,181,0.18), transparent 60%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer h4 {
  color: var(--hfc-white);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--hfc-blue);
  border-radius: 2px;
}
.site-footer p { font-size: 0.92rem; line-height: 1.7; }
.footer-brand .b-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 56px; }
.footer-brand .b-name { color: white; font-weight: 900; font-size: 1.25rem; letter-spacing: 0.06em; }
.footer-brand .b-name small { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.7; letter-spacing: 0.04em; }
.footer-list { display: grid; gap: 10px; }
.footer-list a { font-size: 0.92rem; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer-list a:hover { color: var(--hfc-sky); padding-left: 6px; }
.footer-contact { display: grid; gap: 16px; font-size: 0.9rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact i { color: var(--hfc-sky); margin-top: 4px; }

.newsletter {
  display: flex;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  backdrop-filter: blur(6px);
}
.newsletter input { flex: 1; padding: 10px 16px; background: transparent; border: 0; color: white; font-size: 0.88rem; }
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter input:focus { outline: 0; }
.newsletter button {
  padding: 10px 22px;
  background: var(--grad-blue);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  transition: transform 0.25s var(--ease);
  box-shadow: 0 6px 16px rgba(74,122,181,0.35);
}
.newsletter button:hover { transform: translateY(-2px); }

.socials-row { display: flex; gap: 10px; margin-top: 22px; }
.socials-row a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: white;
  transition: all 0.25s var(--ease);
}
.socials-row a:hover {
  background: var(--grad-blue);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--hfc-sky); }

/* =================================================================
   WhatsApp floating
================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.3s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.10) rotate(-6deg); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: ringPulse 1.8s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =================================================================
   PAGE HERO (interior)
================================================================= */
.page-hero {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(74,122,181,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184,212,232,0.30), transparent 60%),
    var(--grad-bg-light);
  padding: 90px 0;
  border-bottom: 1px solid var(--hfc-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,122,181,0.18), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.page-hero-inner { position: relative; max-width: 740px; }
.breadcrumbs { font-size: 0.85rem; color: var(--hfc-muted); margin-bottom: 16px; font-weight: 500; }
.breadcrumbs a:hover { color: var(--hfc-blue); }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--hfc-blue-darker);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-hero p { color: var(--hfc-muted); font-size: 1.05rem; }

/* =================================================================
   PQR
================================================================= */
.pqr-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: flex-start; }
.pqr-form-card {
  background: var(--hfc-white);
  border-radius: var(--r-2xl);
  padding: 44px;
  border: 1px solid var(--hfc-border);
  box-shadow: var(--shadow-md);
}
.form-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hfc-blue-darker);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--hfc-sky-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-section-title .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}
.form-section { margin-bottom: 36px; }
fieldset { border: 0; }
fieldset legend { display: none; }

.pqr-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.pqr-type { position: relative; cursor: pointer; }
.pqr-type input { position: absolute; opacity: 0; pointer-events: none; }
.pqr-type .card {
  border: 1.5px solid var(--hfc-border);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.25s var(--ease);
  background: var(--hfc-white);
}
.pqr-type:hover .card { border-color: var(--hfc-blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pqr-type input:checked + .card {
  border-color: var(--hfc-blue);
  background: rgba(74,122,181,0.06);
  box-shadow: var(--shadow-glow);
}
.pqr-type .ico { font-size: 1.3rem; color: var(--hfc-blue); margin-bottom: 6px; }
.pqr-type .nm { font-weight: 700; color: var(--hfc-blue-darker); font-size: 0.92rem; }
.pqr-type .ds { font-size: 0.74rem; color: var(--hfc-muted); margin-top: 4px; line-height: 1.3; }

.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--hfc-pale);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--hfc-border);
  margin-bottom: 12px;
}
.checkbox-row input { margin-top: 4px; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--hfc-blue); }
.checkbox-row label { font-size: 0.86rem; color: var(--hfc-muted); line-height: 1.5; }
.checkbox-row a { color: var(--hfc-blue); text-decoration: underline; font-weight: 600; }

.file-drop {
  border: 2px dashed var(--hfc-border);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  background: var(--hfc-pale);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.file-drop:hover { border-color: var(--hfc-blue); background: rgba(74,122,181,0.05); }
.file-drop input { display: none; }
.file-drop .ic { font-size: 1.8rem; color: var(--hfc-blue); margin-bottom: 8px; }
.file-drop .ttl { font-weight: 700; color: var(--hfc-blue-darker); }
.file-drop .sub { font-size: 0.8rem; color: var(--hfc-muted); margin-top: 4px; }
.file-list { margin-top: 14px; display: grid; gap: 8px; }
.file-list .item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--hfc-white);
  border: 1px solid var(--hfc-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.86rem;
}
.file-list .item button { color: var(--hfc-danger); font-size: 1.1rem; font-weight: 800; }

.form-submit {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px dashed var(--hfc-border);
}

.pqr-aside { display: grid; gap: 18px; position: sticky; top: calc(var(--header-h) + 16px); }
.aside-card {
  background: var(--hfc-white);
  border-radius: var(--r-md);
  padding: 26px 22px;
  border: 1px solid var(--hfc-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.aside-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 0.95rem; color: var(--hfc-blue-darker); font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.aside-card h3 i { color: var(--hfc-blue); }
.aside-card ul { display: grid; gap: 10px; font-size: 0.86rem; color: var(--hfc-muted); }
.aside-card ul li { display: flex; gap: 10px; }
.aside-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--hfc-blue); margin-top: 8px; flex: 0 0 auto; }
.aside-card .legal { font-size: 0.78rem; color: var(--hfc-muted); margin-top: 12px; line-height: 1.55; }

.confirmation {
  text-align: center;
  background: var(--hfc-white);
  padding: 70px 40px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--hfc-border);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.confirmation .ok-ico {
  width: 92px; height: 92px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  font-size: 2.4rem;
  border: 5px solid var(--hfc-white);
  box-shadow: var(--shadow-glow);
}
.confirmation h1 { color: var(--hfc-blue-darker); margin-bottom: 8px; font-size: 1.9rem; font-weight: 900; }
.confirmation .radicado {
  display: inline-block;
  background: var(--hfc-pale);
  border: 1px dashed var(--hfc-blue);
  padding: 12px 24px;
  border-radius: 14px;
  margin: 16px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hfc-blue-dark);
  letter-spacing: 0.04em;
}
.confirmation p { color: var(--hfc-muted); }

.alert {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  border: 1px solid;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert i { margin-top: 3px; flex: 0 0 auto; }
.alert--error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert--success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert--info { background: rgba(74,122,181,0.06); color: var(--hfc-blue-dark); border-color: var(--hfc-blue); }

/* =================================================================
   Reveal animation
================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* =================================================================
   Responsive
================================================================= */
@media (max-width: 1024px) {
  /* === Header: cambia a hamburger === */
  .top-bar-left .item-hide,
  .top-bar .socials { display: none; }
  .brand-text small { display: none; }
  .main-nav,
  .header-cta .btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: flex; }
  .nav-mobile { display: flex; }

  /* === Hero === */
  .hero { padding: 60px 0 80px; }
  .hero-trust-row { padding: 18px 24px; gap: 18px; }
  .trust-divider { display: none; }
  .hero-logo-wrap { margin: 20px auto 32px; }
  .hsp { padding: 8px 16px 8px 10px; gap: 10px; }
  .hsp-ic { width: 30px; height: 30px; font-size: 0.78rem; }
  .hsp-text strong { font-size: 0.85rem; }
  .hsp-text small { font-size: 0.7rem; }

  /* === Servicios bento (2 columnas) === */
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .srv--internet { grid-column: span 2; grid-row: auto; padding: 32px; }
  .srv--tv, .srv--phone, .srv--support { grid-column: span 1; }

  /* === TV: 1 columna en tablet/phone === */
  .tv-grid { grid-template-columns: 1fr; }

  /* === Planes en 3 columnas más compactas === */
  .plans-cards { gap: 16px; }
  .plan-card { padding: 28px 22px; }
  .plan-card.is-featured { transform: scale(1.02); }
  .plan-card.is-featured:hover { transform: scale(1.02) translateY(-6px); }
  .plan-speed-num { font-size: 2.6rem; }
  .plan-price-num { font-size: 2.1rem; }
  .plan-name { font-size: 1.2rem; }

  /* === Por qué / Testimonios === */
  .por-que-stats { grid-template-columns: repeat(2, 1fr); }
  .razones-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* === FAQ / CTA === */
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-aside { position: static; }
  .cta-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .cta-eyebrow { margin: 0 auto 18px; }

  /* === Footer / PQR === */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pqr-layout { grid-template-columns: 1fr; }
  .pqr-aside { position: static; }
}

@media (max-width: 768px) {
  /* === Globals === */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 44px; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* === Top bar / header (resto de ajustes; nav-collapse ya pasó a 1024) === */
  .top-bar { font-size: 0.76rem; height: auto; padding: 8px 0; }
  .top-bar .container { justify-content: center; }
  .top-bar-left, .top-bar-right { gap: 14px; flex-wrap: wrap; justify-content: center; }

  .site-header { height: 68px; }
  .brand img { height: 42px; }
  .brand-text strong { font-size: 1.15rem; }
  .menu-toggle { width: 40px; height: 40px; }

  /* === HERO === */
  .hero { padding: 36px 0 56px; }
  .hero-network { opacity: 0.30; }
  .hero-logo-wrap { width: 200px; margin: 8px auto 24px; }
  .hero-aurora { inset: -25% -22%; }
  .hero-pulse { width: 60%; }
  .hero-pill { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); margin-bottom: 16px; line-height: 1.1; }
  .hero-title br { display: none; }
  .hero-lead { font-size: 0.95rem; margin-bottom: 24px; max-width: 100%; }
  .hero-services-row { gap: 8px; margin-bottom: 22px; }
  .hsp { padding: 8px 14px 8px 8px; gap: 10px; }
  .hsp-ic { width: 28px; height: 28px; font-size: 0.78rem; }
  .hsp-text strong { font-size: 0.82rem; }
  .hsp-text small { font-size: 0.68rem; }
  .hero-cta-row { width: 100%; gap: 10px; margin-bottom: 36px; flex-direction: column; }
  .hero-cta-row .btn { width: 100%; padding: 14px 22px; }

  /* Trust row compacto en una sola fila wrappable */
  .hero-trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 16px;
    gap: 12px 18px;
    border-radius: 18px;
    width: 100%;
  }
  .trust-divider { display: none; }
  .trust-item { gap: 10px; flex: 0 0 auto; }
  .trust-item strong { font-size: 0.84rem; }
  .trust-item small { font-size: 0.7rem; }
  .avs span { width: 30px; height: 30px; font-size: 0.65rem; margin-left: -8px; }
  .trust-stars, .trust-num { padding: 6px 11px; font-size: 0.78rem; }
  .trust-num span { font-size: 0.6rem; }

  /* === Sticker band === */
  .sticker-band { padding: 16px 0; }
  .sticker-marquee { gap: 28px; }
  .sticker { font-size: 0.84rem; gap: 10px; }
  .sticker i { width: 28px; height: 28px; font-size: 0.74rem; }

  /* === Servicios bento === */
  .services-bento { grid-template-columns: 1fr; gap: 14px; }
  .srv { padding: 26px 22px; }
  .srv--internet, .srv--tv, .srv--phone, .srv--support { grid-column: auto; }
  .srv--internet { padding: 30px 24px; }
  .srv-tag { top: 22px; right: 22px; }
  .srv h3 { font-size: 1.25rem; }
  .srv-icon { width: 50px; height: 50px; font-size: 1.2rem; }

  /* === TV grid === */
  .tv-grid { gap: 14px; }
  .tv-cat { padding: 24px 20px; }
  .tv-cat-head { gap: 12px; margin-bottom: 18px; }
  .tv-cat-head .ic { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
  .tv-cat h3 { font-size: 1.1rem; }
  .tv-chan { font-size: 0.78rem; padding: 6px 12px; }

  /* === Planes (apilados, featured arriba) === */
  .plans-cards { grid-template-columns: 1fr; max-width: 100%; margin: 0; gap: 26px; }
  .plan-card { padding: 28px 22px; }
  .plan-card.is-featured { transform: scale(1); order: -1; margin-top: 12px; }
  .plan-card.is-featured:hover { transform: translateY(-4px); }
  .plan-speed-num { font-size: 2.6rem; }
  .plan-price-num { font-size: 2.2rem; }

  /* === Por qué (stats + razones) === */
  .por-que-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 50px; }
  .pq-stat { padding: 22px 14px; }
  .pq-num { font-size: 1.85rem; }
  .pq-num small { font-size: 0.95rem; }
  .pq-lbl { font-size: 0.82rem; }
  .razones-grid { grid-template-columns: 1fr; gap: 16px; }
  .razon { padding: 28px 24px; }
  .razon-ic { width: 52px; height: 52px; font-size: 1.3rem; }

  /* === Timeline === */
  .timeline { padding-left: 0; }
  .timeline::before { left: 28px; }
  .tl-step { gap: 18px; margin-bottom: 22px; }
  .tl-num { width: 56px; height: 56px; font-size: 1.3rem; border-width: 2px; }
  .tl-card { padding: 20px 22px; }
  .tl-card h4 { font-size: 1.02rem; }
  .tl-card p { font-size: 0.92rem; }

  /* === Testimonios === */
  .testi-grid { grid-template-columns: 1fr; max-width: 100%; gap: 16px; }
  .testi { padding: 28px 24px; }
  .testi-text { font-size: 0.92rem; }

  /* === Cobertura === */
  .cobertura-strip { padding: 60px 0; }
  .cob-head h2 { font-size: clamp(1.4rem, 6vw, 1.75rem); flex-direction: column; gap: 8px; }
  .cob-cities { gap: 8px; }
  .cob-city { padding: 10px 16px; font-size: 0.85rem; }

  /* === FAQ === */
  .faq-aside .section-title { font-size: 1.7rem; }
  .faq-q { padding: 18px 20px; font-size: 0.94rem; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 0.92rem; }

  /* === CTA banner === */
  .cta-banner { padding: 60px 0; }
  .cta-inner h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .cta-inner p { font-size: 0.95rem; }

  /* === Contacto === */
  .contact-card { padding: 26px 20px; border-radius: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .form-row.cols-3 { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .contact-actions .btn { width: 100%; }
  .contact-quick { justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* === Footer === */
  .site-footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom .legal { justify-content: center; gap: 14px; }

  /* === WhatsApp float === */
  .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }

  /* === PQR / Page hero === */
  .page-hero { padding: 60px 0; }
  .pqr-form-card { padding: 24px 20px; }
  .form-submit { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .form-submit .btn { width: 100%; }
  .pqr-types { grid-template-columns: 1fr 1fr; }
}

/* === Pantallas muy pequeñas (320-480px) === */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }

  .hero { padding: 28px 0 44px; }
  .hero-logo-wrap { width: 180px; margin: 0 auto 18px; }
  .hero-pill { font-size: 0.74rem; padding: 6px 12px; }
  .hero-title { font-size: 1.55rem; line-height: 1.1; }
  .hero-lead { font-size: 0.92rem; line-height: 1.6; }
  .hero-cta-row .btn { padding: 13px 18px; font-size: 0.92rem; }

  /* Trust row: solo el primer item (clientes) en pantallas muy pequeñas */
  .hero-trust-row .trust-item:nth-child(n+3) { display: none; }
  .hero-trust-row { padding: 12px 14px; gap: 10px; }

  /* Service pills: stack vertical en muy pequeñas */
  .hero-services-row { flex-direction: column; gap: 8px; align-items: stretch; }
  .hsp { width: 100%; justify-content: center; }

  /* Stats: 1 columna */
  .por-que-stats { grid-template-columns: 1fr; }

  /* PQR types: 1 columna */
  .pqr-types { grid-template-columns: 1fr; }

  /* Timeline más compacto */
  .tl-num { width: 48px; height: 48px; font-size: 1.15rem; }
  .timeline::before { left: 24px; }
  .tl-step { gap: 14px; }
  .tl-card { padding: 18px 18px; }

  /* Testimonios padding */
  .testi { padding: 24px 20px; }
  .testi::before { font-size: 4rem; top: 12px; right: 16px; }

  /* Plan card más compacto */
  .plan-card { padding: 24px 20px; }
  .plan-speed-num { font-size: 2.3rem; }
  .plan-price-num { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
