/* =========================================================
   AMBULANCIAS ARAGONESAS — Hoja de estilos principal
   Sistema de diseño: premium, sanitario, institucional
   ========================================================= */

:root {
  /* Paleta corporativa */
  --navy-900: #0a1f3d;
  --navy-800: #0f2c54;
  --navy-700: #143a6e;
  --navy-600: #1c4b8a;
  --orange-600: #e8620f;
  --orange-500: #f2790c;
  --orange-400: #ff9436;
  --orange-50: #fff4ea;
  --white: #ffffff;
  --gray-50: #f6f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-300: #ccd2db;
  --gray-500: #78828f;
  --text-900: #16202e;
  --text-700: #3b4552;
  --text-500: #667180;

  /* Tipografía */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.06), 0 1px 3px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 31, 61, 0.08), 0 2px 6px rgba(10, 31, 61, 0.05);
  --shadow-lg: 0 20px 48px rgba(10, 31, 61, 0.14), 0 6px 16px rgba(10, 31, 61, 0.08);

  /* Radios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Layout */
  --container: 1300px;
  --header-h: 104px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
section { position: relative; }
/* Evita que la cabecera fija tape el inicio de la sección al usar el menú */
section[id] { scroll-margin-top: var(--header-h); }

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

@media (min-width: 768px) {
  .container { padding: 0 28px; }
}

.overflow-guard { overflow-x: hidden; }

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--orange-400); }

h1, .h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
h2, .h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy-900);
}
h3, .h3 {
  font-size: 1.34rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy-900);
}
.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  color: var(--text-700);
  line-height: 1.65;
}
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn-orange {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 98, 15, 0.28);
}
.btn-orange:hover { background: var(--orange-600); box-shadow: 0 12px 28px rgba(232, 98, 15, 0.36); transform: translateY(-1px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-300);
}
.btn-outline-navy:hover { border-color: var(--navy-700); background: var(--gray-50); }

.btn-outline-light {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

.btn-white {
  background: var(--white);
  color: var(--navy-900);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy-800);
  border-bottom: 2px solid var(--orange-500);
  padding-bottom: 2px;
  transition: gap .18s ease, color .18s ease;
}
.text-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.text-link:hover { gap: 10px; color: var(--orange-600); }
.text-link.on-dark { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10, 31, 61, 0.07);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(10, 31, 61, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* El logo se acerca al borde izquierdo compensando el padding del
   contenedor. El desplazamiento va sobre .brand, no sobre la fila
   completa, para no provocar desbordamiento horizontal. */
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: -22px; }
@media (min-width: 768px) { .brand { margin-left: -38px; } }
.brand img { height: 52px; width: auto; }
@media (min-width: 768px)  { .brand img { height: 62px; } }
@media (min-width: 1180px) { .brand img { height: 72px; } }
/* El logotipo ya incluye el nombre completo: el rótulo contiguo sobra */
.brand-name { display: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-700);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .18s ease;
}
.main-nav a:hover { color: var(--navy-900); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; align-items: center; gap: 22px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-phone .ic-call {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.header-phone .ic-call svg { width: 18px; height: 18px; }
.header-phone .num {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--orange-600);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.header-phone .num small {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-500);
}
.header-phone:hover .ic-call { background: var(--orange-500); color: #fff; transform: scale(1.06); }

.header-mobile-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.header-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--orange-500);
  background: var(--orange-50);
  color: var(--orange-600);
  flex-shrink: 0;
  transition: background .18s ease, color .18s ease;
}
.header-call-btn svg { width: 19px; height: 19px; }
.header-call-btn:hover { background: var(--orange-500); color: #fff; }
@media (min-width: 1180px) { .header-call-btn { display: none; } }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.hamburger span, .hamburger::before, .hamburger::after { display: none; }
.hamburger svg { width: 22px; height: 22px; color: var(--navy-900); }
.hamburger .icon-close { display: none; }
.hamburger.open .icon-open { display: none; }
.hamburger.open .icon-close { display: block; }

@media (min-width: 1180px) {
  .main-nav { display: block; }
  .header-cta { display: flex; }
  .header-mobile-actions { display: none; }
}

/* ---------- Menú móvil ---------- */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 490;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 24px 4px;
  padding: 16px 18px;
  background: var(--orange-50);
  border: 1.5px solid var(--orange-400);
  border-radius: var(--r-md);
}
.mobile-nav-phone .ic-call {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mobile-nav-phone .ic-call svg { width: 20px; height: 20px; }
.mobile-nav-phone small { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-500); margin-bottom: 2px; }
.mobile-nav-phone strong { font-size: 1.2rem; font-weight: 800; color: var(--orange-600); letter-spacing: -0.01em; }

.mobile-nav ul { display: flex; flex-direction: column; padding: 12px 24px 24px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-actions { padding: 20px 24px 100px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  /* Velo más suave: mantiene legible el texto pero deja identificar la foto.
     Se concentra a la izquierda, que es donde va el titular. */
  background:
    linear-gradient(180deg, rgba(10,20,38,0.55) 0%, rgba(10,31,61,0.60) 55%, rgba(9,26,51,0.72) 100%),
    linear-gradient(100deg, rgba(9,26,54,0.45) 0%, rgba(9,26,54,0.05) 60%);
}

.hero-dots {
  position: absolute;
  z-index: 2;
  right: 24px; bottom: 26px;
  display: flex;
  gap: 9px;
}
@media (min-width: 640px) { .hero-dots { right: 40px; bottom: 34px; } }
.hero-dot {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.hero-dot:hover { border-color: #fff; }
.hero-dot.is-active { background: var(--orange-500); border-color: var(--orange-500); transform: scale(1.15); }
.hero-content { position: relative; z-index: 1; padding: 150px 0 90px; }
.hero-content .eyebrow { color: var(--orange-400); }
.hero-content .eyebrow::before { background: var(--orange-400); }
.hero-content h1 { color: var(--white); max-width: 760px; margin: 18px 0 22px; }
.hero-content .lede { color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.88); }
.hero-trust-item svg { width: 19px; height: 19px; color: var(--orange-400); flex-shrink: 0; }

.hero-scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-cue .line { width: 1px; height: 30px; background: linear-gradient(rgba(255,255,255,0.9), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top;} 40% { opacity: 1; transform: scaleY(1); transform-origin: top;} 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom;} }
@media (min-width: 640px) { .hero-scroll-cue { display: flex; } }

/* ---------- Barra de confianza ---------- */
.trustbar {
  background: linear-gradient(165deg, #eef2f8 0%, #e6ecf5 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 46px 0;
}
/* Una cifra destacada + una frase de alcance */
.trustbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
@media (min-width: 820px) {
  .trustbar-inner { flex-direction: row; justify-content: center; gap: 48px; text-align: left; }
}
.trustbar-claim {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
@media (min-width: 820px) {
  .trustbar-claim { border-left: 3px solid var(--orange-500); padding-left: 26px; }
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
@media (min-width: 720px) { .trustbar-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.trustbar-item { text-align: center; }
.trustbar-num {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trustbar-num span { color: var(--orange-500); }
.trustbar-label {
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-500);
}

/* ---------- Franja corporativa de separación ----------
   Banda con el mismo degradado azul→naranja de las tarjetas de
   servicio, más un chevron perfilado que marca la continuidad
   hacia el siguiente bloque de la página. */
.stripe-divider {
  position: relative;
  z-index: 3;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--navy-800) 0%,
    var(--navy-600) 38%,
    var(--orange-500) 78%,
    var(--orange-400) 100%
  );
}
/* ---------- Chevrones diagonales de fondo ----------
   Formas perfiladas al lateral, tomadas del trazo diagonal de la
   rotulación. Muy sutiles: solo se usan en un par de secciones
   del inicio para dar profundidad sin recargar la página. */
.deco-chevrons {
  position: absolute;
  top: 62px;
  left: 30px;
  width: 86px;
  z-index: 0;
  pointer-events: none;
}
.deco-chevrons svg { display: block; width: 100%; height: auto; }
.deco-chevrons path {
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 4;
  stroke-linejoin: round;
  opacity: 0.5;
}
.deco-chevrons--right { left: auto; right: 30px; transform: scaleX(-1); }
/* Sobre fondo azul oscuro el naranja necesita algo más de presencia */
.bg-navy .deco-chevrons path { opacity: 0.62; }
/* En pantallas estrechas el contenido ocupa todo el ancho: se ocultan */
@media (max-width: 1180px) { .deco-chevrons { display: none; } }

/* ---------- Secciones genéricas ---------- */
.section { padding: 76px 0; }
.section-sm { padding: 56px 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .lede { color: rgba(255,255,255,0.78); }

.section-photo-bg { position: relative; overflow: hidden; }
.section-photo-bg-media { position: absolute; inset: 0; z-index: 0; }
.section-photo-bg-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; filter: saturate(0.7); }
.section-photo-bg-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,31,61,0.88), rgba(15,44,84,0.78));
}
.section-photo-bg > .container { position: relative; z-index: 1; }

/* ---------- Sección con vídeo de fondo (Proceso) ---------- */
.section-video-bg { position: relative; overflow: hidden; }
.section-video-bg-media {
  position: absolute; inset: 0; z-index: 0;
  background: var(--navy-900) url('../img/video-poster-proceso.jpg') center/cover no-repeat;
}
.section-video-bg-media video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.section-video-bg-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,20,38,0.7) 0%, rgba(10,31,61,0.78) 60%, rgba(9,26,51,0.85) 100%);
}
.section-video-bg > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .section-video-bg-media video { display: none; }
  .section-video-bg-media { background-size: cover; background-position: center; }
}

/* ---------- Sección servicios: fondo con más contraste ---------- */
/* Fondo gris azulado con veladuras naranja y azul. Se usa en todas las
   secciones claras de contenido para que ninguna quede en blanco liso. */
.section-services-bg,
.bg-soft {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef2f8 0%, #e6ecf5 55%, #e9edf6 100%);
}
.section-services-bg::before, .bg-soft::before,
.section-services-bg::after,  .bg-soft::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.section-services-bg::before, .bg-soft::before {
  width: 460px; height: 460px;
  top: -160px; right: -120px;
  background: rgba(242, 121, 12, 0.16);
}
.section-services-bg::after, .bg-soft::after {
  width: 420px; height: 420px;
  bottom: -180px; left: -140px;
  background: rgba(20, 58, 110, 0.14);
}
.section-services-bg > .container,
.bg-soft > .container { position: relative; z-index: 1; }
/* Alterna el lado de las veladuras para que dos secciones claras
   seguidas no repitan exactamente el mismo patrón. */
.bg-soft--flip::before { right: auto; left: -140px; }
.bg-soft--flip::after { left: auto; right: -120px; }

/* ---------- Tarjetas de servicio ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 860px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(20, 58, 110, 0.08);
  border-radius: var(--r-lg);
  padding: 38px 30px 34px;
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.09), 0 2px 8px rgba(10, 31, 61, 0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-700), var(--orange-500));
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(10, 31, 61, 0.16), 0 6px 16px rgba(10, 31, 61, 0.08); border-color: transparent; }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(242, 121, 12, 0.18);
}
.service-icon.navy { background: var(--navy-700); color: #fff; box-shadow: 0 6px 16px rgba(20, 58, 110, 0.28); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-700); font-size: 1.04rem; }
.service-card p + p { margin-top: 12px; }
.service-list { margin: 16px 0 4px; display: flex; flex-direction: column; gap: 8px; }
.service-list li { display: flex; align-items: center; gap: 9px; font-size: 0.97rem; color: var(--text-700); }
.service-list svg { width: 15px; height: 15px; color: var(--orange-500); flex-shrink: 0; }
.service-card .text-link { margin-top: auto; padding-top: 22px; }

/* ---------- Split feature (cobertura eventos) ---------- */
/* Bloque a sangre: la fotografía llega al borde de la pantalla y el
   texto se integra en el mismo plano, sin tarjeta ni sombra. */
/* z-index alto para que la fotografía pueda sobresalir por encima de
   las secciones contigua sin quedar tapada. */
.eventos-section { background: var(--navy-900); position: relative; z-index: 2; }
.eventos-inner { width: 100%; position: relative; z-index: 1; }

/* Fila de chevrones al inicio de la sección siguiente: prolonga
   visualmente la fotografía de eventos sobre el fondo azul. */
.chevron-row { display: none; }
@media (min-width: 940px) {
  .chevron-row {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 34%;
    max-width: 340px;
    z-index: 0;
    pointer-events: none;
  }
  .chevron-row svg { width: 100%; height: auto; display: block; }
}
.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  /* Sin fondo propio: lo aporta .eventos-section, para que la trama
     de chevrones quede visible por debajo. */
}
/* Dos mitades: la fotografía ocupa toda la altura del bloque. */
@media (min-width: 940px) { .split-feature { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.split-media { position: relative; min-height: 260px; }
/* El encuadre se ancla a la izquierda para que la ambulancia entre
   completa, morro incluido. Borde limpio, sin degradado. */
@media (min-width: 940px) {
  .split-media {
    min-height: 460px;
    height: auto;
    align-self: stretch;
    /* Sobresale por arriba y por abajo: refuerza la sensación de recorte */
    margin: -46px 0;
    z-index: 2;
  }
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 10% center;
  position: absolute; inset: 0;
}
.split-body { padding: 40px 24px 46px; color: var(--white); }
@media (min-width: 640px) { .split-body { padding: 44px 40px 52px; } }
@media (min-width: 940px) {
  .split-body {
    padding: 48px 40px 56px 56px;
    max-width: 640px;
  }
}
@media (min-width: 1340px) { .split-body { padding-right: 6vw; } }
.split-body h2, .split-body h3 { color: var(--white); }
/* Tipografía algo más contenida que en el resto de secciones */
.split-body h2 { font-size: clamp(1.55rem, 2.5vw, 2rem); }
.split-body .lede { color: rgba(255,255,255,0.82); font-size: 1rem; margin: 16px 0; }
.split-body p + p.lede { margin-top: -6px; }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 28px 0 34px;
}
.check-grid li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.92); }
.check-grid svg { width: 17px; height: 17px; color: var(--orange-400); flex-shrink: 0; }

/* ---------- Por qué elegirnos ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (min-width: 860px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 28px 22px;
  transition: background .2s ease, transform .2s ease;
}
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.why-num { font-size: 2.1rem; font-weight: 800; color: var(--orange-400); letter-spacing: -0.02em; }
.why-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange-400); margin-bottom: 8px; display:block; }
.why-card p { font-size: 0.98rem; color: rgba(255,255,255,0.78); margin-top: 8px; }
.why-foot { max-width: 720px; margin: 46px auto 0; text-align: center; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 940px) { .about-grid { grid-template-columns: 0.95fr 1.05fr; gap: 64px; } }
.about-media { position: relative; }
.about-media-frame { position: relative; height: 340px; }
.about-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 1.4s ease;
}
.about-slide.is-active { opacity: 1; }
.about-dots {
  position: absolute;
  z-index: 2;
  right: 18px; bottom: 18px;
  display: flex;
  gap: 8px;
}
.about-dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.about-dot:hover { border-color: #fff; }
.about-dot.is-active { background: var(--orange-500); border-color: var(--orange-500); transform: scale(1.15); }
.about-media-badge {
  position: absolute;
  bottom: -22px; left: 24px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-media-badge .num { font-size: 1.7rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.about-media-badge .num span { color: var(--orange-500); }
.about-media-badge .lbl { font-size: 0.72rem; font-weight: 700; color: var(--text-500); text-transform: uppercase; letter-spacing: 0.06em; max-width: 110px; line-height: 1.3; }

.about-thumb {
  margin-top: 56px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 14px;
}
.about-thumb img { width: 160px; height: 108px; object-fit: cover; border-radius: 12px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.about-thumb p { font-size: 0.88rem; color: var(--text-700); line-height: 1.5; }
.about-thumb strong { display: block; color: var(--navy-900); font-size: 0.95rem; margin-bottom: 3px; }

.about-body p { color: var(--text-700); font-size: 1.04rem; margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 8px; }
.about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--orange-50);
  color: var(--navy-800);
  border-radius: var(--r-pill);
  font-size: 0.83rem;
  font-weight: 700;
}
.about-tag svg { width: 14px; height: 14px; color: var(--orange-600); }

/* ---------- Mapa Aragón > Península ---------- */
.map-section .container { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 940px) { .map-section .container { grid-template-columns: 1.4fr 1fr; gap: 50px; } }
.map-visual {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-visual svg { width: 100%; height: auto; max-width: 260px; }
.map-legend { display: flex; justify-content: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.map-legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--text-700); }
.map-dot { width: 10px; height: 10px; border-radius: 50%; }
.map-dot.origin { background: var(--orange-500); }
.map-dot.reach { background: var(--navy-600); }

.map-column { display: flex; flex-direction: column; gap: 16px; }
.map-visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-visual-sm { padding: 16px; }
.map-visual-sm svg { max-width: 132px; }
.map-visual-sm .map-legend { gap: 12px; margin-top: 10px; }
.map-visual-sm .map-legend-item { font-size: 0.7rem; gap: 6px; }
.map-visual-sm .map-dot { width: 8px; height: 8px; }

.map-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 250px;
}
.map-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.map-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,26,51,0.45) 0%, rgba(9,26,51,0) 45%);
}
.map-photo-badge {
  position: absolute;
  z-index: 1;
  left: 16px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
}
.map-photo-badge svg { width: 15px; height: 15px; color: var(--orange-600); flex-shrink: 0; }
.map-photo-badge span { font-size: 0.8rem; font-weight: 800; color: var(--navy-900); white-space: nowrap; }

.spain-path { fill: var(--gray-100); stroke: var(--gray-300); stroke-width: 1.2; }
.aragon-path { fill: var(--orange-50); stroke: var(--orange-500); stroke-width: 1.6; }
.europe-path { fill: var(--gray-100); stroke: var(--gray-300); stroke-width: 1.2; }
.spain-highlight { fill: var(--orange-50); stroke: var(--orange-500); stroke-width: 1.6; }
.link-line { fill: none; stroke: var(--navy-600); stroke-width: 1.3; stroke-dasharray: 3 4; opacity: 0.5; }
.dest-dot { fill: var(--navy-600); opacity: 0.85; }
.pulse-ring { fill: none; stroke: var(--navy-600); stroke-width: 1.4; opacity: 0.55; transform-origin: center; animation: pulse 3.2s ease-out infinite; }
.pulse-ring.d2 { animation-delay: 1.1s; }
.pulse-ring.d3 { animation-delay: 2.2s; }
@keyframes pulse { 0% { transform: scale(0.55); opacity: 0.7; } 100% { transform: scale(1.9); opacity: 0; } }
.origin-dot { fill: var(--orange-500); stroke: #fff; stroke-width: 2; }

/* ---------- Proceso ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  counter-reset: step;
  margin-top: 50px;
}
@media (min-width: 860px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { position: relative; padding-top: 8px; }
.process-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange-500);
  opacity: 0.9;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--text-700); font-size: 1.03rem; }
.bg-navy .process-step p { color: rgba(255,255,255,0.78); }
.process-connector {
  display: none;
}
@media (min-width: 860px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px; right: -16px;
    width: 32px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--gray-300) 0 6px, transparent 6px 11px);
  }
  .bg-navy .process-step:not(:last-child)::after {
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.32) 0 6px, transparent 6px 11px);
  }
}

/* ---------- Opiniones ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 46px;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review-stars { display: flex; gap: 3px; color: var(--orange-500); }
.review-stars svg { width: 17px; height: 17px; }
.review-source { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--text-500); }
.review-source svg { width: 16px; height: 16px; }
.review-text { color: var(--text-900); font-size: 1.08rem; margin-bottom: 20px; line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.review-name { font-weight: 700; font-size: 0.92rem; color: var(--navy-900); }
.review-date { font-size: 0.8rem; color: var(--text-500); }
.reviews-cta { text-align: center; margin-top: 40px; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final .section-head { margin-left: auto; margin-right: auto; }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.cta-phone-link svg { width: 19px; height: 19px; color: var(--orange-400); flex-shrink: 0; }
.cta-phone-link strong { color: var(--orange-400); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.cta-final-note { margin-top: 22px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }

.contact-info-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px;
}
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 20px; height: 20px; color: var(--orange-400); }
.contact-row .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); font-weight: 700; margin-bottom: 4px; }
.contact-row .val { font-weight: 600; font-size: 0.98rem; }
.contact-row .val a { border-bottom: 1px solid rgba(255,255,255,0.35); }
.contact-row-phone .ic-phone { background: rgba(242, 121, 12, 0.18); }
.phone-highlight {
  color: var(--orange-400) !important;
  font-weight: 800 !important;
  font-size: 1.15rem;
  border-bottom: none !important;
  letter-spacing: -0.01em;
}
.contact-map { margin-top: 22px; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15) contrast(1.02); }
.map-consent {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  border: 0;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  transition: background .18s ease;
}
.map-consent:hover { background: rgba(255,255,255,0.1); }
.map-consent svg { width: 26px; height: 26px; color: var(--orange-400); margin-bottom: 2px; }
.map-consent-title { font-weight: 700; font-size: 0.98rem; }
.map-consent-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.45; }
.emergency-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(242, 121, 12, 0.12);
  border: 1px solid rgba(242, 121, 12, 0.35);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  gap: 10px;
}
.emergency-note svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 28px;
}
@media (min-width: 560px) { .contact-form-card { padding: 40px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--navy-900); margin-bottom: 7px; }
.field .opt { font-weight: 500; color: var(--text-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--gray-50);
  /* Sin color explícito, un navegador en modo oscuro pinta el texto en
     blanco sobre este fondo claro y no se lee lo que se escribe. */
  color: var(--text-900);
  color-scheme: light;
  transition: border-color .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-500); opacity: 1; }
.field select option { color: var(--text-900); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
  color: var(--text-900);
}
/* El autocompletado del navegador también fuerza sus propios colores */
.field input:-webkit-autofill,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-900);
  -webkit-box-shadow: 0 0 0 40px var(--white) inset;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-foot { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.privacy-note { font-size: 0.78rem; color: var(--text-500); line-height: 1.55; }
.privacy-note a { text-decoration: underline; }
.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #eefaf0;
  border: 1px solid #bfe8c6;
  color: #1c6b2c;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.form-error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #fdeeee;
  border: 1px solid #f2c4c4;
  color: #a02020;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-error.show { display: flex; }
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* Campo trampa antispam: fuera de la vista y del recorrido con teclado */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 56px; }
.footer-brand-name { font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-col .fc-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer-col .fc-row svg { width: 16px; height: 16px; color: var(--orange-400); flex-shrink: 0; margin-top: 3px; }
.fc-phone { color: var(--orange-400) !important; font-weight: 800 !important; font-size: 1rem; }
.footer-badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 8px;
}
.footer-badge img { height: 26px; width: auto; border-radius: 6px; background: #fff; padding: 2px; }
.footer-badge span { font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.85); }

.footer-mini {
  margin-top: 20px;
  opacity: 0.8;
  transition: opacity .25s ease;
}
.footer-mini:hover { opacity: 1; }
.footer-mini img { height: 60px; width: auto; display: block; }
.footer-bottom {
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal-links a:hover { color: #fff; }
.footer-emergency { font-size: 0.78rem; color: rgba(255,255,255,0.55); padding: 16px 0 0; text-align: center; border-top: 1px dashed rgba(255,255,255,0.12); margin-top: 4px; }

/* ---------- Barra móvil fija ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 480;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 20px rgba(10,31,61,0.1);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.92rem;
}
.mobile-bar svg { width: 17px; height: 17px; }
.mobile-bar .mb-contact { background: var(--gray-100); color: var(--navy-900); }
.mobile-bar .mb-cta { background: var(--orange-500); color: #fff; }
@media (min-width: 1180px) { .mobile-bar { display: none; } }
body { padding-bottom: 78px; }
@media (min-width: 1180px) { body { padding-bottom: 0; } }

/* ---------- Animaciones al hacer scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Páginas legales ---------- */
.legal-page { padding: 150px 0 100px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page .updated { font-size: 0.85rem; color: var(--text-500); margin-bottom: 40px; }
.legal-placeholder {
  background: var(--orange-50);
  border: 1px dashed var(--orange-500);
  border-radius: var(--r-md);
  padding: 22px 24px;
  font-size: 0.92rem;
  color: var(--text-700);
  margin-bottom: 36px;
}
.legal-placeholder strong { color: var(--navy-900); }
/* Solo el primero hace de título; el resto va en línea dentro del texto */
.legal-placeholder > strong:first-child { display: block; margin-bottom: 6px; }
.legal-page h2 { font-size: 1.2rem; margin: 34px 0 12px; }
.legal-page p { color: var(--text-700); margin-bottom: 14px; }
.legal-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
  color: var(--text-700);
}
.legal-list li { margin-bottom: 8px; line-height: 1.6; }
.legal-page a { color: var(--navy-700); text-decoration: underline; }
.legal-page a:hover { color: var(--orange-600); }
