/* ============================================================
   DESIGN TOKENS — PIEDRA CÁLIDA (minimal, 3 familias)
   ============================================================ */
:root {
  /* ── Surfaces — Piedra Cálida (notablemente más oscuro que blanco) ── */
  --cream:        #ECEAE4;   /* piedra perla */
  --cream-alt:    #E4E1D8;   /* piedra lino */
  --cream-card:   #DDDAD1;   /* piedra suave */
  --cream-deep:   #D5D1C7;   /* piedra honda */

  /* ── Text — Azul Abismo ── */
  --ink:          #002147;   /* Oxford Blue — 14.1:1 en cream ✓ */
  --ink-soft:     #0A3560;   /* azul noche — 9.5:1 ✓ */
  --muted:        #3D6080;   /* pizarra marina — 4.99:1 ✓ */

  /* ── Pacific — único acento azul ── */
  --pacific:      #003F88;   /* interactivo — 7.7:1 ✓ */
  --pacific-mid:  #1A6FAF;   /* claro */
  --pacific-pale: #D8E9F7;   /* tinte (ajustado a fondo más oscuro) */

  /* ── Terracota — único acento cálido ── */
  --orange:       #A84000;   /* terracota quemada — 4.8:1 ✓ */
  --orange-light: #C85200;   /* crepúsculo (gradiente de botón) */

  /* ── Borders — derivados del azul marino ── */
  --border:       rgba(0, 33, 71, 0.12);
  --border-warm:  rgba(168, 64, 0, 0.20);
  --border-cool:  rgba(0, 63, 136, 0.18);

  /* ── Glass surfaces — ajustado al nuevo fondo ── */
  --surface-glass:      rgba(236, 234, 228, 0.88);
  --surface-glass-soft: rgba(236, 234, 228, 0.97);

  /* ── Shadows — azul marino, no negro puro ── */
  --shadow-soft:     0 2px 8px  rgba(0, 33, 71, 0.09), 0 8px 24px  rgba(0, 33, 71, 0.11);
  --shadow-card:     0 4px 16px rgba(0, 33, 71, 0.10), 0 16px 40px rgba(0, 33, 71, 0.13);
  --shadow-modal:    0 8px 40px rgba(0, 33, 71, 0.20), 0 32px 80px rgba(0, 33, 71, 0.15);
  --shadow-carousel: 0 4px 20px rgba(0, 33, 71, 0.10), 0 16px 48px rgba(0, 33, 71, 0.13);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px }
::-webkit-scrollbar-track { background: var(--cream-alt) }
::-webkit-scrollbar-thumb { background: var(--pacific); border-radius: 3px }

/* ============================================================
   HEADER — glassmorphism con tinte perlado
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(230, 240, 252, 0.05) 50%,
      rgba(236, 234, 228, 0.02) 100%
    ),
    var(--surface-glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(0, 33, 71, 0.10);
  transition: background 0.3s;
}

.header--sticky {
  position: sticky;
  top: 0;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(230, 240, 252, 0.04) 100%
    ),
    var(--surface-glass-soft);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo__img { height: 44px; width: auto }

.logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1.1;
}

.logo__text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pacific);
  margin-top: 1px;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

nav a:hover { color: var(--ink) }

.nav__cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px rgba(168, 64, 0, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(168, 64, 0, 0.38);
}

/* ============================================================
   LANG TOGGLE
   ============================================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-cool);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-toggle__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  padding: 6px 10px;
  transition: background 0.18s, color 0.18s;
}

.lang-toggle__btn--active {
  background: var(--ink);
  color: #fff;
}

.lang-toggle__btn:not(.lang-toggle__btn--active):hover {
  background: var(--pacific-pale);
  color: var(--pacific);
}

/* ============================================================
   BACK BUTTON (privacy page)
   ============================================================ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pacific);
  text-decoration: none;
  border: 1px solid var(--border-cool);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.back-btn:hover {
  background: var(--pacific-pale);
  border-color: var(--pacific);
}

/* ============================================================
   HERO — dos columnas
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Glow terracota derecha + azul fondo: sutil, no distrae */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(168, 64, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 50% 95%, rgba(0, 33, 71, 0.05) 0%, transparent 55%),
    var(--cream);
}

/* Patrón de nodos (dots) — representa la red BajaNet */
.hero__lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 33, 71, 0.09) 1.5px, transparent 1.5px);
  background-size: 48px 48px;
}

.hero__layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 120px 6% 80px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 64, 0, 0.07);
  border: 1px solid rgba(168, 64, 0, 0.22);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.hero__eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%       { opacity: 0.5; transform: scale(1.4) }
}

h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Gradiente monofamilia: terracota → naranja sunset */
.grad {
  background: linear-gradient(135deg, var(--orange-light) 0%, #E8841A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subhead {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.perk-chip {
  font-size: 12px;
  font-weight: 500;
  background: var(--cream-card);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 5px 13px;
  border-radius: 20px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__phones {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--cream-card);
  box-shadow: var(--shadow-carousel);
}

.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel__slide--active { opacity: 1 }

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.carousel__dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.3s;
}

.carousel__dot--active {
  background: #fff;
  width: 22px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(168, 64, 0, 0.26), 0 4px 20px rgba(168, 64, 0, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 20px rgba(168, 64, 0, 0.36),
    0 14px 40px rgba(168, 64, 0, 0.20),
    0 0 28px rgba(200, 82, 0, 0.16);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--border-cool);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--pacific);
  color: var(--pacific);
  background: var(--pacific-pale);
}

/* ============================================================
   PHONE ITEMS
   ============================================================ */
.phone-item { font-size: 13px; color: var(--muted) }
.phone-item strong { color: var(--ink-soft); font-weight: 600; margin-right: 6px }
.phone-item a { color: var(--pacific); text-decoration: none; font-weight: 500 }
.phone-item a:hover { color: var(--ink) }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 0 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-alt);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stats__item {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stats__item:first-child { padding-left: 0 }
.stats__item:last-child  { border-right: none }
.stats__item:hover       { background: rgba(0, 33, 71, 0.04) }

.stats__num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--pacific-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label { font-size: 13px; color: var(--muted); font-weight: 400 }

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 96px 6% }

.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.sec-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 60px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--cream-alt) }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.benefits__item {
  padding: 32px 28px;
  background: var(--cream);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

/* Destello del sol sobre el agua */
.benefits__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent      0%,
    var(--orange)     30%,
    var(--orange-light) 55%,
    var(--orange)     75%,
    transparent      100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.benefits__item:hover          { background: var(--cream-card); box-shadow: var(--shadow-soft) }
.benefits__item:hover::before  { opacity: 1 }

.benefits__num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(0, 33, 71, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.benefits__title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px }
.benefits__desc  { font-size: 13px; color: var(--muted); line-height: 1.65 }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream) }

.services__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.services__row {
  padding: 28px 32px;
  background: var(--cream-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

/* Shimmer vertical izquierdo: reflejo de luz sobre agua */
.services__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%; bottom: 15%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent      0%,
    var(--orange)     30%,
    var(--orange-light) 60%,
    transparent      100%
  );
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.25s;
}

.services__row:last-child { border-bottom: none }
.services__row:hover {
  background: var(--cream-card);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}
.services__row:hover::before { opacity: 1 }

.services__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--pacific-pale);
  color: var(--pacific);
  border: 1px solid var(--border-cool);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.services__name { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px }
.services__desc { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 600px }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage {
  background: var(--cream-alt);
  position: relative;
  overflow: hidden;
}

.coverage__glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle,
    rgba(0, 63, 136, 0.06) 0%,
    rgba(0, 33, 71, 0.03) 45%,
    transparent 65%
  );
  pointer-events: none;
}

.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.coverage__cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px }

.coverage__city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border-cool);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.coverage__city:hover { background: var(--pacific-pale); border-color: var(--pacific) }

.coverage__city::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pacific);
  flex-shrink: 0;
}

.coverage__visual {
  background: var(--surface-glass-soft);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(0, 33, 71, 0.11);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  gap: 24px;
  box-shadow: var(--shadow-card);
}

.coverage__stat-big {
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--pacific-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.coverage__stat-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.coverage__divider { width: 40px; height: 1px; background: var(--border-cool) }

.coverage__exp { text-align: center; font-size: 14px; color: var(--muted); line-height: 1.6 }
.coverage__exp strong { color: var(--pacific); font-weight: 600 }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream) }

.faq__list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
}

.faq__item            { border-bottom: 1px solid var(--border) }
.faq__item:last-child { border-bottom: none }

.faq__question {
  width: 100%;
  background: var(--cream-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  transition: background 0.2s;
}

.faq__question:hover { background: var(--pacific-pale) }

.faq__question span {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 33, 71, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
  font-size: 16px;
  transition: transform 0.25s, background 0.2s;
}

.faq__answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  background: var(--cream);
}

.faq__item--open .faq__answer {
  max-height: 200px;
  padding: 16px 28px 22px;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  background: rgba(0, 33, 71, 0.07);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream-alt) }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.contact__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s, transform 0.2s;
}

.contact__card:hover {
  border-color: var(--pacific);
  background: var(--pacific-pale);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.contact__card--static            { cursor: default }
.contact__card--static:hover      {
  border-color: var(--border);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transform: none;
}

.contact__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__icon--wa       { background: rgba(37, 211, 102, 0.10) }
.contact__icon--phone    { background: rgba(168, 64, 0, 0.08) }
.contact__icon--location { background: var(--pacific-pale) }

.contact__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.contact__value     { font-size: 15px; font-weight: 600; color: var(--ink) }
.contact__value--sm { font-size: 14px }
.contact__hint      { font-size: 12px; color: var(--muted); margin-top: 3px }

/* ============================================================
   SOCIAL
   ============================================================ */
.social { margin-top: 48px }

.social__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 18px;
}

.social__row { display: flex; gap: 10px; flex-wrap: wrap }

.social__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
}

.social__btn:hover { border-color: var(--pacific); color: var(--pacific); background: var(--pacific-pale) }
.social__btn svg   { width: 16px; height: 16px; flex-shrink: 0 }

/* ============================================================
   FOOTER — ancla oscura con nodos
   ============================================================ */
footer {
  background: linear-gradient(170deg, var(--ink) 0%, #003A6E 100%);
  border-top: none;
  padding: 36px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Patrón de nodos sobre fondo navy */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer__brand { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1 }
.footer__logo  { height: 32px }

.footer__name { font-size: 14px; font-weight: 700; color: rgba(236, 234, 228, 0.95) }

.footer__name small {
  display: block;
  font-size: 10px;
  color: rgba(236, 234, 228, 0.50);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer__copy {
  font-size: 12px;
  color: rgba(236, 234, 228, 0.50);
  text-align: right;
  position: relative;
  z-index: 1;
}
.footer__copy a { color: rgba(236, 234, 228, 0.80); text-decoration: none; font-weight: 500 }
.footer__copy a:hover { color: #fff; text-decoration: underline }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 6% 96px;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 14px;
}

.page-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-date {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
}

.page-intro {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.page-intro p            { margin-bottom: 16px }
.page-intro p:last-child { margin-bottom: 0 }

.privacy-section { margin-bottom: 36px }

.privacy-section h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pacific);
  margin-bottom: 16px;
}

.privacy-section h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.privacy-section p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-section p:last-child { margin-bottom: 0 }
.privacy-section ul           { padding-left: 22px; margin-bottom: 12px }

.privacy-section li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 6px;
}

.privacy-section a       { color: var(--pacific); font-weight: 500; text-decoration: none }
.privacy-section a:hover { text-decoration: underline }

.note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--pacific-pale);
  border-left: 3px solid var(--border-cool);
  border-radius: 0 6px 6px 0;
}

.divider { height: 1px; background: var(--border); margin: 36px 0 }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in { opacity: 1; transform: none }
.reveal-d1 { transition-delay: 0.08s }
.reveal-d2 { transition-delay: 0.16s }
.reveal-d3 { transition-delay: 0.24s }

/* ============================================================
   MODAL — glassmorphism + scroll seguro en mobile
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 33, 71, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overflow-y: auto;
}

.modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface-glass-soft);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(0, 33, 71, 0.12);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.modal-overlay--open .modal { transform: none }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-cool);
  background: var(--pacific-pale);
  color: var(--pacific);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.modal__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 8px;
}

.modal__title {
  font-family: 'Crimson Pro', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.form__group { margin-bottom: 16px }

.form__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form__input::placeholder { color: var(--muted); opacity: 0.70 }

.form__input:focus {
  border-color: var(--pacific-mid);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(0, 63, 136, 0.12);
}

.btn-orange.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.modal__success {
  text-align: center;
  padding: 16px 0 8px;
}

.modal__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--pacific-mid));
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal__success-title {
  font-family: 'Crimson Pro', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.modal__success-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { display: none }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 64px;
  }

  .hero__col--visual { display: none }

  .coverage__inner { grid-template-columns: 1fr; gap: 40px }
}

@media (max-width: 600px) {
  h1 { letter-spacing: -1.5px }

  .stats__inner { grid-template-columns: 1fr 1fr }
  .stats__item  { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0 }

  .header__actions { gap: 8px }
  .back-btn { padding: 7px 11px; font-size: 12px }

  .modal { padding: 28px 20px }
  .modal-overlay { padding: 12px }
}
