/* =========================================================
   VELOCIDAD DIGITAL - Stylesheet
   Paleta tomada del logo: navy + azul eléctrico + cyan
   ========================================================= */

:root {
  --navy-900: #03103a;
  --navy-800: #061a52;
  --navy-700: #0a1f5c;
  --navy-600: #0d2a7a;
  --blue-500: #1e88e5;
  --blue-400: #2ea3ff;
  --cyan-400: #00d4ff;
  --cyan-300: #6fe4ff;
  --white: #ffffff;
  --light: #f4f9ff;
  --gray-100: #eef3fa;
  --gray-200: #d9e3f1;
  --gray-400: #8a9bb8;
  --gray-600: #4a5a7a;
  --gray-800: #1c2742;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --grad-primary: linear-gradient(135deg, #03103a 0%, #0a1f5c 45%, #1e88e5 100%);
  --grad-accent: linear-gradient(135deg, #1e88e5 0%, #00d4ff 100%);
  --grad-soft: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);

  --shadow-sm: 0 2px 8px rgba(10, 31, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 31, 92, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 31, 92, 0.18);
  --shadow-glow: 0 0 32px rgba(0, 212, 255, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-sans: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
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; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--grad-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(30, 136, 229, 0.1);
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--blue-500); }
.section-subtitle {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:disabled,
.btn[aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
  transform: none !important;
  box-shadow: none;
}
.btn--primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(30, 136, 229, 0.45); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-700);
}
.btn--outline:hover { background: var(--navy-700); color: var(--white); }
.btn--whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover { transform: translateY(-2px); background: #1ebe5a; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
  background: rgba(255, 255, 255, 0);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  height: 72px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header .container { max-width: 1400px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 64px; width: auto; transition: height 0.3s var(--ease); filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.45)); }
.site-header.is-scrolled .brand img { height: 52px; filter: drop-shadow(0 2px 8px rgba(10, 31, 92, 0.2)); }
.brand-text {
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.brand-text small { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.85; }
.site-header.is-scrolled .brand-text { color: var(--navy-700); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 8px 11px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.site-header.is-scrolled .nav a { color: var(--gray-800); }
.nav a::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  background: var(--cyan-400);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--cyan-400); }
.site-header.is-scrolled .nav a:hover { color: var(--blue-500); }

/* Dropdown desktop */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 11px;
  font: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  transition: color 0.25s var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.25s var(--ease);
}
.site-header.is-scrolled .nav-dropdown-toggle { color: var(--gray-800); }
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--cyan-400); }
.site-header.is-scrolled .nav-dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown:hover .nav-dropdown-toggle,
.site-header.is-scrolled .nav-dropdown-toggle.active { color: var(--blue-500); }
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 14px !important;
  border-radius: var(--radius-sm);
  color: var(--gray-800) !important;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--blue-500) !important; }
.nav-dropdown-menu a.active { background: var(--gray-50); color: var(--blue-500) !important; }
.nav-dropdown-menu a > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.nav-dropdown-menu a > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.nav-dropdown-menu a strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
}
.nav-dropdown-menu a small {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Submenú móvil */
.nav-mobile-group { border-bottom: 1px solid var(--gray-100); }
.nav-mobile-group-toggle {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 0;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
}
.nav-mobile-group-toggle i { transition: transform 0.25s var(--ease); }
.nav-mobile-group-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.nav-mobile-submenu {
  display: none;
  padding-left: 14px;
  padding-bottom: 8px;
  border-left: 2px solid var(--cyan-400);
  margin-bottom: 8px;
}
.nav-mobile-group.is-open .nav-mobile-submenu { display: block; }
.nav-mobile-submenu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 0 !important;
  font-size: 0.95rem !important;
  border-bottom: none !important;
}
.nav-mobile-submenu a i { color: var(--blue-500); width: 18px; text-align: center; }

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

.nav-mobile { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled .menu-toggle span { background: var(--navy-700); }
.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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background:
    linear-gradient(135deg, rgba(3, 16, 58, 0.04), rgba(10, 36, 99, 0.02)),
    linear-gradient(to right, transparent 70%, #03103a 100%),
    radial-gradient(ellipse 65% 70% at 95% center, transparent 40%, #03103a 80%),
    url('../img/banner_fondo_fibra.png') 95% center / 80% auto no-repeat,
    var(--grad-primary);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(30, 136, 229, 0.22) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-mobile-img { display: none; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 10px var(--cyan-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--cyan-300), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
}
.hero-stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan-400), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat .label { font-size: 0.85rem; opacity: 0.8; }

.hero-art {
  position: relative;
  height: 500px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.orb--main {
  inset: 50% auto auto 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.7) 0%, rgba(30, 136, 229, 0.3) 50%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.orb--sm-1 {
  top: 10%; left: 10%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--cyan-400), transparent);
  animation: float 4s ease-in-out infinite;
}
.orb--sm-2 {
  bottom: 15%; right: 5%;
  width: 110px; height: 110px;
  background: radial-gradient(circle, var(--blue-400), transparent);
  animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-20px); }
}
.orb--sm-1, .orb--sm-2 { animation-name: floatSm; }
@keyframes floatSm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.hero-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64%;
  max-width: 340px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floatLogo 6s ease-in-out infinite;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(0, 212, 255, 0.55))
    drop-shadow(0 18px 36px rgba(3, 16, 58, 0.5));
}
.hero-logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.hero-logo-fallback .big {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  background: linear-gradient(180deg, var(--cyan-300), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-logo-fallback .sm {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero-logo.no-img img { display: none; }
.hero-logo.no-img .hero-logo-fallback { display: flex; }
@keyframes floatLogo {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
  50% { transform: translate(-50%, -50%) translateY(-14px) scale(1.02); }
}

.speed-card {
  position: absolute;
  z-index: 3;
  background: rgba(6, 26, 82, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.speed-card.c1 { top: 0; left: -10px; animation: float 5s ease-in-out infinite; }
.speed-card.c2 { bottom: -40px; right: -200px; animation: float 6s ease-in-out infinite reverse; }
.speed-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: grid; place-items: center;
  font-size: 1.3rem;
  color: var(--white);
}
.speed-card .v { font-weight: 800; font-size: 1.1rem; }
.speed-card .l { font-size: 0.78rem; opacity: 0.85; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  opacity: 0.75;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after {
  content: '';
  width: 2px; height: 28px;
  background: linear-gradient(var(--cyan-400), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Features ---------- */
.features {
  background: var(--white);
  position: relative;
  margin-top: -50px;
  z-index: 2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}
.feature {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--gray-100);
}
.feature:last-child { border-right: none; }
.feature .icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: var(--blue-500);
  border: 1px solid var(--gray-200);
}
.feature h3 { font-size: 1rem; font-weight: 700; color: var(--navy-700); margin-bottom: 4px; }
.feature p { font-size: 0.88rem; color: var(--gray-600); }
.feature--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease);
  cursor: pointer;
  position: relative;
}
.feature--link::after {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.75rem;
  color: var(--gray-300);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.feature--link:hover { transform: translateY(-4px); }
.feature--link:hover .icon {
  background: var(--grad-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.35);
}
.feature--link:hover h3 { color: var(--blue-500); }
.feature--link:hover::after {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--blue-500);
}
.feature--link .icon { transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}
.plan--featured {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan--featured:hover { transform: translateY(-18px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.plan-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.plan-tag { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 24px; }
.plan--featured .plan-tag { color: rgba(255,255,255,0.8); }
.plan-speed {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-700);
}
.plan-speed small { font-size: 1rem; font-weight: 500; color: var(--gray-600); margin-left: 4px; }
.plan--featured .plan-speed { color: var(--white); }
.plan--featured .plan-speed small { color: rgba(255,255,255,0.85); }
.plan-price {
  margin: 18px 0 24px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.plan-price .amount {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1.1;
}
.plan-price .amount sup { font-size: 1rem; vertical-align: super; opacity: 0.7; }
.plan--featured .plan-price, .plan--featured .plan-price .amount { color: var(--white); }
.plan-features { margin: 0 0 28px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--gray-600);
  border-bottom: 1px dashed var(--gray-100);
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
  content: '✓';
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(30, 136, 229, 0.12);
  color: var(--blue-500);
  display: grid; place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1px;
}
.plan--featured .plan-features li { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.12); }
.plan--featured .plan-features li::before { background: rgba(0, 212, 255, 0.25); color: var(--cyan-300); }
.plan .btn { width: 100%; }
.plan--featured .btn--outline { color: var(--white); border-color: var(--white); }
.plan--featured .btn--outline:hover { background: var(--white); color: var(--navy-700); }

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: -1px -1px auto auto;
  width: 120px; height: 120px;
  background: var(--grad-accent);
  opacity: 0.08;
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform 0.4s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service:hover::before { transform: translate(20%, -20%) scale(1.4); }
.service .icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--grad-accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(30, 136, 229, 0.3);
}
.service h3 { font-size: 1.2rem; color: var(--navy-700); margin-bottom: 10px; font-weight: 700; }
.service p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Cobertura ---------- */
.coverage {
  background: var(--grad-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.2), transparent 50%);
}
.coverage .section-title { color: var(--white); }
.coverage .section-title span { color: var(--cyan-400); }
.coverage .section-subtitle { color: rgba(255,255,255,0.85); }
.coverage .eyebrow { background: rgba(0, 212, 255, 0.15); color: var(--cyan-300); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.city {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.city:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.city .pin {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cyan-400);
  color: var(--navy-900);
  display: grid; place-items: center;
  font-size: 1rem;
}
/* Mapa interactivo Google Maps */
.coverage-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(3, 16, 58, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 4px rgba(255, 255, 255, 0.04);
}
.coverage-map-frame {
  aspect-ratio: 1 / 1;
  background: #0a1f5c;
  position: relative;
}
.coverage-map-frame::after {
  /* halo cyan sutil alrededor del mapa */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -60px 100px -30px rgba(3, 16, 58, 0.55);
}
.coverage-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.08) contrast(1.02);
}
.coverage-map-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.map-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.4);
}
.map-card-text { flex: 1; min-width: 0; }
.map-card-text strong {
  display: block;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.map-card-text span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 2px;
}
.map-card-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}
.map-card-btn:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px) rotate(8deg);
}
.coverage-map-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(3, 16, 58, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  border: 1px solid rgba(0, 212, 255, 0.4);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: mapPulse 1.8s ease-out infinite;
}
@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.coverage-art {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.coverage-art .ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.coverage-art .ring.r2 { inset: 12%; border-color: rgba(0, 212, 255, 0.4); animation-duration: 22s; animation-direction: reverse; }
.coverage-art .ring.r3 { inset: 24%; border-color: rgba(255,255,255,0.15); animation-duration: 18s; }
.coverage-art .center {
  position: relative;
  z-index: 2;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  font-size: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-glow);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* ---------- Carrusel de publicidad ---------- */
.ads-carousel {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, var(--gray-50) 0%, transparent 100%);
}
.ads-carousel > .container {
  max-width: 1280px;
  padding: 0 16px;
}
.ads-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(3, 16, 58, 0.22),
    0 0 0 1px rgba(10, 31, 92, 0.05);
  background: #03103a;
  isolation: isolate;
}
.ads-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.ads-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.ads-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: #03103a;
  display: grid;
  place-items: center;
}
.ads-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.ads-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--navy-900);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 3;
  opacity: 0.85;
}
.ads-arrow:hover {
  background: var(--blue-500);
  color: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.ads-arrow:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}
.ads-arrow--prev { left: 22px; }
.ads-arrow--next { right: 22px; }

.ads-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  padding: 8px 14px;
  background: rgba(3, 16, 58, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
}
.ads-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width 0.4s var(--ease), background 0.3s var(--ease), transform 0.25s var(--ease);
}
.ads-dot:hover { background: rgba(255, 255, 255, 0.85); transform: scale(1.15); }
.ads-dot.is-active {
  background: var(--cyan-400);
  width: 30px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
}
.ads-dot:focus-visible { outline: 2px solid var(--cyan-300); outline-offset: 3px; }

/* ---------- Banner CRC imagen (link externo, al final de la página) ---------- */
.crc-image-section { padding-top: 0; padding-bottom: 96px; }
.crc-image-banner {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 16, 58, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none;
  line-height: 0;
  aspect-ratio: 4 / 1;
}
.crc-image-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px rgba(3, 16, 58, 0.35);
}
.crc-image-banner:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}
.crc-image-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .crc-image-banner { aspect-ratio: 2 / 1; }
}

/* ---------- Feature highlight (imagen + contenido) ---------- */
.feature-highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.feature-highlight-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(3, 16, 58, 0.18),
    0 0 0 1px rgba(10, 31, 92, 0.06);
  background: linear-gradient(135deg, #03103a 0%, #0a1f5c 100%);
  isolation: isolate;
}
.feature-highlight-image::before {
  /* halo cyan decorativo */
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.35), transparent 55%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.feature-highlight-image::after {
  /* viñeta inferior para fundir borde con la siguiente sección */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 16, 58, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.feature-highlight-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.feature-highlight:hover .feature-highlight-image img {
  transform: scale(1.03);
}

.feature-highlight-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 12px 0 18px;
  line-height: 1.18;
}
.feature-highlight-content .grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-highlight-content p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 24px;
}
.feature-highlight-content p strong { color: var(--navy-700); }

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--gray-800);
  font-weight: 500;
}
.highlight-list li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  color: var(--white);
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.4), transparent 50%);
}
.about-img .big-num {
  position: relative;
  z-index: 1;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(180deg, var(--cyan-300), rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.about-img .label { position: relative; z-index: 1; opacity: 0.9; letter-spacing: 0.1em; }

/* Variante con foto real (equipo de trabajo) */
.about-img--photo {
  aspect-ratio: 5 / 4;
  display: block;
  background: #03103a;
  isolation: isolate;
}
.about-img--photo::before {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 55%, rgba(3, 16, 58, 0.55) 100%),
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.25), transparent 55%);
  pointer-events: none;
}
.about-img-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}
.about-img--photo:hover .about-img-photo { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  padding: 16px 22px;
  background: rgba(3, 16, 58, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(3, 16, 58, 0.45);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-img-badge .big-num {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(180deg, var(--cyan-300), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.about-img-badge .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.85;
}
.about-list { margin-top: 24px; display: grid; gap: 14px; }
.about-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.98rem;
  color: var(--gray-600);
}
.about-list .check {
  flex: 0 0 28px; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.about-list strong { color: var(--navy-700); display: block; margin-bottom: 2px; }

/* About — variante con fondo oscuro tipo Cobertura */
.about--dark {
  background: var(--grad-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.2), transparent 50%);
}
.about--dark > .container { position: relative; z-index: 1; }
.about--dark .section-title { color: var(--white); }
.about--dark .section-title span { color: var(--cyan-400); }
.about--dark .section-subtitle { color: rgba(255,255,255,0.85); }
.about--dark .eyebrow { background: rgba(0, 212, 255, 0.15); color: var(--cyan-300); }
.about--dark .about-list li { color: rgba(255,255,255,0.85); }
.about--dark .about-list strong { color: var(--white); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--blue-400);
  opacity: 0.18;
  line-height: 1;
}
.stars { color: #f5b400; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { color: var(--gray-600); margin-bottom: 22px; font-style: italic; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.testimonial-user strong { display: block; color: var(--navy-700); font-size: 0.95rem; }
.testimonial-user span { color: var(--gray-400); font-size: 0.83rem; }

/* ---------- FAQ acordeón ---------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.faq-item:hover {
  border-color: var(--cyan-400);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.14);
  transform: translateY(-2px);
}
.faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: 0 14px 36px rgba(30, 136, 229, 0.18);
  transform: translateY(0);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}
.faq-q {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  line-height: 1.4;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item:hover .faq-icon {
  background: var(--cyan-400);
  color: var(--white);
}
.faq-item[open] .faq-icon {
  background: var(--grad-accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 26px 26px;
  color: var(--gray-700);
  line-height: 1.65;
  animation: faqSlideDown 0.35s var(--ease);
}
.faq-a p { margin: 0; font-size: 0.97rem; }
.faq-a a { color: var(--blue-500); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(30,136,229,0.3); text-underline-offset: 3px; }
.faq-a a:hover { color: var(--cyan-400); text-decoration-color: var(--cyan-400); }
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--grad-primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(0, 212, 255, 0.35), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(30, 136, 229, 0.4), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-banner h2 span { color: var(--cyan-300); }
.cta-banner p { opacity: 0.9; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.site-footer p { font-size: 0.92rem; line-height: 1.7; }
.footer-brand img { height: 80px; margin-bottom: 18px; }
.footer-list { display: grid; gap: 10px; }
.footer-list a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
  display: inline-block;
}
.footer-list a:hover { color: var(--cyan-400); transform: translateX(4px); }
.contact-info { display: grid; gap: 14px; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; }
.contact-info .ic {
  flex: 0 0 36px; width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan-400);
  display: grid; place-items: center;
}
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--white);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.socials a:hover { background: var(--grad-accent); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--cyan-400); }

/* ---------- 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 12px 28px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: ringPulse 1.8s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Page Hero (interior) ---------- */
.page-hero {
  background: var(--grad-primary);
  color: var(--white);
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.3), transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.page-hero p { opacity: 0.9; max-width: 640px; margin: 0 auto; position: relative; }
.breadcrumbs { font-size: 0.85rem; opacity: 0.7; margin-bottom: 12px; position: relative; }
.breadcrumbs a:hover { color: var(--cyan-300); }

/* Page hero con imagen (internet-sano) */
.page-hero--image {
  padding: 0;
  background: var(--navy-900);
  text-align: center;
}
.page-hero--image .page-hero-bg {
  display: block;
  width: 100%;
  height: auto;
}
.page-hero--image .page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3, 16, 58, 0.72) 0%, rgba(10, 31, 92, 0.62) 60%, rgba(30, 136, 229, 0.45) 100%);
  pointer-events: none;
}
.page-hero--image .page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 32px) 16px 32px;
  z-index: 2;
}
.page-hero--image::before { display: none; }
.page-hero--image h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.page-hero--image .breadcrumbs {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

/* ---------- Forms (PQR) ---------- */
.pqr-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: flex-start;
}
.pqr-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-step {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--blue-500);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-step-title { font-size: 1.3rem; font-weight: 700; color: var(--navy-700); margin-bottom: 24px; }
fieldset { border: 0; margin-bottom: 32px; }
fieldset legend { display: none; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.cols-3 { grid-template-columns: repeat(3, 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(--navy-700);
}
.form-group label .req { color: var(--danger); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-help { font-size: 0.8rem; color: var(--gray-400); }
.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--danger); }
.form-group.has-error .form-error { display: block; }

.pqr-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 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(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.pqr-type:hover .card { transform: translateY(-2px); border-color: var(--blue-400); }
.pqr-type input:checked + .card {
  border-color: var(--blue-500);
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(0, 212, 255, 0.06));
  box-shadow: 0 8px 18px rgba(30, 136, 229, 0.18);
}
.pqr-type .ico { font-size: 1.4rem; margin-bottom: 6px; color: var(--blue-500); }
.pqr-type .nm { font-weight: 700; color: var(--navy-700); font-size: 0.95rem; }
.pqr-type .ds { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--gray-100);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.checkbox-row input { margin-top: 4px; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--blue-500); }
.checkbox-row label { font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; }
.checkbox-row a { color: var(--blue-500); text-decoration: underline; }

.file-drop {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  background: var(--gray-100);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  cursor: pointer;
}
.file-drop:hover { border-color: var(--blue-500); background: rgba(30, 136, 229, 0.04); }
.file-drop input { display: none; }
.file-drop .ic { font-size: 1.8rem; color: var(--blue-500); margin-bottom: 6px; }
.file-drop .ttl { font-weight: 600; color: var(--navy-700); }
.file-drop .sub { font-size: 0.82rem; color: var(--gray-600); margin-top: 4px; }
.file-list { margin-top: 12px; display: grid; gap: 6px; }
.file-list .item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.85rem;
}
.file-list .item button { color: var(--danger); font-size: 1rem; }

.form-submit {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

/* PQR aside */
.pqr-aside { display: grid; gap: 20px; position: sticky; top: 100px; }
.aside-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.aside-card h3 { font-size: 1rem; color: var(--navy-700); font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.aside-card h3 .ic { width: 32px; height: 32px; border-radius: 10px; background: var(--grad-accent); color: var(--white); display: grid; place-items: center; }
.aside-card ul { display: grid; gap: 10px; font-size: 0.9rem; color: var(--gray-600); }
.aside-card ul li { display: flex; gap: 10px; }
.aside-card ul li::before { content: '→'; color: var(--blue-500); font-weight: 700; }
.aside-card .legal { font-size: 0.8rem; color: var(--gray-400); margin-top: 12px; line-height: 1.5; }

/* PQR confirmation */
.confirmation {
  text-align: center;
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}
.confirmation .ok-ico {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-glow);
}
.confirmation h1 { color: var(--navy-700); margin-bottom: 10px; }
.confirmation .radicado {
  display: inline-block;
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-700);
  letter-spacing: 0.05em;
}
.confirmation p { color: var(--gray-600); margin-bottom: 8px; }

/* alert */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9rem;
  border: 1px solid;
}
.alert--error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert--success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert--info { background: #eff6ff; color: #1e3a8a; border-color: #bfdbfe; }

/* ---------- Video gallery (mecanismos-filtrado) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1638;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), opacity 0.25s var(--ease);
}
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-thumb:hover img { transform: scale(1.05); opacity: 0.85; }
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.video-thumb[data-loaded="1"]::after { display: none; }
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.95);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-thumb:hover .video-play-btn {
  transform: scale(1.12);
  background: rgba(255, 0, 0, 1);
}
.video-thumb[data-loaded="1"] .video-play,
.video-thumb[data-loaded="1"] img { display: none; }
.video-thumb:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 3px; }

.video-info {
  padding: 22px 24px 24px;
}
.video-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 8px 0 8px;
  line-height: 1.35;
}
.video-info p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}
.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--gray-50);
  color: var(--blue-500);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gray-100);
}
.video-tag i { font-size: 0.85rem; }

/* ---------- Normatividad ---------- */
.norm-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.norm-category-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gray-100);
}
.norm-category-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.norm-category-head p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
.norm-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.norm-icon--crc { background: linear-gradient(135deg, #1e88e5, #0a1f5c); }
.norm-icon--ley { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.norm-icon--dec { background: linear-gradient(135deg, #f59e0b, #b45309); }
.norm-icon--sic { background: linear-gradient(135deg, #ef4444, #991b1b); }
.norm-icon--doc { background: linear-gradient(135deg, #10b981, #065f46); }

.norm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.norm-list li { margin: 0; }
.norm-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--gray-800);
  transition: all 0.2s var(--ease);
}
.norm-list a:hover {
  background: var(--white);
  border-color: var(--cyan-400);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}
.norm-list a > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.norm-list strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}
.norm-list small {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.norm-list a > i {
  flex-shrink: 0;
  color: var(--blue-500);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.norm-list a:hover > i {
  color: var(--cyan-400);
  transform: translate(2px, -2px);
}
.norm-list a > i.fa-whatsapp { color: #25D366; }
.norm-list a:hover > i.fa-whatsapp { color: #128C7E; transform: scale(1.1); }

/* ---------- Reveal animations ---------- */
.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) {
  .hero {
    background:
      linear-gradient(180deg, rgba(3, 16, 58, 0.35), rgba(10, 36, 99, 0.55)),
      url('../img/banner_fondo_fibra.png') center center / cover no-repeat,
      var(--grad-primary);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-art { order: -1; height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-logo { max-width: 280px; width: 60%; }
  .speed-card.c1 { top: -10px; left: 0; }
  .speed-card.c2 { bottom: -20px; right: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 24px; }
  .feature:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 16px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-highlight { grid-template-columns: 1fr; gap: 32px; }
  .feature-highlight-image { max-width: 560px; margin: 0 auto; }
  .ads-arrow { width: 44px; height: 44px; font-size: 0.9rem; }
  .ads-arrow--prev { left: 12px; }
  .ads-arrow--next { right: 12px; }
  .ads-slide { aspect-ratio: 3 / 2; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px 32px; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pqr-layout { grid-template-columns: 1fr; }
  .pqr-aside { position: static; }

  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100dvh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    padding: calc(var(--header-h) + 20px) 24px max(24px, env(safe-area-inset-bottom, 0px));
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-mobile.is-open { transform: translateX(0); }
  .nav-mobile a {
    display: block;
    padding: 15px 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy-700);
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.3;
  }
  .nav-mobile .btn { width: 100%; margin-top: 18px; }
  .nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--navy-700);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
    z-index: 2;
  }
  .nav-mobile-close:hover,
  .nav-mobile-close:focus-visible {
    background: var(--blue-500);
    color: var(--white);
    transform: rotate(90deg);
    outline: none;
  }
}

/* ---------- Ajustes específicos de PQR para tablets ---------- */
@media (max-width: 1200px) {
  .pqr-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pqr-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .page-hero { padding: calc(var(--header-h) + 56px) 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
  .page-hero p { font-size: 0.95rem; }

  .pqr-layout { gap: 32px; }
  .pqr-form-card { padding: 32px 28px; }
  .form-step-title { font-size: 1.15rem; margin-bottom: 20px; }
  fieldset { margin-bottom: 26px; }

  .pqr-types {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .pqr-type .card { padding: 14px 10px; }
  .pqr-type .ico { font-size: 1.25rem; }
  .pqr-type .nm { font-size: 0.88rem; }
  .pqr-type .ds { font-size: 0.72rem; }

  .form-row { gap: 14px; margin-bottom: 14px; }
  .form-row.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .form-row.cols-3 .form-group:last-child { grid-column: 1 / -1; }

  .form-group input,
  .form-group select,
  .form-group textarea { padding: 11px 14px; font-size: 0.92rem; }

  .checkbox-row { padding: 14px 16px; }
  .checkbox-row label { font-size: 0.85rem; }
  .file-drop { padding: 18px; }

  .form-submit { padding-top: 20px; }
  .form-submit .btn { padding: 12px 22px; font-size: 0.92rem; }

  .pqr-aside {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .aside-card { padding: 22px 20px; }
  .aside-card h3 { font-size: 0.95rem; margin-bottom: 12px; }
  .aside-card h3 .ic { width: 28px; height: 28px; border-radius: 8px; font-size: 0.85rem; }
  .aside-card ul { font-size: 0.85rem; gap: 8px; }
  .aside-card .legal { font-size: 0.76rem; margin-top: 10px; }
}

/* Ajustes para celulares muy pequeños (iPhone SE, Androids compactos) */
@media (max-width: 480px) {
  .nav-mobile {
    padding: calc(var(--header-h) + 12px) 20px max(20px, env(safe-area-inset-bottom, 0px));
  }
  .nav-mobile a {
    padding: 13px 0;
    font-size: 0.98rem;
  }
  .nav-mobile-group-toggle {
    padding: 13px 0 !important;
    font-size: 0.98rem;
  }
  .nav-mobile-submenu a {
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
  }
  .nav-mobile .btn {
    margin-top: 14px;
    padding: 12px 20px;
    font-size: 0.92rem;
  }
  .nav-mobile-close {
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 60px;
    background: var(--grad-primary);
  }
  .hero-mobile-img {
    display: block;
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 18px;
    order: -2;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero-mobile-img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero-mobile-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.35) 0%, transparent 45%),
      radial-gradient(circle at 15% 85%, rgba(30, 136, 229, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-mobile-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 16, 58, 0.04), rgba(10, 36, 99, 0.02));
    pointer-events: none;
    z-index: 1;
  }
  .hero-art { display: none; }
  .hero-logo { max-width: 200px; width: 58%; }
  .speed-card { padding: 10px 14px; gap: 10px; }
  .speed-card .icon { width: 34px; height: 34px; font-size: 0.95rem; }
  .speed-card .v { font-size: 0.85rem; }
  .speed-card .l { font-size: 0.68rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; max-width: 320px; }
  .hero-stat { display: flex; align-items: baseline; gap: 12px; }
  .scroll-hint { display: none; }

  .features-grid { grid-template-columns: 1fr; padding: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .ads-carousel { padding: 56px 0 48px; }
  .ads-slide { aspect-ratio: 3 / 2; }
  .ads-arrow { width: 38px; height: 38px; }
  .ads-dots { bottom: 14px; gap: 7px; padding: 6px 10px; }
  .ads-dot { width: 9px; height: 9px; }
  .ads-dot.is-active { width: 22px; }

  .faq-item summary { padding: 18px 18px; gap: 12px; }
  .faq-q { font-size: 0.95rem; }
  .faq-icon { width: 30px; height: 30px; font-size: 0.75rem; }
  .faq-a { padding: 0 18px 20px; }
  .faq-a p { font-size: 0.92rem; }

  .pqr-form-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.cols-3 { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column-reverse; align-items: stretch; }
  .form-submit .btn { width: 100%; }

  .norm-category { padding: 22px 18px; }
  .norm-list { grid-template-columns: 1fr; }
  .norm-category-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .video-grid { grid-template-columns: 1fr; gap: 22px; }
  .video-play-btn { width: 64px; height: 64px; font-size: 1.3rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .legal { justify-content: center; }
}

/* ---------- Página Contáctanos ---------- */
.contact-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(3, 16, 58, 0.18);
}
.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 18px;
}
.contact-icon--wa   { background: linear-gradient(135deg, #25d366, #128c7e); }
.contact-icon--call { background: linear-gradient(135deg, #1e88e5, #0a1f5c); }
.contact-icon--mail { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.contact-icon--addr { background: linear-gradient(135deg, #f59e0b, #b45309); }
.contact-icon--time { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.contact-icon--pqr  { background: linear-gradient(135deg, #ef4444, #991b1b); }

.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--gray-600); font-size: 0.95rem; flex: 1; }
.contact-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-500);
  letter-spacing: 0.01em;
}
.contact-card-cta i { transition: transform 0.3s var(--ease); }
a.contact-card:hover .contact-card-cta i { transform: translateX(4px); }

/* Layout formulario + aside */
.contact-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}
.contact-aside { display: grid; gap: 24px; position: sticky; top: 110px; }

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-socials a:hover {
  background: var(--grad-primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mapa */
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #03103a;
}
.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-aside { position: static; }
  .contact-map-frame { aspect-ratio: 16 / 10; }
}
@media (max-width: 768px) {
  .contact-form-card { padding: 28px 22px; }
  .contact-map-frame { aspect-ratio: 4 / 5; }
}

/* ---------- Tratamiento de datos · Procedimientos y plazos ---------- */
.data-procedures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .data-procedures { grid-template-columns: 1fr; }
}

/* Bloque "Plazos legales" — encabezado */
.deadlines-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.deadlines-head h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: var(--navy-700);
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}
.deadlines-head h3 span { color: var(--blue-500); }
.deadlines-head p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

/* Grilla de tarjetas de plazo */
.deadlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.deadlines-grid .deadline-card--featured {
  grid-column: span 2;
}

.deadline-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deadline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.deadline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 16, 58, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
}
.deadline-card:hover::before { opacity: 1; }

.deadline-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #cffafe);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 6px;
}

.deadline-card-trámite {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 600;
  line-height: 1.35;
}

.deadline-card-time {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 2px;
}
.deadline-card-time .num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e88e5, #0a1f5c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.deadline-card-time .unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
}

.deadline-card-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Tarjeta destacada (consulta + reclamo) */
.deadline-card--featured {
  background: linear-gradient(135deg, #03103a 0%, #0a1f5c 60%, #1e88e5 100%);
  color: var(--white);
  border-color: transparent;
}
.deadline-card--featured::before {
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.25), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(124, 58, 237, 0.18), transparent 55%);
  opacity: 1;
}
.deadline-card--featured:hover {
  box-shadow: 0 24px 48px rgba(3, 16, 58, 0.3);
  border-color: rgba(0, 212, 255, 0.35);
}
.deadline-card--featured .deadline-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--cyan-300);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.deadline-card--featured .deadline-card-trámite { color: var(--cyan-300); }
.deadline-card--featured .deadline-card-time .num {
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.deadline-card--featured .deadline-card-time .unit { color: var(--white); opacity: 0.92; }
.deadline-card--featured .deadline-card-note { color: rgba(255,255,255,0.78); }

@media (max-width: 1024px) {
  .deadlines-grid { grid-template-columns: repeat(2, 1fr); }
  .deadlines-grid .deadline-card--featured { grid-column: span 1; }
}
@media (max-width: 560px) {
  .deadlines-grid { grid-template-columns: 1fr; gap: 14px; }
  .deadline-card { padding: 20px 18px; }
  .deadline-card-time .num { font-size: 2.2rem; }
}

/* ---------- Misión, Visión, Objetivos (dentro de Nosotros) ---------- */
.mvo-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}
.mvo-block-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.mvo-block-title {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}
.mvo-block-title span { color: var(--cyan-400); }
.mvo-block-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

.mvo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mvo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mvo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.22), transparent 55%),
    radial-gradient(circle at 10% 100%, rgba(30, 136, 229, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.mvo-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.mvo-card:hover::before { opacity: 1; }

.mvo-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #1e88e5, #0a1f5c);
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.28);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.mvo-card:nth-child(2) .mvo-card-icon {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32);
  border-color: rgba(167, 139, 250, 0.35);
}
.mvo-card:nth-child(3) .mvo-card-icon {
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.32);
  border-color: rgba(34, 211, 238, 0.35);
}

.mvo-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.14);
  color: var(--cyan-300);
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mvo-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.mvo-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .mvo-grid { grid-template-columns: 1fr; gap: 18px; }
  .mvo-block { margin-top: 56px; padding-top: 44px; }
}
@media (max-width: 768px) {
  .mvo-card { padding: 26px 22px; }
}

/* ---------- Toggle Combo / Solo Internet ---------- */
.plans-switch {
  position: relative;
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 36px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 6px 18px rgba(3, 16, 58, 0.06);
}

.plans-switch-btn {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-600);
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.plans-switch-btn i { font-size: 1rem; }
.plans-switch-btn:hover { color: var(--navy-700); }
.plans-switch-btn.is-active {
  color: var(--white);
  background: var(--grad-primary);
  box-shadow: 0 8px 22px rgba(10, 31, 92, 0.28);
}
.plans-switch-btn.is-active i { color: var(--cyan-300); }

.plans-switch-indicator { display: none; }

@media (max-width: 560px) {
  .plans-switch { flex-direction: column; width: 100%; max-width: 320px; padding: 6px; }
  .plans-switch-btn { width: 100%; justify-content: center; padding: 14px 18px; }
}

/* Carrusel de planes — flechas + loop infinito */
.plans-carousel {
  position: relative;
  padding: 0 64px;
}
.plans-carousel[hidden] { display: none; }
.plans-viewport {
  overflow: hidden;
  padding: 24px 4px;
  margin: -24px -4px;
}
.plans-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.plans-track .plan {
  flex: 0 0 calc((100% - 44px) / 3);
  margin: 0;
}

.plans-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 28px rgba(3, 16, 58, 0.14);
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--navy-700);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plans-arrow:hover {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(10, 31, 92, 0.32);
  transform: translateY(-50%) scale(1.08);
}
.plans-arrow:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}
.plans-arrow--prev { left: 0; }
.plans-arrow--next { right: 0; }

@media (max-width: 1024px) {
  .plans-carousel { padding: 0 52px; }
  .plans-track .plan { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
  .plans-carousel { padding: 0 0; }
  .plans-track .plan { flex: 0 0 100%; }
  .plans-arrow {
    top: auto;
    bottom: -68px;
    transform: none;
  }
  .plans-arrow:hover { transform: scale(1.08); }
  .plans-arrow--prev { left: calc(50% - 60px); }
  .plans-arrow--next { right: calc(50% - 60px); }
}

.plans-foot {
  text-align: center;
  margin: 56px 0 0;
  font-size: 0.94rem;
  color: var(--gray-600);
}
.plans-foot i {
  color: var(--blue-500);
  margin-right: 6px;
}

/* ---------- Coverage · Localidad placeholder ---------- */
.coverage-locality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.coverage-locality-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00d4ff, #1e88e5);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(0, 212, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.coverage-locality-text { display: flex; flex-direction: column; gap: 4px; line-height: 1.35; }
.coverage-locality-text strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.coverage-locality-text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .coverage-locality { gap: 14px; padding: 18px 20px; }
  .coverage-locality-icon { flex: 0 0 50px; width: 50px; height: 50px; font-size: 1.3rem; border-radius: 14px; }
}

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