/**
* Funex — funexhn.com
* Hoja de estilos principal. Escrita a mano, sin framework.
* El CSS anterior (plantilla Gp de BootstrapMade) está respaldado en /_respaldo_prediseno/.
*
* Índice
*  1. Tokens          10. Cómo funciona
*  2. Base            11. Tarifas
*  3. Utilidades      12. Beneficios
*  4. Botones         13. Tiendas
*  5. Encabezado      14. Acerca de
*  6. Hero            15. Contacto
*  7. Confianza       16. Pie de página
*  8. Secciones       17. Botones flotantes
*  9. Servicios       18. Animaciones
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 1. Tokens
--------------------------------------------------------------*/
:root {
  /* Marca: el amarillo y el gris oscuro del logo, sin colores nuevos */
  --gold: #ffc451;
  --gold-bright: #ffd479;
  --gold-deep: #f0a81e;
  /* El amarillo puro no da contraste como texto sobre blanco. Este sí. */
  --amber-ink: #7a4e00;

  --ink: #16181d;
  --ink-soft: #262a33;

  --paper: #ffffff;
  --mist: #f4f5f7;
  --line: #e4e6eb;

  --text: #1c1f26;
  --muted: #5a606b;
  --on-dark: #ffffff;
  --muted-on-dark: #adb3be;

  --font: "Calibri", "Carlito", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 24, 29, .06), 0 2px 8px rgba(22, 24, 29, .04);
  --shadow: 0 2px 4px rgba(22, 24, 29, .05), 0 12px 28px rgba(22, 24, 29, .07);
  --shadow-lg: 0 4px 8px rgba(22, 24, 29, .06), 0 24px 48px rgba(22, 24, 29, .12);
  --shadow-gold: 0 8px 24px rgba(240, 168, 30, .32);

  --header-h: 78px;
  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/*--------------------------------------------------------------
# 2. Base
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 1.4rem + 3.4vw, 3.85rem);
}

h2 {
  font-size: clamp(1.7rem, 1.25rem + 2vw, 2.65rem);
}

h3 {
  font-size: clamp(1.24rem, 1.1rem + .7vw, 1.55rem);
}

h4 {
  font-size: 1.15rem;
  letter-spacing: -.01em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--amber-ink);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
}

/* Foco siempre visible: requisito de accesibilidad */
:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

#header :focus-visible,
#hero :focus-visible,
#footer :focus-visible,
.trust :focus-visible,
.section--ink :focus-visible {
  outline-color: var(--gold);
}

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

/*--------------------------------------------------------------
# 3. Utilidades
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Sólo para lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important;
}

/* Salta al contenido; aparece al tabular */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: var(--ink);
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon--solid {
  fill: currentColor;
  stroke: none;
}

/*--------------------------------------------------------------
# 4. Botones
--------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--pill);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .22s var(--ease),
    background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn .icon {
  width: 1.15em;
  height: 1.15em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

/* Contorno claro: sobre fondo oscuro */
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: var(--on-dark);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
  color: var(--on-dark);
}

/* Contorno oscuro: sobre fondo claro */
.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--on-dark);
}

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}

.btn--dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: var(--on-dark);
}

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

.btn--lg {
  padding: 17px 34px;
  font-size: 1.1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/*--------------------------------------------------------------
# 5. Encabezado
--------------------------------------------------------------*/
/*
 * OJO: el fondo y el desenfoque NO van aquí, van en el ::before.
 * `backdrop-filter` (igual que `filter` y `transform`) convierte al elemento en
 * bloque contenedor de sus descendientes `position: fixed`. Si estuviera en
 * #header, el panel del menú móvil se mediría contra el encabezado (~78px de
 * alto) en vez de contra la pantalla, y quedaría recortado.
 */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height .28s var(--ease), border-color .28s var(--ease),
    box-shadow .28s var(--ease);
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(22, 24, 29, .92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transition: background-color .28s var(--ease);
}

#header.header-scrolled {
  height: 64px;
  border-bottom-color: rgba(255, 255, 255, .09);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

#header.header-scrolled::before {
  background: rgba(22, 24, 29, .97);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/*
 * El logo tiene la "F" y el "un" en gris oscuro, que desaparecen sobre el
 * encabezado negro. La placa blanca deja legible la marca completa.
 */
.logo {
  display: flex;
  align-items: center;
  flex: none;
  margin-right: auto;
  padding: 5px 11px;
  background: #fff;
  border-radius: 13px;
  line-height: 0;
}

.logo img {
  height: 42px;
  width: auto;
  transition: height .28s var(--ease);
}

.header-scrolled .logo img {
  height: 34px;
}

/*
 * Navegación de escritorio.
 * Los selectores se acotan a `> ul` a propósito: si no, le ganarían por
 * especificidad al botón .btn del menú móvil, que vive fuera de la lista.
 */
.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu > ul a,
.nav-menu .drop-down > button {
  position: relative;
  display: block;
  padding: 10px 13px;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}

.nav-menu > ul > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.nav-menu > ul a:hover,
.nav-menu .drop-down > button:hover,
.nav-menu > ul a[aria-current="true"] {
  color: #fff;
}

.nav-menu > ul > li > a:hover::after,
.nav-menu > ul > li > a[aria-current="true"]::after {
  transform: scaleX(1);
}

/* Submenú Herramientas */
.nav-menu .drop-down {
  position: relative;
}

.nav-menu .drop-down > button {
  display: flex;
  align-items: center;
  gap: .35em;
}

.nav-menu .drop-down > button[aria-expanded="true"] {
  color: #fff;
}

.nav-menu .drop-down > button .icon {
  width: .8em;
  height: .8em;
  transition: transform .22s var(--ease);
}

.nav-menu .drop-down > button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.nav-menu .drop-down ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 238px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.nav-menu .drop-down > button[aria-expanded="true"] + ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .drop-down ul a {
  display: flex;
  align-items: center;
  gap: .6em;
  padding: 11px 14px;
  color: var(--text);
  font-size: .95rem;
}

.nav-menu .drop-down ul a:hover {
  background: var(--mist);
  color: var(--ink);
}

.nav-menu .drop-down ul .icon {
  color: var(--amber-ink);
  width: 1.15em;
  height: 1.15em;
}

.header-cta {
  flex: none;
}

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Clase propia, no `span`: si no, alcanzaría también al <span class="sr-only"> */
.nav-toggle__bar {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background-color .2s var(--ease);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .26s var(--ease);
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10, 11, 14, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}

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

@media (min-width: 992px) {
  .nav-cta-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  /* Panel lateral en móvil */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: min(340px, 86vw);
    padding: calc(var(--header-h) + 16px) 22px 40px;
    background: var(--ink);
    border-left: 1px solid rgba(255, 255, 255, .08);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s var(--ease), visibility .32s;
  }

  body.nav-open .nav-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu > ul {
    display: block;
  }

  .nav-menu > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .nav-menu > ul a,
  .nav-menu .drop-down > button {
    width: 100%;
    padding: 15px 4px;
    font-size: 1.05rem;
    border-radius: 0;
  }

  .nav-menu .drop-down > button {
    justify-content: space-between;
  }

  .nav-menu > ul > li > a::after {
    display: none;
  }

  .nav-menu > ul a[aria-current="true"] {
    color: var(--gold);
  }

  /* El submenú se despliega en el flujo, no flotando */
  .nav-menu .drop-down ul {
    position: static;
    display: none;
    transform: none;
    min-width: 0;
    margin: 0 0 10px;
    padding: 4px 0 4px 8px;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(255, 196, 81, .4);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .drop-down > button[aria-expanded="true"] + ul {
    display: block;
    transform: none;
  }

  .nav-menu .drop-down ul a {
    padding: 12px 10px;
    color: rgba(255, 255, 255, .8);
    font-size: .98rem;
  }

  .nav-menu .drop-down ul a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
  }

  .nav-menu .drop-down ul .icon {
    color: var(--gold);
  }

  .nav-cta-mobile {
    margin-top: 26px;
  }

  .nav-cta-mobile .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# 6. Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 64px) 0 72px;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}

/* La foto va muy atenuada: manda el texto */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  opacity: .24;
  filter: grayscale(.35);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(115% 75% at 80% 8%, rgba(255, 196, 81, .17), transparent 58%),
    linear-gradient(180deg, rgba(22, 24, 29, .74) 0%, rgba(22, 24, 29, .92) 60%, var(--ink) 100%);
}

/* La firma de la página: el trazo ascendente del logo, recorrido por un paquete */
.hero-arc {
  position: absolute;
  z-index: -1;
  right: -4%;
  top: 6%;
  width: 70%;
  max-width: 880px;
  pointer-events: none;
}

.hero-arc__path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  opacity: .38;
  animation: arc-drift 5s linear infinite;
}

.hero-arc__dot {
  fill: var(--gold);
  filter: drop-shadow(0 0 9px rgba(255, 196, 81, .9));
  offset-path: path("M8 292C120 210 300 118 470 78 560 57 660 46 752 44");
  offset-rotate: 0deg;
  animation: arc-travel 7s var(--ease) infinite;
}

@keyframes arc-drift {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes arc-travel {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  9% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.hero-content {
  max-width: 730px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 22px;
  padding: 8px 17px 8px 13px;
  background: rgba(255, 196, 81, .13);
  border: 1px solid rgba(255, 196, 81, .3);
  border-radius: var(--pill);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-eyebrow .icon {
  width: 1.25em;
  height: 1.25em;
}

#hero h1 {
  color: #fff;
  margin-bottom: .35em;
}

/* El amarillo sobre el oscuro sí tiene contraste de sobra */
#hero h1 .accent {
  color: var(--gold);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
  color: rgba(255, 255, 255, .85);
}

.hero-actions {
  margin-bottom: 16px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .94rem;
  color: var(--muted-on-dark);
}

.hero-note .icon {
  width: 1.15em;
  height: 1.15em;
  color: var(--gold);
}

/*
 * Buscador de rastreo. Va aparte de los botones del hero a propósito: es para
 * quien YA es cliente, no compite con "Abrir casillero". La barra dorada de la
 * izquierda lo distingue del panel de rutas, que es visualmente parecido.
 */
.track-form {
  margin-top: 28px;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.track-form__label {
  display: flex;
  align-items: center;
  gap: .55em;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 700;
}

.track-form__label .icon {
  width: 1.15em;
  height: 1.15em;
}

.track-form__row {
  display: flex;
  gap: 10px;
}

.track-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--pill);
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
    box-shadow .2s var(--ease);
}

.track-form input::placeholder {
  color: var(--muted-on-dark);
}

.track-form input:hover {
  border-color: rgba(255, 255, 255, .32);
}

.track-form input:focus,
.track-form input:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 81, .25);
}

.track-form__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  flex: none;
  padding: 13px 24px;
  background: var(--gold);
  border: 0;
  border-radius: var(--pill);
  color: var(--ink);
  font-size: .99rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .18s var(--ease);
}

.track-form__cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.track-form__cta:active {
  transform: translateY(0);
}

.track-form__cta .icon {
  width: 1.1em;
  height: 1.1em;
}

@media (max-width: 575px) {
  /* En móvil el campo y el botón se apilan a lo ancho */
  .track-form__row {
    flex-direction: column;
  }

  .track-form__cta {
    width: 100%;
    padding: 14px 24px;
  }
}

/* Selector de origen: la puerta de entrada directa a las tarifas */
.route-picker {
  margin-top: 50px;
  padding: 24px 26px 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.route-picker__title {
  display: flex;
  align-items: center;
  gap: .55em;
  margin: 0 0 16px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.route-picker__title .icon {
  width: 1.3em;
  height: 1.3em;
}

.route-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 10px;
}

.origin-chip {
  display: flex;
  align-items: center;
  gap: .65em;
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
    transform .2s var(--ease);
}

.origin-chip:hover {
  background: rgba(255, 196, 81, .14);
  border-color: rgba(255, 196, 81, .55);
  color: #fff;
  transform: translateY(-2px);
}

.origin-chip .flag {
  font-size: 1.4em;
  line-height: 1;
}

.origin-chip .from {
  display: block;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

@media (max-width: 767px) {
  .hero-arc {
    opacity: .55;
    width: 100%;
    right: -18%;
    top: 12%;
  }
}

@media (max-width: 575px) {
  #hero {
    padding-top: calc(var(--header-h) + 38px);
    padding-bottom: 54px;
  }

  .hero-arc {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .route-picker {
    margin-top: 36px;
    padding: 20px 16px;
  }

  .route-picker__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .origin-chip {
    padding: 10px 12px;
    font-size: .92rem;
  }
}

/*--------------------------------------------------------------
# 7. Franja de confianza
--------------------------------------------------------------*/
.trust {
  background: var(--gold);
  color: var(--ink);
}

.trust ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 26px;
  padding: 22px 0;
}

.trust li {
  display: flex;
  align-items: center;
  gap: .7em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust .icon {
  width: 1.5em;
  height: 1.5em;
  stroke-width: 1.9;
}

@media (max-width: 767px) {
  .trust ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
    padding: 20px 0;
  }

  .trust li {
    font-size: .92rem;
  }
}

/*--------------------------------------------------------------
# 8. Secciones
--------------------------------------------------------------*/
.section {
  padding: clamp(58px, 7.5vw, 100px) 0;
}

.section--mist {
  background: var(--mist);
}

.section--ink {
  background: var(--ink);
  color: var(--muted-on-dark);
}

.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: #fff;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(34px, 4.5vw, 54px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--amber-ink);
}

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

/* Eco del trazo ascendente del logo bajo cada título */
.section-head h2 {
  position: relative;
  display: inline-block;
  margin-bottom: .45em;
  padding-bottom: 15px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 11px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 11'%3E%3Cpath d='M2 9C15 3.4 38 .8 64 3.2' fill='none' stroke='%23000' stroke-width='3.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 11'%3E%3Cpath d='M2 9C15 3.4 38 .8 64 3.2' fill='none' stroke='%23000' stroke-width='3.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.section-head--center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-lead {
  font-size: clamp(1.02rem, 1rem + .3vw, 1.14rem);
  color: var(--muted);
}

.section--ink .section-lead {
  color: var(--muted-on-dark);
}

/*--------------------------------------------------------------
# 9. Servicios
--------------------------------------------------------------*/
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
    border-color .28s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 168, 30, .5);
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  border-radius: 17px;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(240, 168, 30, .28);
}

.service-card__icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: .6em;
}

.service-card ul {
  display: grid;
  gap: 11px;
}

.service-card li,
.price-card li,
.about-list li {
  display: flex;
  gap: .7em;
  line-height: 1.5;
}

.service-card li {
  font-size: .98rem;
  color: var(--muted);
}

.service-card li .icon,
.price-card li .icon,
.about-list .icon {
  width: 1.18em;
  height: 1.18em;
  margin-top: .24em;
  color: var(--gold-deep);
  stroke-width: 2.4;
}

/*--------------------------------------------------------------
# 10. Cómo funciona
--------------------------------------------------------------*/
/* Aquí el orden sí es información: es la secuencia real que sigue un paquete */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  counter-increment: step;
  padding-top: 8px;
}

/* Hilo punteado que une los pasos */
.step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 42px);
  right: calc(-50% + 42px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 196, 81, .6) 0 7px, transparent 7px 15px);
}

.step:last-child::after {
  display: none;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 196, 81, .12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.38rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.step__num::before {
  content: "0" counter(step);
}

.step__body {
  text-align: center;
}

.step h3 {
  font-size: 1.16rem;
  margin-bottom: .45em;
}

.step p {
  font-size: .98rem;
  color: var(--muted-on-dark);
}

.steps-cta {
  margin-top: clamp(34px, 4.5vw, 50px);
  text-align: center;
}

@media (max-width: 991px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 575px) {
  /* En móvil el hilo se vuelve vertical y los pasos se alinean a la izquierda */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding-bottom: 28px;
  }

  .step::after {
    top: 58px;
    bottom: 6px;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, rgba(255, 196, 81, .6) 0 7px, transparent 7px 15px);
  }

  .step:nth-child(2)::after {
    display: block;
  }

  .step__num {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 1.18rem;
  }

  .step__body {
    text-align: left;
    padding-top: 6px;
  }
}

/*--------------------------------------------------------------
# 11. Tarifas
--------------------------------------------------------------*/
.route-tabs {
  display: flex;
  /*
   * `safe center` centra las pestañas cuando caben y vuelve a alinearlas a la
   * izquierda cuando desbordan. Un `center` a secas recortaría las primeras
   * pestañas en móvil y quedarían fuera de alcance al deslizar.
   */
  justify-content: safe center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.route-tab {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  flex: none;
  padding: 12px 20px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  color: var(--muted);
  font-size: .96rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
    color .2s var(--ease), box-shadow .2s var(--ease);
}

.route-tab:hover {
  border-color: var(--gold-deep);
  color: var(--text);
}

.route-tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.route-tab .flag {
  font-size: 1.15em;
  line-height: 1;
}

.route-panel:focus {
  outline: none;
}

/* El ancho máximo evita tarjetas gigantes; `margin-inline: auto` las centra
   para que no quede un hueco a la derecha cuando son 1 o 2 planes. */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 22px;
  max-width: 940px;
  margin-inline: auto;
}

/* Una o dos tarjetas no deben estirarse a todo el ancho */
.price-grid--one {
  max-width: 380px;
}

.price-grid--two {
  max-width: 690px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.price-card__stamp {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 5px 13px;
  background: var(--gold);
  border-radius: var(--pill);
  color: var(--ink);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card__head {
  display: flex;
  align-items: center;
  gap: .65em;
  margin-bottom: 16px;
  padding-right: 86px;
}

.price-card__head .icon {
  width: 26px;
  height: 26px;
  color: var(--amber-ink);
}

.price-card__head h3 {
  margin: 0;
  font-size: 1.28rem;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: .16em;
  margin-bottom: 6px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.price-card__amount sup {
  top: -.05em;
  font-size: .42em;
  font-weight: 700;
  color: var(--muted);
}

.price-card__amount .unit {
  font-size: .29em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

/* Planes sin cifra por libra (cotización, CBM) */
.price-card__amount--text {
  font-size: 1.42rem;
  letter-spacing: -.01em;
  color: var(--text);
}

.price-card__eta {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  margin-bottom: 18px;
  padding: 5px 13px;
  background: var(--mist);
  border-radius: var(--pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card__eta .icon {
  width: 1.1em;
  height: 1.1em;
}

/* Para qué sirve la modalidad, en una línea.
   México tiene tres servicios y dos cuestan exactamente lo mismo; sin
   esta línea el visitante no tiene con qué elegir entre terrestre y
   aéreo. Es el mismo texto que sale en el correo del casillero y en la
   calculadora, que salen de `serv_descripcion` en el sistema. */
.price-card__for {
  margin: -8px 0 16px;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-card li {
  font-size: .97rem;
  color: var(--muted);
}

.price-card__foot {
  margin-top: auto;
  padding-top: 20px;
}

.price-card__foot .btn {
  width: 100%;
}

.price-note {
  display: flex;
  gap: .7em;
  max-width: 940px;
  margin: 26px auto 0;
  padding: 17px 21px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  color: var(--muted);
}

.price-note .icon {
  width: 1.3em;
  height: 1.3em;
  margin-top: .2em;
  color: var(--amber-ink);
  flex: none;
}

/*--------------------------------------------------------------
# 12. Beneficios
--------------------------------------------------------------*/
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.benefits {
  display: grid;
  gap: 22px;
}

.benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 196, 81, .16);
  border-radius: 14px;
  color: var(--gold);
}

.benefit__icon .icon {
  width: 25px;
  height: 25px;
}

.benefit h3 {
  font-size: 1.12rem;
  margin-bottom: .3em;
}

.benefit p {
  margin: 0;
  font-size: .98rem;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  /* Imagen primero, texto después */
  .split__media {
    order: -1;
  }
}

/*--------------------------------------------------------------
# 13. Tiendas
--------------------------------------------------------------*/
.stores {
  padding: clamp(42px, 5.5vw, 62px) 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

/* Doble clase a propósito: gana sobre la regla `p:last-child { margin-bottom: 0 }` */
.stores .stores__label {
  margin-bottom: 30px;
  text-align: center;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Cinta continua en CSS puro, sin librería de carrusel */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 60px;
  animation: marquee 45s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

.marquee img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}

.marquee img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .marquee__track {
    gap: 38px;
  }

  .marquee img {
    height: 36px;
  }
}

/*--------------------------------------------------------------
# 14. Acerca de
--------------------------------------------------------------*/
.about-list {
  display: grid;
  gap: 13px;
  margin: 24px 0;
}

.about-list li {
  font-size: 1.01rem;
}

/*--------------------------------------------------------------
# 15. Contacto
--------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(26px, 3.5vw, 46px);
  align-items: start;
}

.contact-card,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 28px 26px;
}

.contact-form {
  padding: 30px 28px;
}

.contact-block + .contact-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-block h3 {
  display: flex;
  align-items: center;
  gap: .55em;
  margin-bottom: .5em;
  font-size: 1.04rem;
}

.contact-block h3 .icon {
  width: 1.25em;
  height: 1.25em;
  color: var(--amber-ink);
}

.contact-block p {
  margin: 0;
  font-size: .98rem;
  color: var(--muted);
}

.contact-block > a {
  font-weight: 600;
}

/* Cada sucursal con su enlace directo a WhatsApp */
.wa-list {
  display: grid;
  gap: 9px;
  margin-top: 4px;
}

.wa-list a {
  display: flex;
  align-items: center;
  gap: .7em;
  padding: 11px 15px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}

.wa-list a:hover {
  background: rgba(255, 196, 81, .16);
  border-color: var(--gold);
  color: var(--ink);
}

.wa-list .icon {
  width: 1.35em;
  height: 1.35em;
  color: #1fa855;
  flex: none;
}

.wa-list .city {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-size: .91rem;
  font-weight: 700;
  color: var(--text);
}

.field .req {
  color: var(--amber-ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

/* 4.8:1 sobre blanco: los textos de ejemplo también deben leerse */
.field input::placeholder,
.field textarea::placeholder {
  color: #6b7280;
}

.field input:hover,
.field textarea:hover {
  border-color: #c9ccd4;
}

.field input:focus,
.field textarea:focus,
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(240, 168, 30, .18);
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-hint {
  font-size: .89rem;
  color: var(--muted);
}

/* Avisos del formulario */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: .7em;
  margin-top: 20px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  font-size: .96rem;
  font-weight: 600;
}

.form-alert .icon {
  width: 1.3em;
  height: 1.3em;
  margin-top: .12em;
  flex: none;
}

.form-alert--ok {
  background: #e8f7ee;
  border: 1px solid #a9dcbd;
  color: #14663a;
}

.form-alert--error {
  background: #fdeceb;
  border: 1px solid #f3bfbb;
  color: #9a2620;
}

.map {
  margin-top: clamp(30px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-card {
    padding: 22px 18px;
  }

  .form-foot .btn {
    width: 100%;
  }

  .map iframe {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# 16. Pie de página
--------------------------------------------------------------*/
#footer {
  background: var(--ink);
  color: var(--muted-on-dark);
  font-size: .97rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: clamp(30px, 5vw, 58px);
  padding: clamp(46px, 6vw, 70px) 0 42px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 15px;
  line-height: 0;
}

.footer-logo img {
  height: 58px;
  width: auto;
}

.footer-info p {
  max-width: 330px;
  margin-bottom: 1em;
}

.footer-info a {
  color: var(--gold);
}

.footer-info a:hover {
  color: var(--gold-bright);
}

#footer h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.03rem;
}

.footer-links ul {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: var(--muted-on-dark);
  text-decoration: none;
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
    transform .2s var(--ease), color .2s var(--ease);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.social-links .icon {
  width: 20px;
  height: 20px;
}

.copyright {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: center;
  font-size: .92rem;
}

.copyright strong {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/*--------------------------------------------------------------
# 17. Botones flotantes
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .28s var(--ease), transform .28s var(--ease),
    visibility .28s, background-color .2s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-bright);
}

.back-to-top .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

/* WhatsApp fijo: el canal que la gente realmente usa */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease);
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.07);
}

.wa-float .icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 575px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }

  .wa-float {
    width: 50px;
    height: 50px;
    left: 14px;
    bottom: 14px;
  }
}

/*--------------------------------------------------------------
# 18. Animaciones
--------------------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: .09s;
}

.reveal[data-delay="2"] {
  transition-delay: .18s;
}

.reveal[data-delay="3"] {
  transition-delay: .27s;
}

/* Nadie debería marearse con nuestra página */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

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

  /* Sin animación la cinta pasa a ser una rejilla quieta, sin la copia duplicada */
  .marquee {
    -webkit-mask: none;
    mask: none;
  }

  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
    gap: 28px 40px;
  }

  .marquee__track img[aria-hidden="true"] {
    display: none;
  }

  .hero-arc__dot {
    display: none;
  }
}
