/* ================================================================
   PILARES — Asesores de Seguros
   Sistema fluido único, mobile-first.
   Una sola fuente de verdad: tokens fluidos (clamp) que escalan
   de 360px a 1440px+ sin saltos. Sin cascada de parches.

   Breakpoints estructurales:
     base      → teléfono (diseño propio, no desktop comprimido)
     ≥ 700px   → tablet vertical (grillas 2x, hero points en fila)
     ≥ 880px   → header desktop, secciones a pantalla completa
     ≥ 1020px  → layouts partidos (split), contacto 2 columnas
     ≥ 1280px  → respiro extra
   ================================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy: #071d38;
  --navy-soft: #0d2a4e;
  --navy-deep: #031022;
  --cream: #f7f2e9;
  --cream-strong: #eee4d5;
  --white: #ffffff;
  --ink: #101827;
  --gold: #c2944d;
  --gold-light: #e0bd78;
  --line: rgba(194, 148, 77, 0.32);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;

  /* Tipografía fluida — escala continua entre 360px y 1440px.
     Mínimos compactos: en móvil el título no se come la pantalla. */
  --fs-h1: clamp(2.125rem, 1.21rem + 4.07vw, 4.875rem);  /* 34 → 78 */
  --fs-h2: clamp(1.625rem, 1.08rem + 2.41vw, 3.25rem);   /* 26 → 52 */
  --fs-lead: clamp(0.84375rem, 0.79rem + 0.23vw, 1rem);  /* 13.5 → 16 */
  --fs-eyebrow: clamp(0.625rem, 0.6rem + 0.15vw, 0.6875rem);
  --ls-eyebrow: clamp(3px, 0.45vw, 7px);

  /* Espacio fluido */
  --space-shell: clamp(18px, 4.5vw, 76px);
  --space-block: clamp(14px, 1.2vw, 22px);

  /* Cromo */
  --header-h: 72px;
  --mob-head: 64px;
  --mob-tabs: 48px;
  --mob-chrome: calc(var(--mob-head) + var(--mob-tabs));
  --wa-bar: calc(66px + env(safe-area-inset-bottom, 0px));

  /* Superficies y motion */
  --radius: 10px;
  --shadow: 0 24px 80px rgba(3, 13, 27, 0.22);
  --shadow-navy: 0 18px 48px rgba(7, 29, 56, 0.1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. BASE ───────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Exacto al alto de la cromo fija: la sección aterriza justo debajo
     de la barra, sin franja de la sección anterior asomando. */
  scroll-padding-top: var(--mob-chrome);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--mob-chrome);
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--navy);
  background: var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

/* Grano de película: rompe la chatura digital. Muy sutil. */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9998;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.034;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-1.5%, 1%); }
  40% { transform: translate(1%, -1.5%); }
  60% { transform: translate(-1%, -1%); }
  80% { transform: translate(1.5%, 1.5%); }
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body::before {
    animation: grain-shift 0.6s steps(2) infinite;
  }
}

/* ── 3. HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--mob-head);
  padding: 0 var(--space-shell);
  background: rgba(7, 29, 56, 0.96);
  border-bottom: 1px solid rgba(194, 148, 77, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 29, 56, 0.99);
  border-bottom-color: rgba(194, 148, 77, 0.4);
  box-shadow: 0 12px 32px rgba(3, 13, 27, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(140px, 38vw, 220px);
  max-height: 46px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.main-nav {
  display: none;
}

.site-header > .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}

/* Tabs móviles: chips desplazables con desvanecido en el borde */
.mobile-nav {
  position: fixed;
  inset: var(--mob-head) 0 auto;
  z-index: 89;
  display: flex;
  gap: 7px;
  height: var(--mob-tabs);
  padding: 7px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(7, 29, 56, 0.97);
  border-bottom: 1px solid rgba(194, 148, 77, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 30px), transparent);
  mask-image: linear-gradient(90deg, #000 calc(100% - 30px), transparent);
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.mobile-nav a.is-active {
  color: var(--navy);
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 16px rgba(194, 148, 77, 0.28);
}

/* Tamaño base del logo en la barra de tabs (sin esto, entre 700-879px
   el <img> se renderiza a su resolución nativa y rompe el layout). */
.mobile-nav .mobile-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.mobile-nav .mobile-brand-logo {
  width: clamp(64px, 22vw, 86px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

/* ── 4. BOTONES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-expo), border-color 0.2s ease,
              background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4a557 0%, var(--gold) 50%, #b47c31 100%);
  box-shadow: 0 12px 30px rgba(194, 148, 77, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 52%);
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(194, 148, 77, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  filter: brightness(1.06);
}

.btn-gold:active {
  transform: scale(0.975);
  box-shadow: 0 6px 18px rgba(194, 148, 77, 0.18);
  transition-duration: 0.08s;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: scale(0.975);
  transition-duration: 0.08s;
}

.full {
  grid-column: 1 / -1;
}

/* ── 5. SECCIONES Y FONDOS ─────────────────────────────────────── */
/* Cada sección es una lámina: al tocar una pestaña, el contenido
   completo entra en un pantallazo (centrado verticalmente). */
section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* dvh sigue a la barra de URL del navegador móvil: cuando se esconde,
     la sección crece y la siguiente no asoma por abajo. svh = fallback. */
  min-height: calc(100svh - var(--mob-chrome));
  min-height: calc(100dvh - var(--mob-chrome));
  overflow: hidden;
  isolation: isolate;
}

.section-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, 100% - calc(var(--space-shell) * 2));
  margin: 0 auto;
  padding: clamp(18px, 3svh, 32px) 0 calc(clamp(18px, 3svh, 32px) + var(--wa-bar));
}

.section-blue {
  color: var(--white);
  background: var(--navy);
}

.section-cream {
  color: var(--ink);
  background: radial-gradient(circle at 50% 30%, var(--white), var(--cream) 62%, var(--cream-strong));
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

/* Art direction móvil: la columna de mármol asoma arriba,
   degradé vertical fuerte para legibilidad del texto. */
.image-hero {
  background-image:
    radial-gradient(ellipse at 85% 8%, rgba(194, 148, 77, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(7, 29, 56, 0.22) 0%, rgba(7, 29, 56, 0.72) 36%, rgba(7, 29, 56, 0.99) 64%),
    url("../img/generated-hero-column-mirror.png");
  background-position: center, center, right -30px top;
  background-size: cover, cover, auto 60%;
}

.image-about {
  background-image:
    linear-gradient(180deg, rgba(247, 242, 233, 0.82) 0%, rgba(247, 242, 233, 0.97) 30%, rgba(247, 242, 233, 1) 55%),
    url("../img/generated-about-column.png");
  background-position: center, right -40px top;
  background-size: cover, auto 46%;
}

.image-services {
  background-image:
    linear-gradient(180deg, rgba(7, 29, 56, 0.7) 0%, rgba(7, 29, 56, 0.97) 30%, var(--navy) 55%),
    url("../img/generated-services-column.png");
  background-position: center, right -40px top;
  background-size: cover, auto 48%;
}

.image-coverage {
  background-image:
    linear-gradient(180deg, rgba(247, 242, 233, 0.82) 0%, rgba(247, 242, 233, 0.97) 30%, rgba(247, 242, 233, 1) 55%),
    url("../img/generated-coverage-column.png");
  background-position: center, left -40px top;
  background-size: cover, auto 46%;
}

.image-commitment {
  background-image:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(180deg, rgba(247, 242, 233, 0.9), rgba(247, 242, 233, 0.94)),
    url("../img/generated-commitment-column.png");
  background-position: center;
  background-size: cover;
}

.image-contact {
  background-image:
    linear-gradient(180deg, rgba(7, 29, 56, 0.72) 0%, rgba(7, 29, 56, 0.97) 28%, var(--navy) 52%),
    url("../img/generated-services-column.png");
  background-position: center, right -50px top;
  background-size: cover, auto 44%;
}

/* ── 6. TIPOGRAFÍA EDITORIAL ───────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(8px, 1.4vw, 22px);
  color: var(--gold-light);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-cream .eyebrow {
  color: var(--gold);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: pretty;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
}

h2 {
  color: var(--navy);
  font-size: var(--fs-h2);
  line-height: 1.03;
}

.content-panel h2,
.contact-copy h2,
.center-copy h2 {
  margin-bottom: clamp(14px, 2.6vw, 20px);
}

.content-panel,
.contact-copy,
.coverage-hub-intro {
  text-align: left;
}

.section-blue h2 {
  color: var(--white);
}

em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.section-cream em {
  color: var(--gold);
}

.ornament {
  width: clamp(38px, 4vw, 58px);
  height: 2px;
  margin: clamp(9px, 1.4vw, 20px) 0 clamp(11px, 1.5vw, 20px);
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 55%, var(--gold));
}

.ornament.centered {
  margin-inline: auto;
}

.lead,
.copy p {
  max-width: 58ch;
  margin: 0 0 var(--space-block);
  font-size: var(--fs-lead);
  line-height: 1.55;
}

.section-blue .lead,
.section-blue .copy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-cream .lead,
.section-cream .copy p {
  color: rgba(16, 24, 39, 0.8);
}

/* Cita editorial: borde dorado, serif itálica. Visible en todos
   los dispositivos — compacta en móvil, amplia en desktop. */
.quote {
  position: relative;
  max-width: 680px;
  margin: clamp(13px, 2vw, 30px) 0 0;
  padding: 3px 0 3px clamp(14px, 2.2vw, 28px);
  border-left: 2px solid var(--gold);
  transition: border-color 0.3s ease;
}

.quote blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(14.5px, 0.84rem + 0.34vw, 21px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.38;
  text-wrap: pretty;
}

.section-blue .quote blockquote {
  color: rgba(255, 255, 255, 0.94);
}

.quote figcaption {
  margin-top: 5px;
  color: var(--gold);
  font-size: clamp(11px, 0.66rem + 0.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* ── 7. HERO ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  min-height: calc(100svh - var(--mob-chrome));
  min-height: calc(100dvh - var(--mob-chrome));
}

.hero-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(16px, 2.6svh, 32px);
  min-height: calc(100svh - var(--mob-chrome));
  min-height: calc(100dvh - var(--mob-chrome));
  padding-top: clamp(92px, 15svh, 180px);
  padding-bottom: calc(var(--wa-bar) + 16px);
}

.hero-copy {
  max-width: 640px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: clamp(20px, 2.4vw, 28px) 0 0;
}

.hero-actions .btn {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
}

/* Pilares del hero: chips compactos (solo título) */
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.hero-points .pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
}

.hero-points .pillar .icon {
  height: auto;
  margin: 0;
  flex-shrink: 0;
}

.hero-points .pillar .icon svg {
  width: 21px;
  height: 21px;
}

.hero-points .pillar h3 {
  margin: 0;
  font-size: 12.5px;
}

/* ── 8. GRILLAS DE CONTENIDO ───────────────────────────────────── */
.icon {
  display: grid;
  place-items: center;
  height: 30px;
  margin-bottom: 7px;
  color: var(--gold);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pillar h3,
.service-item h3,
.coverage-item h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: clamp(13.5px, 0.8rem + 0.2vw, 15px);
  font-weight: 800;
  line-height: 1.15;
}

.section-blue .pillar h3,
.section-blue .service-item h3,
.section-blue .coverage-item h3 {
  color: var(--white);
}

.pillar p,
.service-item p,
.coverage-item p {
  margin: 0;
  font-size: clamp(11.5px, 0.68rem + 0.15vw, 12.5px);
  line-height: 1.38;
  color: rgba(16, 24, 39, 0.74);
}

/* Chip de icono: identidad dorada en todas las tarjetas */
.pillar-row:not(.hero-points) .icon,
.service-grid .icon,
.coverage-grid .icon,
.coverage-hub-grid .icon {
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0 0 8px;
  border-radius: 9px;
  background: rgba(194, 148, 77, 0.13);
  box-shadow: inset 0 0 0 1px rgba(194, 148, 77, 0.22);
}

.pillar-row:not(.hero-points) .icon svg,
.service-grid .icon svg,
.coverage-grid .icon svg,
.coverage-hub-grid .icon svg {
  width: 18px;
  height: 18px;
}

.section-blue .pillar-row:not(.hero-points) .icon,
.section-blue .service-grid .icon {
  background: rgba(224, 189, 120, 0.13);
  box-shadow: inset 0 0 0 1px rgba(224, 189, 120, 0.2);
}

.section-blue .pillar p,
.section-blue .service-item p,
.section-blue .coverage-item p {
  color: rgba(255, 255, 255, 0.76);
}

/* Pillar row (nosotros / compromiso): tarjetas glass 2×2 en móvil */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: clamp(12px, 2vw, 28px);
}

.pillar {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(194, 148, 77, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 14px rgba(7, 29, 56, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition: transform 0.24s var(--ease-expo), border-color 0.24s ease, box-shadow 0.24s ease;
}

.section-blue .pillar {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pillar .icon {
  place-items: start;
  height: auto;
}

/* Servicios: lista vertical con separadores finos (icono a la izquierda) */
.service-grid {
  display: flex;
  flex-direction: column;
  margin-top: clamp(10px, 1.8vw, 24px);
}

.service-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:last-child {
  border-bottom: 0;
}

.service-item .icon {
  grid-row: 1 / 3;
}

.service-item h3 {
  font-size: clamp(14.5px, 0.85rem + 0.25vw, 17px);
}

/* Coberturas (links): carrusel horizontal con snap en móvil —
   la tarjeta siguiente asoma como invitación a deslizar. */
.coverage-grid {
  display: flex;
  gap: 10px;
  margin-top: clamp(12px, 2vw, 26px);
  padding: 2px 2px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.coverage-grid::-webkit-scrollbar {
  display: none;
}

.coverage-item {
  flex: 0 0 min(74%, 250px);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 11px;
  align-items: start;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(194, 148, 77, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 14px rgba(7, 29, 56, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.24s var(--ease-expo), border-color 0.24s ease,
              background 0.24s ease, box-shadow 0.24s ease;
}

.coverage-item .icon {
  grid-row: 1 / 3;
  margin: 0;
}

.coverage-item h3 {
  margin-bottom: 2px;
}

.coverage-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.coverage-link:hover {
  transform: translateY(-3px);
  border-color: rgba(194, 148, 77, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 36px rgba(7, 29, 56, 0.12);
}

.coverage-link:hover h3 {
  color: var(--gold);
}

/* ── 9. COMPROMISO ─────────────────────────────────────────────── */
.center-copy,
.section-shell.center-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* En bloques centrados, el guion del eyebrow va a ambos lados */
.center-copy .eyebrow {
  justify-content: center;
}

.center-copy .eyebrow::after {
  content: "";
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.center-copy h2 {
  max-width: 16ch;
}

.center-copy .lead {
  max-width: 52ch;
  margin-inline: auto;
}

.centered-row {
  width: min(880px, 100%);
  margin-bottom: clamp(12px, 2vw, 26px);
  text-align: left;
}

.center-copy .btn {
  width: auto;
  min-width: min(100%, 280px);
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: clamp(16px, 2vw, 22px) 0 0;
  color: rgba(16, 24, 39, 0.74);
  font-size: clamp(14px, 0.82rem + 0.3vw, 17px);
  font-family: var(--serif);
  font-style: italic;
}

.mini-shield {
  flex-shrink: 0;
  width: 18px;
  height: 22px;
  border: 2px solid var(--gold);
  border-top-width: 3px;
  clip-path: polygon(50% 0, 100% 20%, 88% 76%, 50% 100%, 12% 76%, 0 20%);
}

/* ── 10. CONTACTO ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 3vw, 56px);
  align-items: center;
}

.contact-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.6vw, 18px);
  margin-top: clamp(12px, 2.2vw, 28px);
}

.contact-data p {
  margin: 0;
  padding-left: 13px;
  border-left: 2px solid var(--gold);
}

.contact-data p:nth-child(3) {
  grid-column: 1 / -1;
}

.contact-data strong,
.contact-data span {
  display: block;
}

.contact-data strong {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-data span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13.5px, 0.78rem + 0.3vw, 18px);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 10px;
  padding: clamp(14px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  background: rgba(3, 13, 27, 0.4);
  outline: none;
  /* 16px: evita el auto-zoom de iOS al enfocar */
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(194, 148, 77, 0.65);
  background: rgba(3, 13, 27, 0.55);
  box-shadow: 0 0 0 3px rgba(194, 148, 77, 0.16);
}

.contact-form option {
  color: var(--ink);
}

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

/* ── 11. FOOTER ────────────────────────────────────────────────── */
.site-footer {
  padding: clamp(28px, 4vw, 38px) var(--space-shell) calc(clamp(28px, 4vw, 38px) + var(--wa-bar));
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  gap: 14px;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
}

.footer-brand .brand-logo {
  width: clamp(150px, 30vw, 210px);
}

.footer-legal {
  display: grid;
  gap: 6px;
  width: min(1360px, 100%);
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Logo SSN: el PNG oficial es azul sobre blanco, va en chapa blanca */
.footer-ssn-logo {
  width: min(220px, 62vw);
  height: auto;
  margin: 2px 0;
  padding: 6px 10px;
  background: #fff;
  border-radius: 6px;
}

/* ── 11b. PÁGINA LEGAL (Privacidad) ────────────────────────────── */
.legal-page main {
  padding: calc(var(--mob-chrome) + 26px) 0 40px;
}

.legal-shell {
  width: min(820px, 100% - calc(var(--space-shell) * 2));
  margin: 0 auto;
}

.legal-shell h1 {
  color: var(--navy);
  font-size: clamp(2rem, 1.3rem + 3vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 8px;
}

.legal-updated {
  margin: 0 0 26px;
  color: rgba(16, 24, 39, 0.55);
  font-size: 12.5px;
}

.legal-copy h2 {
  margin: 30px 0 10px;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  margin: 0 0 12px;
  color: rgba(16, 24, 39, 0.78);
  font-size: var(--fs-lead);
  line-height: 1.62;
}

.legal-copy ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-copy strong {
  color: var(--navy);
}

.legal-shell > .btn {
  margin-top: 10px;
}

@media (min-width: 880px) {
  .legal-page main {
    padding: calc(var(--header-h) + 40px) 0 60px;
  }
}

/* ── 12. PÁGINA COBERTURAS ─────────────────────────────────────── */
.coverage-page {
  background: var(--cream);
}

.coverage-hub-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.2vw, 64px);
  align-items: center;
}

.coverage-hub-intro h1,
.coverage-detail-card h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 1.2rem + 5.4vw, 4.5rem);
  line-height: 0.98;
}

.coverage-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.coverage-hub-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: clamp(11px, 1.8vw, 24px) clamp(12px, 1.8vw, 24px);
  border: 1px solid rgba(194, 148, 77, 0.22);
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.36));
  text-align: left;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 14px rgba(7, 29, 56, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.24s var(--ease-expo), border-color 0.24s ease,
              background 0.24s ease, box-shadow 0.24s ease;
}

.coverage-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 148, 77, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 24px 56px rgba(7, 29, 56, 0.12);
}

.coverage-hub-card .icon {
  grid-row: 1 / 4;
  place-items: start;
  height: auto;
  margin: 2px 0 0;
}

.coverage-hub-card:hover .icon {
  color: var(--gold);
}

.coverage-hub-card h2 {
  margin: 0 0 3px;
  font-family: var(--sans);
  font-size: clamp(14.5px, 0.85rem + 0.25vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--navy);
}

.coverage-hub-card p {
  margin: 0 0 7px;
  color: rgba(16, 24, 39, 0.76);
  font-size: clamp(11.5px, 0.66rem + 0.18vw, 13px);
  line-height: 1.4;
}

.coverage-hub-card span,
.back-link {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.coverage-detail-layout {
  display: grid;
  align-items: center;
}

.coverage-detail-card {
  width: min(980px, 100%);
  padding: clamp(16px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(7, 29, 56, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coverage-detail-card h1,
.coverage-detail-card h2 {
  color: var(--white);
}

.coverage-detail-card h1 {
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  line-height: 1.08;
}

.coverage-detail-card h2 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.coverage-detail-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
  font-size: clamp(13.5px, 0.8rem + 0.2vw, 15px);
}

.coverage-detail-card .lead {
  max-width: 68ch;
  margin: 0 0 clamp(18px, 2vw, 26px);
  font-size: var(--fs-lead);
  line-height: 1.58;
}

.back-link {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--gold-light);
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 48px);
  margin-top: clamp(18px, 2.6vw, 28px);
}

.detail-columns h2 {
  margin-top: 16px;
}

.detail-columns h2:first-child {
  margin-top: 0;
}

.detail-box {
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.detail-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 0.78rem + 0.18vw, 14.5px);
  line-height: 1.55;
}

.detail-note {
  margin-top: clamp(18px, 2.4vw, 28px);
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.06);
}

.detail-note strong {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.detail-note p {
  margin: 8px 0 0;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

/* ── 13. BARRA WHATSAPP MÓVIL ──────────────────────────────────── */
.mobile-wa-bar {
  display: flex;
  position: fixed;
  inset: auto 0 0;
  z-index: 87;
  padding: 9px 14px max(10px, env(safe-area-inset-bottom, 10px));
  background: rgba(7, 29, 56, 0.97);
  border-top: 1px solid rgba(194, 148, 77, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.24);
}

.mobile-wa-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4a557 0%, var(--gold) 50%, #b47c31 100%);
  box-shadow: 0 10px 28px rgba(194, 148, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.mobile-wa-bar a:active {
  filter: brightness(0.93);
  transform: scale(0.975);
}

.mobile-wa-bar svg {
  flex-shrink: 0;
}

/* ── 14. MOTION ────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes heroColumnDrift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to   { transform: scale(1.045) translate3d(10px, -6px, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s var(--ease-expo), transform 0.72s var(--ease-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero: entrada orquestada — cada hijo maneja su propia animación */
.hero .hero-copy.reveal,
.hero .hero-copy.reveal.is-visible,
.hero .hero-points.reveal,
.hero .hero-points.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero .hero-copy .eyebrow {
  animation: fadeSlideUp 0.6s 0.08s var(--ease-expo) both;
}

.hero .hero-copy h1 {
  animation: fadeSlideUp 0.78s 0.22s var(--ease-expo) both;
}

.hero .hero-copy .ornament {
  transform-origin: left center;
  animation: lineExpand 0.55s 0.52s ease-out both;
}

.hero .hero-copy .lead {
  animation: fadeSlideUp 0.65s 0.64s var(--ease-expo) both;
}

.hero .hero-copy .hero-actions {
  animation: fadeSlideUp 0.65s 0.8s var(--ease-expo) both;
}

.hero .hero-points.reveal {
  animation: fadeSlideUp 0.65s 0.98s var(--ease-expo) both;
}

/* Stagger de grillas cuando dispara el reveal (--i lo setea JS) */
.reveal.is-visible .service-grid > *,
.reveal.is-visible .coverage-grid > *,
.reveal.is-visible .pillar-row > *,
.reveal.is-visible .coverage-hub-grid > * {
  animation: fadeSlideUp 0.5s calc(var(--i, 0) * 62ms + 80ms) var(--ease-expo) both;
}

/* Página de coberturas: entrada del intro + stagger de cards */
.coverage-hub-intro .eyebrow {
  animation: fadeSlideUp 0.6s 0.1s var(--ease-expo) both;
}

.coverage-hub-intro h1 {
  animation: fadeSlideUp 0.78s 0.24s var(--ease-expo) both;
}

.coverage-hub-intro .ornament {
  transform-origin: left center;
  animation: lineExpand 0.5s 0.52s ease-out both;
}

.coverage-hub-intro .lead {
  animation: fadeSlideUp 0.65s 0.64s var(--ease-expo) both;
}

.coverage-hub-grid.is-loaded > * {
  animation: fadeSlideUp 0.52s calc(var(--i, 0) * 65ms + 200ms) var(--ease-expo) both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .image-hero {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero .hero-copy .eyebrow,
  .hero .hero-copy h1,
  .hero .hero-copy .ornament,
  .hero .hero-copy .lead,
  .hero .hero-copy .hero-actions,
  .hero .hero-points.reveal,
  .coverage-hub-intro .eyebrow,
  .coverage-hub-intro h1,
  .coverage-hub-intro .ornament,
  .coverage-hub-intro .lead,
  .reveal.is-visible .service-grid > *,
  .reveal.is-visible .coverage-grid > *,
  .reveal.is-visible .pillar-row > *,
  .reveal.is-visible .coverage-hub-grid > *,
  .coverage-hub-grid.is-loaded > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── 15. AJUSTE TELÉFONOS ANGOSTOS (≤ 380px) ───────────────────── */
@media (max-width: 380px) {
  .site-header > .btn {
    padding: 0 11px;
    font-size: 11px;
  }

  .pillar,
  .coverage-item {
    padding: 12px 11px;
  }

  .hero-points .pillar h3 {
    font-size: 11.5px;
  }
}

/* ════════════════════════════════════════════════════════════════
   ≥ 700px — TABLET
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 700px) {
  .section-shell {
    width: min(760px, 100% - calc(var(--space-shell) * 2));
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .hero-actions .btn {
    width: auto;
    padding: 0 30px;
  }

  .hero-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pillar-row {
    gap: 12px;
  }

  .pillar,
  .coverage-item {
    padding: 16px;
  }

  .pillar-row:not(.hero-points) .icon,
  .service-grid .icon,
  .coverage-grid .icon,
  .coverage-hub-grid .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 11px;
  }

  .pillar-row:not(.hero-points) .icon svg,
  .service-grid .icon svg,
  .coverage-grid .icon svg,
  .coverage-hub-grid .icon svg {
    width: 21px;
    height: 21px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-item {
    grid-template-columns: 40px 1fr;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.24s var(--ease-expo), border-color 0.24s ease;
  }

  .service-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    overflow: visible;
  }

  .coverage-item {
    flex: none;
    grid-template-columns: 40px 1fr;
  }

  .centered-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-form label {
    font-size: 11px;
    gap: 7px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 46px;
  }

  .contact-form textarea {
    height: auto;
    min-height: 90px;
  }

  .coverage-hub-grid {
    gap: 12px;
  }

  .coverage-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-columns {
    grid-template-columns: 1fr minmax(280px, 0.78fr);
  }

  .detail-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .detail-actions .btn {
    width: auto;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

/* ════════════════════════════════════════════════════════════════
   ≥ 880px — DESKTOP: header completo, secciones a pantalla llena
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 880px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 8px);
  }

  body {
    padding-top: 0;
  }

  /* Header desktop */
  .site-header {
    height: auto;
    min-height: var(--header-h);
    gap: 28px;
    padding: 9px var(--space-shell);
    background: rgba(7, 29, 56, 0.94);
  }

  .brand-logo {
    width: clamp(170px, 16vw, 225px);
    max-height: 54px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 34px);
  }

  .main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.22s ease;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease-expo);
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--gold-light);
  }

  .main-nav a:hover::after,
  .main-nav a.is-active::after {
    transform: scaleX(1);
  }

  .site-header > .btn {
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
  }

  .mobile-nav,
  .mobile-wa-bar {
    display: none;
  }

  /* Secciones: plato editorial a pantalla completa */
  section {
    min-height: 100vh;
  }

  .section-shell {
    display: grid;
    align-content: center;
    width: min(1320px, 100% - calc(var(--space-shell) * 2));
    min-height: 100vh;
    padding: calc(var(--header-h) + 28px) 0 36px;
  }

  /* Fondos desktop: columna a un costado, degradé horizontal */
  .image-hero {
    background-image:
      radial-gradient(ellipse at 80% 48%, rgba(194, 148, 77, 0.12), transparent 36%),
      linear-gradient(90deg, rgba(7, 29, 56, 0.98) 0%, rgba(7, 29, 56, 0.92) 43%, rgba(7, 29, 56, 0.12) 100%),
      linear-gradient(180deg, rgba(7, 29, 56, 0.02), rgba(7, 29, 56, 0.24)),
      url("../img/generated-hero-column-mirror.png");
    background-position: center, center, center, right center;
    background-size: cover;
    transform-origin: 80% 50%;
    animation: heroColumnDrift 18s ease-in-out infinite alternate;
  }

  .image-about {
    opacity: 0.74;
    background-image:
      linear-gradient(90deg, rgba(247, 242, 233, 0.98) 0%, rgba(247, 242, 233, 0.88) 44%, rgba(247, 242, 233, 0.6) 100%),
      url("../img/generated-about-column.png");
    background-position: center, right center;
    background-size: cover;
  }

  .image-services {
    background-image:
      linear-gradient(90deg, rgba(7, 29, 56, 0.98) 0%, rgba(7, 29, 56, 0.94) 50%, rgba(7, 29, 56, 0.18) 100%),
      url("../img/generated-services-column.png");
    background-position: center, right center;
    background-size: cover;
  }

  .image-coverage {
    opacity: 0.78;
    background-image:
      linear-gradient(90deg, rgba(247, 242, 233, 0.42) 0%, rgba(247, 242, 233, 0.9) 45%, rgba(247, 242, 233, 0.98) 100%),
      url("../img/generated-coverage-column.png");
    background-position: center, left center;
    background-size: cover;
  }

  .image-commitment {
    opacity: 0.84;
    background-image:
      radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.55), transparent 38%),
      linear-gradient(90deg, rgba(247, 242, 233, 0.52), rgba(247, 242, 233, 0.95) 24%, rgba(247, 242, 233, 0.95) 74%, rgba(247, 242, 233, 0.54)),
      url("../img/generated-commitment-column.png");
    background-position: center;
    background-size: cover;
  }

  .image-contact {
    background-image:
      linear-gradient(90deg, rgba(7, 29, 56, 0.96), rgba(7, 29, 56, 0.9) 48%, rgba(7, 29, 56, 0.5)),
      url("../img/generated-services-column.png");
    background-position: center, right center;
    background-size: cover;
  }

  /* Hero desktop: texto a la izquierda, columna respirando a la derecha */
  .hero,
  .hero-layout {
    min-height: 100vh;
  }

  .hero-layout {
    flex-direction: column;
    justify-content: center;
    gap: clamp(30px, 4.5vh, 48px);
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 48px;
  }

  .hero-copy {
    max-width: min(620px, 52%);
  }

  .hero-points {
    width: min(680px, 56%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  /* En desktop, los chips del hero se vuelven columnas editoriales */
  .hero-points .pillar {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
  }

  .hero-points .pillar:first-child {
    border-left: 0;
  }

  .hero-points .pillar .icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-points .pillar h3 {
    font-size: 13px;
  }

  /* Paneles divididos */
  .split-section .section-shell {
    align-items: center;
  }

  .content-panel {
    max-width: 660px;
  }

  /* Pillar row desktop: 4 columnas con tarjetas glass + hover */
  .pillar-row:not(.centered-row):not(.hero-points) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(194, 148, 77, 0.5);
  }

  .service-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.26);
  }

  .centered-row {
    text-align: center;
  }

  .centered-row .pillar .icon {
    place-items: center;
  }

  /* Contacto */
  .contact-layout {
    min-height: 0;
  }

  /* Coberturas hub */
  .coverage-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .coverage-hub-card {
    grid-template-columns: 1fr;
    row-gap: 0;
    min-height: 180px;
    align-content: start;
  }

  .coverage-hub-card .icon {
    grid-row: auto;
    height: 34px;
    margin: 0 0 10px;
  }

  .coverage-hub-card h2 {
    margin-bottom: 7px;
  }

  .coverage-hub-card p {
    margin-bottom: 14px;
  }
}

/* ════════════════════════════════════════════════════════════════
   ≥ 1020px — LAYOUTS PARTIDOS
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1020px) {
  .split-right,
  .split-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .split-right .content-panel {
    grid-column: 2;
  }

  .split-left .content-panel {
    grid-column: 1;
  }

  .contact-layout {
    grid-template-columns: minmax(320px, 540px) minmax(420px, 620px);
    justify-content: space-between;
    gap: 56px;
  }

  /* En columna lateral, los datos vuelven a lista vertical */
  .contact-data {
    grid-template-columns: 1fr;
  }

  .contact-data p:nth-child(3) {
    grid-column: auto;
  }

  .coverage-hub-layout {
    grid-template-columns: minmax(300px, 430px) minmax(520px, 1fr);
    gap: clamp(42px, 6vw, 92px);
  }

  .coverage-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ════════════════════════════════════════════════════════════════
   ≥ 1280px — RESPIRO EXTRA
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .pillar-row:not(.centered-row):not(.hero-points) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ════════════════════════════════════════════════════════════════
   Desktop bajo (notebooks 768px de alto): compactar para que las
   secciones de 100vh no desborden.
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 880px) and (max-height: 820px) {
  :root {
    --header-h: 64px;
    --fs-h1: clamp(2.4rem, 1rem + 5.4vw, 4.1rem);
    --fs-h2: clamp(1.9rem, 1rem + 3.4vw, 2.8rem);
  }

  .section-shell {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 24px;
  }

  .lead,
  .copy p {
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .ornament {
    margin: 12px 0 14px;
  }

  .pillar,
  .coverage-item {
    padding: 11px 13px;
  }

  .service-item {
    padding: 12px 14px;
  }

  .pillar-row,
  .coverage-grid,
  .service-grid {
    margin-top: 16px;
    gap: 10px;
  }

  .quote {
    margin-top: 16px;
  }

  .quote blockquote {
    font-size: 16px;
  }

  .contact-form {
    padding: 20px;
    gap: 11px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 42px;
  }

  .contact-form textarea {
    min-height: 70px;
  }

  .coverage-hub-card {
    min-height: 150px;
    padding: 16px;
  }
}

/* ================================================================
   MOBILE DEFINITIVO (<= 699px)
   Solo modifica mobile. Desktop (≥ 880px) permanece intacto.
   Chrome unificado: logo + nav en una sola barra de 56px.
   ================================================================ */
@media (max-width: 699px) {
  :root {
    --mob-head: 0px;
    --mob-tabs: 56px;
    --wa-bar: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  html {
    scroll-padding-top: var(--mob-chrome);
  }

  body {
    width: 100%;
    min-width: 320px;
  }

  /* Header desktop oculto en mobile: toda la cromo vive en la barra única */
  .site-header {
    display: none;
  }

  /* Barra única: logo izquierda + tabs de nav que se reparten el espacio */
  .mobile-nav {
    inset: 0 0 auto;
    height: var(--mob-tabs);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    overflow: hidden;
    background: #071d38;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .mobile-nav .mobile-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    width: clamp(64px, 22vw, 86px);
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    margin-right: 2px;
  }

  .mobile-nav a.mobile-brand.is-active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .mobile-nav .mobile-brand-logo {
    width: 100%;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  }

  .mobile-nav a[href="#inicio"]:not(.mobile-brand),
  .mobile-nav a[href="index.html#inicio"]:not(.mobile-brand) {
    display: none;
  }

  .mobile-nav a:not(.mobile-brand) {
    flex: 1 1 0;
    min-width: 0;
    min-height: 34px;
    padding: 0 2px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(9px, 2.45vw, 10.5px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .mobile-nav a:not(.mobile-brand).is-active {
    color: var(--gold-light);
    background: transparent;
    box-shadow: none;
  }

  section {
    min-height: calc(100svh - var(--mob-chrome));
    min-height: calc(100dvh - var(--mob-chrome));
    overflow: visible;
  }

  .section-shell {
    width: calc(100% - 32px);
    padding: 34px 0 calc(var(--wa-bar) + 14px);
  }

  .split-section .quote {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--mob-chrome));
    min-height: calc(100dvh - var(--mob-chrome));
    overflow: hidden;
    justify-content: stretch;
  }

  .section-blue,
  .mobile-wa-bar {
    background: #071d38;
  }

  .mobile-wa-bar {
    padding: 7px 14px max(8px, env(safe-area-inset-bottom, 8px));
  }

  .mobile-wa-bar a {
    min-height: 42px;
    font-size: 13.5px;
  }

  .image-hero {
    background-color: #071d38;
    background-image:
      radial-gradient(ellipse at 84% 28%, rgba(194, 148, 77, 0.14), transparent 36%),
      linear-gradient(90deg, #071d38 0%, rgba(7, 29, 56, 0.98) 46%, rgba(7, 29, 56, 0.5) 70%, rgba(7, 29, 56, 0.04) 100%),
      linear-gradient(180deg, rgba(7, 29, 56, 0.02) 0%, rgba(7, 29, 56, 0.16) 62%, #071d38 100%),
      url("../img/generated-hero-column-mirror.png");
    background-position: center, center, center, 72% top;
    background-size: cover, cover, cover, auto 100%;
  }

  .image-services,
  .image-contact {
    background-color: #071d38;
    background-image:
      linear-gradient(180deg, rgba(7, 29, 56, 0.72) 0%, rgba(7, 29, 56, 0.96) 34%, #071d38 60%),
      url("../img/generated-services-column.png");
  }

  .image-commitment {
    background-image:
      linear-gradient(180deg, rgba(247, 242, 233, 0.32) 0%, rgba(247, 242, 233, 0.52) 48%, rgba(247, 242, 233, 0.76) 100%),
      url("../img/generated-commitment-mobile-balanced.jpg");
    background-position: center, center;
    background-size: cover, cover;
  }

  .commitment {
    overflow: hidden;
  }

  .hero-layout {
    align-items: flex-start;
    justify-content: center;
    justify-self: stretch;
    gap: 14px;
    width: 100%;
    margin: 0;
    min-height: calc(100svh - var(--mob-chrome));
    min-height: calc(100dvh - var(--mob-chrome));
    padding-left: clamp(18px, 6vw, 28px);
    padding-right: 0;
    padding-top: clamp(20px, 4svh, 34px);
    padding-bottom: calc(var(--wa-bar) + 12px);
  }

  .hero-copy {
    align-self: flex-start;
    width: min(61vw, 252px);
    max-width: min(61vw, 252px);
    margin-left: 0;
  }

  .hero-copy .eyebrow {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(8px, 2.08vw, 9.6px);
    letter-spacing: 1.45px;
    line-height: 1.25;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.6rem);
    line-height: 1.04;
    margin-bottom: 8px;
  }

  .hero-copy .lead {
    max-width: 27ch;
    line-height: 1.48;
  }

  /* Botones hero redundantes con la nav — se ocultan en mobile */
  .hero-actions {
    display: none;
  }

  /* Hero-points: texto compacto sin tarjetas ni líneas decorativas */
  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 14px;
    margin-top: 10px;
  }

  .hero-points .pillar {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 0;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-points .pillar .icon {
    flex-shrink: 0;
    height: auto;
    margin: 0;
    color: var(--gold-light);
    width: auto;
  }

  .hero-points .pillar .icon svg {
    width: 13px;
    height: 13px;
  }

  .hero-points .pillar h3 {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.2;
  }

  /* Las seis coberturas se ven juntas; se elimina el carrusel incompleto. */
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    overflow: visible;
  }

  .coverage-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 58px;
    padding: 9px;
  }

  .coverage-item .icon {
    width: 28px;
    height: 28px;
  }

  .coverage-item .icon svg {
    width: 16px;
    height: 16px;
  }

  .coverage-item h3 {
    align-self: center;
    margin: 0;
    font-size: 12.5px;
    line-height: 1.18;
  }

  .coverage-item p,
  .coverage-section .copy p:nth-child(n + 2),
  .coverage-section .quote {
    display: none;
  }

  /* Contacto: ocultar copy extensa, mostrar solo título + formulario */
  .contact-copy .lead,
  .contact-data {
    display: none;
  }

  .contact-layout {
    gap: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 7px 9px;
    padding: 11px;
  }

  .contact-form label {
    font-size: 9px;
    gap: 4px;
    letter-spacing: 0.9px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .contact-form textarea {
    height: 38px;
    min-height: 38px;
    padding: 6px 10px;
    font-size: 14px;
    resize: none;
  }

  .contact-form .btn {
    min-height: 40px;
    font-size: 13px;
  }

  /* Hub de coberturas: contenido centrado verticalmente */
  .coverage-hub {
    justify-content: center;
  }

  .coverage-page {
    --wa-bar: 0px;
  }

  .coverage-page .mobile-wa-bar {
    display: none;
  }

  .coverage-hub .section-shell {
    padding-top: 12px;
    padding-bottom: calc(var(--wa-bar) + 10px);
  }

  .coverage-hub-layout {
    gap: 12px;
  }

  .coverage-hub-intro .eyebrow {
    margin-bottom: 5px;
  }

  .coverage-hub-intro h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    line-height: 1.04;
    margin-bottom: 10px;
  }

  .coverage-hub-intro .ornament {
    margin-block: 7px 8px;
  }

  .coverage-hub-intro .lead {
    margin-bottom: 0;
    overflow: visible;
    font-size: 12.5px;
    line-height: 1.38;
  }

  .coverage-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* Tarjetas premium: columna flex, icono con chip dorado, borde lateral */
  .coverage-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-height: 96px;
    padding: 14px 12px 10px;
    border-left: 3px solid var(--gold);
    border-top: 1px solid rgba(194, 148, 77, 0.28);
    border-right: 1px solid rgba(194, 148, 77, 0.16);
    border-bottom: 1px solid rgba(194, 148, 77, 0.16);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
  }

  .coverage-hub-card .icon {
    grid-row: auto;
    width: 38px;
    height: 38px;
    margin: 0 0 2px;
    border-radius: 10px;
    background: rgba(194, 148, 77, 0.14);
    box-shadow: inset 0 0 0 1px rgba(194, 148, 77, 0.32);
  }

  .coverage-hub-card .icon svg {
    width: 20px;
    height: 20px;
  }

  .coverage-hub-card h2 {
    align-self: auto;
    margin: 0;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--navy);
  }

  .coverage-hub-card p {
    display: none;
  }

  .coverage-hub-card span {
    margin-top: auto;
    font-size: 9px;
    letter-spacing: 1.2px;
    color: var(--gold);
    opacity: 0.85;
  }

  /* El detalle ocupa un único viewport y reparte el texto en segmentos. */
  .coverage-detail {
    height: calc(100svh - var(--mob-chrome));
    height: calc(100dvh - var(--mob-chrome));
    min-height: 0;
    overflow: hidden;
  }

  .coverage-detail .section-shell {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding: 8px 0 calc(var(--wa-bar) + 8px);
  }

  .coverage-detail-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: 100%;
    min-height: 0;
    padding: 11px 12px;
    overflow: hidden;
  }

  .coverage-detail-card .back-link {
    min-height: 44px;
    margin-bottom: 2px;
  }

  .coverage-detail-card > .eyebrow {
    margin-bottom: 2px;
  }

  .coverage-detail-card > h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .coverage-detail-card > .lead {
    margin: 7px 0 10px;
    font-size: 12px;
    line-height: 1.48;
  }

  .detail-mobile-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 0 0 auto;
    gap: 6px;
    margin: 0 0 10px;
  }

  .detail-mobile-tabs button {
    min-width: 0;
    min-height: 44px;
    padding: 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.06);
    font-size: 10.5px;
    font-weight: 800;
    cursor: pointer;
  }

  .detail-mobile-tabs button.is-active {
    color: var(--navy);
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
  }

  .detail-columns {
    display: block;
    flex: 0 1 auto;
    min-height: 0;
    margin: 0;
    overflow: hidden;
  }

  .detail-columns > div,
  .detail-note {
    display: none;
  }

  .coverage-detail-card[data-mobile-panel="overview"] .detail-columns > div:first-child,
  .coverage-detail-card[data-mobile-panel="includes"] .detail-columns > .detail-box,
  .coverage-detail-card[data-mobile-panel="key"] .detail-note {
    display: block;
    animation: fadeSlideUp 0.25s var(--ease-expo) both;
  }

  .coverage-detail-card[data-mobile-panel="key"] .detail-columns {
    display: none;
  }

  .coverage-detail-card .detail-columns h2 {
    margin: 0 0 6px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .coverage-detail-card .detail-columns h2:not(:first-child) {
    margin-top: 9px;
  }

  .coverage-detail-card .detail-columns p,
  .coverage-detail-card .detail-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .detail-box {
    padding: 12px;
  }

  .detail-box ul {
    gap: 8px;
    padding-left: 16px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .detail-note {
    flex: 0 0 auto;
    min-height: 0;
    margin: 0;
    padding: 13px;
  }

  .commitment .section-shell {
    padding-top: 26px;
    padding-bottom: calc(var(--wa-bar) + 22px);
  }

  .commitment h2 {
    line-height: 1.08;
  }

  .commitment .lead {
    line-height: 1.52;
  }

  .detail-actions {
    flex: 0 0 auto;
    margin-top: 8px;
  }

  .detail-actions .btn {
    min-height: 44px;
  }

  .detail-actions .btn-ghost {
    display: none;
  }
}

/* Teléfonos bajos (incluye horizontal/landscape, donde el ancho supera
   699px pero la altura sigue siendo chica y la barra de WhatsApp tapaba texto). */
@media (max-width: 879px) and (max-height: 650px) {
  .hero-copy .eyebrow,
  .hero-points,
  .split-section .copy p:nth-child(n + 2),
  .split-section .quote,
  .commitment .trust-note {
    display: none;
  }

  .hero-layout {
    gap: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.5rem);
  }

  .hero-copy .ornament {
    margin-block: 8px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .coverage-hub-intro .lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .coverage-hub-card {
    min-height: 66px;
    padding: 7px 8px;
  }

  .coverage-detail-card > .lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 700px) {
  .detail-mobile-tabs {
    display: none;
  }
}

/* ================================================================
   Refinamiento pedido: ornamentos limpios, tabs precisos y mobile
   sin cortes ni desbordes. Mantiene la paleta desktop existente.
   ================================================================ */
.eyebrow {
  display: block;
  gap: 0;
  padding-left: 0;
}

.eyebrow::before,
.center-copy .eyebrow::after,
.ornament,
.main-nav a::after {
  display: none;
}

.quote,
.detail-note {
  border-left: 0;
  border-radius: var(--radius);
}

.quote {
  padding-left: 0;
}

.mini-shield {
  display: none;
}

.commitment .centered-row {
  display: none;
}

.commitment .center-copy {
  gap: clamp(10px, 1.8vw, 18px);
}

.commitment .lead {
  margin-bottom: 0;
}

.trust-note {
  justify-content: center;
  max-width: 38ch;
  margin-top: 4px;
  color: rgba(16, 24, 39, 0.82);
  font-size: clamp(17px, 1rem + 0.45vw, 22px);
}

.coverage-hub-card .icon,
.coverage-grid .icon {
  display: grid;
  place-items: center;
}

.coverage-hub-card .icon {
  width: 38px;
  height: 38px;
  margin: 0 0 10px;
}

.coverage-hub-card .icon svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 700px) {
  .detail-mobile-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: clamp(18px, 2vw, 24px) 0 clamp(18px, 2vw, 26px);
  }

  .detail-mobile-tabs button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
  }

  .detail-mobile-tabs button.is-active {
    color: var(--navy);
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
  }

  .coverage-detail-card[data-mobile-panel] .detail-columns > div,
  .coverage-detail-card[data-mobile-panel] .detail-note {
    display: none;
  }

  .coverage-detail-card[data-mobile-panel="overview"] .detail-columns,
  .coverage-detail-card[data-mobile-panel="includes"] .detail-columns {
    display: block;
  }

  .coverage-detail-card[data-mobile-panel="overview"] .detail-columns > div:first-child,
  .coverage-detail-card[data-mobile-panel="includes"] .detail-columns > .detail-box,
  .coverage-detail-card[data-mobile-panel="key"] .detail-note {
    display: block;
    animation: fadeSlideUp 0.25s var(--ease-expo) both;
  }

  .coverage-detail-card[data-mobile-panel="key"] .detail-columns {
    display: none;
  }
}

@media (min-width: 880px) {
  html {
    scroll-padding-top: 0;
  }

  .hero-layout {
    align-items: flex-start;
    gap: clamp(24px, 3.6vh, 40px);
    padding-left: clamp(6px, 2vw, 30px);
  }

  .hero-copy {
    max-width: min(700px, 58%);
  }

  .hero .hero-copy h1 {
    margin-bottom: 14px;
  }

  /* Aire entre título y bajada, manteniendo la misma línea visual */
  .coverage-hub-intro h1 {
    margin-bottom: 22px;
  }

  .content-panel h2 {
    margin-bottom: 18px;
  }

  /* Contacto: mismo pedido, sin corrimientos laterales */
  .contact-copy h2 {
    margin-bottom: 18px;
  }

  .center-copy h2 {
    margin-bottom: 18px;
  }

  .hero-points {
    width: min(640px, 54%);
    gap: 12px;
  }

  .hero-points .pillar {
    min-height: 72px;
    padding: 10px 8px;
    border: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.055);
  }

  .hero-points .pillar:first-child {
    border-left: 0;
  }

  .coverage-hub-card .icon {
    place-items: center;
    background: rgba(194, 148, 77, 0.12);
    box-shadow: inset 0 0 0 1px rgba(194, 148, 77, 0.2);
  }

  .coverage-detail-card {
    width: min(920px, 100%);
  }

  .detail-columns {
    margin-top: 0;
  }

  .detail-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }
}

@media (max-width: 340px) {
  .mobile-nav .mobile-brand {
    width: 58px;
  }

  .mobile-nav a:not(.mobile-brand) {
    font-size: 8.6px;
  }
}
