/*
 * Sistemas Venezuela — Stylesheet v8
 * Sistema de diseño minimalista y compacto sobre la paleta oficial de marca:
 * Persian Blue #072AC8 · Dodger Blue #1E96FC · Icy Blue #A2D6F9 · Bright Lemon #FCF300 · School Bus Yellow #FFC600
 * Componentes genéricos reutilizables (.card, .grid-*, .chip, .check-list) — sin duplicación por sección.
 * Tipografía del sistema, transiciones CSS ligeras, cero JavaScript de presentación.
 */

:root {
  /* Marca */
  --persian-blue: #072AC8;
  --dodger-blue: #1E96FC;
  --icy-blue: #A2D6F9;
  --bright-lemon: #FCF300;
  --school-bus-yellow: #FFC600;

  /* Derivados */
  --ink: #0B1023;
  --navy: #060D2B;
  --text-muted: #555D75;
  --text-on-dark: #EAF2FC;
  --text-on-dark-muted: #9FB0CE;

  --surface: #FFFFFF;
  --surface-tint: #F4F8FD;
  --surface-blue: rgba(7, 42, 200, 0.05);
  --surface-icy: rgba(162, 214, 249, 0.22);
  --surface-yellow: rgba(255, 198, 0, 0.14);

  --line: rgba(11, 16, 35, 0.08);
  --line-strong: rgba(11, 16, 35, 0.14);

  /* Tipografía */
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace;

  /* Geometría */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --shadow-card: 0 1px 2px rgba(11, 16, 35, 0.04), 0 10px 28px -14px rgba(11, 16, 35, 0.10);
  --shadow-lift: 0 2px 4px rgba(11, 16, 35, 0.05), 0 20px 40px -18px rgba(7, 42, 200, 0.18);
}

/* ── BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

body {
  font-family: var(--font);
  background-color: var(--surface);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--icy-blue);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

.max-w-4xl { max-width: 880px; }
.max-w-3xl { max-width: 740px; }

.text-blue { color: var(--persian-blue); }

/* ── NAVBAR ── */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-logo svg { flex-shrink: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.nav-item:hover {
  color: var(--ink);
  background: var(--surface-blue);
}

.nav-item.active { color: var(--persian-blue); }

/* Dropdown de navegación (CSS puro, sin JS) */
.nav-has-dropdown {
  position: relative;
}

.nav-item.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-trigger svg {
  transition: transform 0.2s var(--ease);
}

.nav-has-dropdown:hover .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.nav-dropdown a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.nav-dropdown a:hover {
  background: var(--surface-blue);
  color: var(--persian-blue);
}

.nav-dropdown .nav-dropdown-hint {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px 4px;
}

.btn-navbar {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--persian-blue);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-navbar:hover {
  background: #0A34E6;
  transform: translateY(-1px);
}

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-primary {
  background: var(--persian-blue);
  color: #fff;
}

.btn-primary:hover {
  background: #0A34E6;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  background: transparent;
  color: var(--persian-blue);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--persian-blue);
  background: var(--surface-blue);
}

.btn-yellow {
  background: var(--school-bus-yellow);
  color: var(--ink);
}

.btn-yellow:hover {
  background: var(--bright-lemon);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -14px rgba(255, 198, 0, 0.5);
}

/* Botón claro sobre fondos oscuros (banner CTA) */
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── SECCIONES ── */
.section { padding: 64px 0; }

.bg-white { background: var(--surface); }
.bg-tint { background: var(--surface-tint); }

.section-header {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--persian-blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--ink);
}

.section-sub {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ── HERO (HOME) ── */
.hero-section {
  position: relative;
  padding: 110px 0 56px;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.bg-glow-top {
  top: -340px;
  right: -180px;
  width: 820px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(162, 214, 249, 0.38), rgba(30, 150, 252, 0.08) 60%, transparent);
}

/* Layout asimétrico: copy + panel de producto */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--persian-blue);
  background: var(--surface-blue);
  border: 1px solid rgba(7, 42, 200, 0.14);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-heading {
  position: relative;
  z-index: 0;
  font-size: clamp(36px, 5.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--ink);
}

/* Subrayado trazado a mano, no degradado de texto */
.hl {
  position: relative;
  white-space: nowrap;
}

.hl::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.02em;
  height: 0.32em;
  background: var(--bright-lemon);
  border-radius: 2px 8px 3px 10px;
  transform: rotate(-0.6deg);
  z-index: -1;
}

.hero-paragraph {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Prueba concreta bajo los botones */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.proof-item .proof-num {
  display: block;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.proof-item .proof-label {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ── PANEL DE PRODUCTO (mock estático) ── */
.hero-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(11, 16, 35, 0.04), 0 32px 64px -32px rgba(7, 42, 200, 0.28);
  overflow: hidden;
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--surface-tint);
  border-bottom: 1px solid var(--line);
}

.panel-dots {
  display: flex;
  gap: 5px;
}

.panel-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.panel-body { padding: 16px; }

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.panel-row + .panel-row { margin-top: 8px; }

.panel-row-main {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.panel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--surface-icy);
  color: var(--persian-blue);
  font-size: 11px;
  font-weight: 700;
}

.panel-name {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-meta {
  font-size: 11.5px;
  color: var(--text-muted);
}

.panel-tag {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.tag-done { background: var(--surface-blue); color: var(--persian-blue); }
.tag-wait { background: var(--surface-yellow); color: #8A6400; }

/* Notificación de WhatsApp saliendo del panel */
.panel-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px 16px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--text-on-dark);
}

.panel-toast svg { flex-shrink: 0; color: var(--school-bus-yellow); }

.panel-toast strong {
  display: block;
  font-size: 12.5px;
  font-weight: 650;
  color: #fff;
}

.panel-toast span {
  font-size: 11.5px;
  color: var(--text-on-dark-muted);
}

/* Enlaces rápidos a sistemas bajo el hero */
.hero-links {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.hero-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero-links a:hover {
  color: var(--persian-blue);
  border-color: rgba(30, 150, 252, 0.45);
}

.hero-links a.link-more {
  color: var(--persian-blue);
  font-weight: 600;
}

/* ── HERO DE PÁGINA INTERNA (más compacto) ── */
.page-hero {
  position: relative;
  padding: 110px 0 44px;
  text-align: center;
  overflow: hidden;
}

.page-hero .bg-glow-top {
  top: -300px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 860px;
  height: 560px;
}

.page-hero .hero-heading { font-size: clamp(30px, 4.6vw, 48px); }

.hero-wrap {
  position: relative;
  max-width: 800px;
}

.page-hero .hero-paragraph { margin: 20px auto 0; max-width: 600px; }
.page-hero .hero-buttons { justify-content: center; }

/* Variante con panel de producto a dos columnas (páginas de sistema) */
.page-hero.has-panel {
  text-align: left;
  padding-bottom: 60px;
}

.page-hero.has-panel .bg-glow-top {
  top: -340px;
  left: auto;
  right: -180px;
  transform: none;
}

.page-hero.has-panel .hero-heading { font-size: clamp(32px, 4.6vw, 50px); }
.page-hero.has-panel .hero-paragraph { margin: 20px 0 0; max-width: 520px; }
.page-hero.has-panel .hero-buttons { justify-content: flex-start; }

/* ── GRILLAS GENÉRICAS ── */
.grid {
  display: grid;
  gap: 14px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── TARJETA GENÉRICA ── */
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(30, 150, 252, 0.35);
}

.card-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}

.card-title {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.card-title-lg {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 7px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--persian-blue);
  text-decoration: none;
}

.card-link svg { transition: transform 0.2s var(--ease); }
.card-link:hover svg,
a.card:hover .card-link svg { transform: translateX(3px); }

/* Tarjeta como enlace completo */
a.card { text-decoration: none; color: inherit; }

/* Tarjeta oscura (marca) */
.card-dark {
  background: linear-gradient(150deg, var(--navy), #0A1650);
  border-color: transparent;
}

.card-dark .card-title,
.card-dark .card-title-lg { color: #fff; }
.card-dark .card-desc { color: var(--text-on-dark-muted); }

.card-dark .card-link { color: var(--school-bus-yellow); }

.card-dark .icon-badge {
  background: rgba(255, 198, 0, 0.16);
  color: var(--school-bus-yellow);
}

/* Cabecera de tarjeta: icono + chip alineados */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* ── ICONO EN BADGE ── */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--surface-icy);
  color: var(--persian-blue);
}

.icon-badge-sm { width: 30px; height: 30px; border-radius: 9px; }

/* ── CHIPS ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface-tint);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.chip-check {
  color: var(--persian-blue);
  font-weight: 700;
  font-size: 12px;
}

.chip-blue {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--surface-blue);
  border-color: transparent;
  color: var(--persian-blue);
  padding: 4px 11px;
}

.chip-amber {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--surface-yellow);
  border-color: transparent;
  color: #8A6400;
  padding: 4px 11px;
}

.chip-icy {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--surface-icy);
  border-color: transparent;
  color: #0A5EA8;
  padding: 4px 11px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto;
}

/* ── NÚMERO DE PASO (PROCESO) ── */
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dodger-blue);
  margin-bottom: 10px;
}

/* ── CHECKLIST (beneficios / características) ── */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 6px 0;
}

.check-list .check,
.card-list .check {
  color: var(--persian-blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* Lista con checks dentro de una tarjeta */
.card-list {
  list-style: none;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  padding: 5px 0;
}

/* ── BLOQUE A MEDIDA + CONFIANZA ── */
.custom-system-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.custom-system-content h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.custom-system-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.custom-system-buttons { margin-top: 22px; }

.custom-system-visual {
  background: linear-gradient(160deg, var(--navy) 0%, #0A1A5C 100%);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  color: var(--text-on-dark);
}

.trust-header {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-item + .trust-item { margin-top: 16px; }

.trust-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 198, 0, 0.15);
  color: var(--school-bus-yellow);
}

.trust-title {
  font-size: 15px;
  font-weight: 650;
  color: #fff;
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 17px 4px;
  transition: color 0.2s var(--ease);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--persian-blue);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-question { color: var(--persian-blue); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 0 4px 18px;
  max-width: 640px;
}

/* ── CITA / MENSAJE COMERCIAL ── */
.quote-band {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quote-band blockquote {
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--ink);
}

.quote-band blockquote::before { content: '“'; color: var(--school-bus-yellow); font-weight: 700; }
.quote-band blockquote::after { content: '”'; color: var(--school-bus-yellow); font-weight: 700; }

.quote-brand {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--persian-blue);
}

/* ── CTA ── */
.section-cta { padding: 24px 0 72px; }

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--persian-blue) 0%, #0D4BE0 55%, var(--dodger-blue) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
}

.cta-glow {
  top: -160px;
  right: -110px;
  width: 440px;
  height: 440px;
  background: radial-gradient(closest-side, rgba(162, 214, 249, 0.35), transparent 70%);
}

.cta-content { position: relative; }

.cta-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bright-lemon);
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: #fff;
}

.cta-desc {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(234, 242, 252, 0.85);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.main-footer {
  background: var(--surface-tint);
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.9fr 1fr 1.1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.logo-footer { font-size: 15px; }

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-link-item {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.footer-link-item:hover { color: var(--persian-blue); }

.footer-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-seo-tags span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

.footer-bottom-bar {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── PÁGINA: CONTACTO ── */
.section-contacto { padding: 16px 0 72px; }

.contact-whatsapp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-whatsapp-row .o-divider {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.form-input {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}

.form-input::placeholder { color: #9AA1B5; }

.form-input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--dodger-blue);
  box-shadow: 0 0 0 4px rgba(30, 150, 252, 0.14);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555D75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .custom-system-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-split { grid-template-columns: 1fr; gap: 44px; }
  .hero-paragraph { max-width: 620px; }
  .hero-panel { max-width: 460px; }
}

@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .hero-section { padding: 96px 0 44px; }
  .page-hero { padding: 96px 0 36px; }
  .section-header { margin-bottom: 28px; }

  .hero-proof { gap: 18px; }
  .hero-links { margin-top: 32px; }
  .hl { white-space: normal; }

  .nav-menu .nav-item,
  .nav-menu .nav-has-dropdown { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .cta-banner { padding: 40px 20px; }
  .contact-card { padding: 26px 18px; }
  .hero-buttons .btn { width: 100%; }
  .form-actions { justify-content: stretch; }
  .form-actions .btn { width: 100%; }
}
