/* ─── LOCAL FONTS ─────────────────────────────────────── */
@font-face {
  font-family: 'AE Radar';
  src: url('../assets/tipografia/AERadar-Bold.otf') format('opentype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/tipografia/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/tipografia/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/tipografia/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/tipografia/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ─── DESIGN SYSTEM TOKENS ────────────────────────────── */
:root {
  --c-primary:        #0072CE;
  --c-primary-deep:   #004990;
  --c-promo:          #E83959;
  --c-promo-deep:     #c12040;
  --c-ink:            #0D0D0D;
  --c-white:          #FFFFFF;
  --c-white-warm:     #FFFBFF;
  --c-surface:        #F6F6F6;

  --ff-display: 'AE Radar', 'Bricolage Grotesque', system-ui, sans-serif;
  --ff-accent:  'DM Serif Display', Georgia, serif;
  --ff-body:    'Lato', system-ui, sans-serif;

  --r-pill:    2px;
  --r-button:  12px;
  --r-card:    16px;

  --sh-card: 0 7px 80px rgba(0,0,0,.16);

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 80px;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CTA BUTTON ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r-button);
  border: none;
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: filter .15s ease, transform .15s ease;
}

/* Botón compacto de navbar */
.nav .btn {
  height: 32px;
  padding: 0 14px;
  font-size: 11px;
  border-radius: 6px;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn--primary:hover  { filter: brightness(0.92); }
.btn--primary:active { transform: translateY(1px); }

/* ─── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: auto;
  padding: 12px 28px;
  background: var(--c-promo);
  color: var(--c-white-warm);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge img { height: auto; width: 56px; flex-shrink: 0; }

/* Botón de mecánica */
.mechanics-section .btn {
  width: 35.4%;
  max-width: 400px;
  justify-content: center;
}
.mechanics-section .badge {
  align-self: flex-start;
}

/* ─── NAVBAR ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: none;
  height: 64px;
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 156px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: stretch;   /* permite que hero__inner llene la altura completa */
  background: #0a1a2c;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.05) 100%),
    url('../assets/images/avionshaki_2.jpg');
  background-size: cover;
  background-position: left center;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 4.2%, 80px) 155px 160px; /* 4.2% ≈ 60px a 1440px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; /* alineado con la retícula de 155px */
}
.hero__eyebrow {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
}
.hero__eyebrow img { flex-shrink: 0; filter: brightness(0) invert(1); }

/* ─── HERO LABEL (top) ────────────────────────────────── */
/* Distribuye cada letra (span, ver initHeroLabelSpread en main.js) con flexbox
   en vez de text-justify:inter-character: esa propiedad no la soporta Safari/iOS,
   y ahí el justify normal solo tiene el espacio entre "RESIDENCIA" y "EUROPEA"
   para estirar, mandando cada palabra a un extremo. Flexbox funciona igual en
   todos los navegadores y sigue ocupando el ancho completo del contenedor. */
.hero__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 20px);
  text-transform: uppercase;
  color: var(--c-promo);
  line-height: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.hero__left  {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 180px;
}
.hero__tour {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 96px);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: var(--c-white);
}
.hero__subtitle {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: var(--c-white);
  padding-bottom: 24px;
}
.hero__desc {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  padding-bottom: 24px;
}
.hero__desc strong {
  font-family: var(--ff-display);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

/* ─── COUNTDOWN ───────────────────────────────────────── */
.countdown-section {
  background: var(--c-primary-deep);
  padding: 0 155px 64px;
  display: flex;
  justify-content: center;
}
.countdown-wrapper {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin-top: -130px;
  z-index: 10;
}
.countdown-wrapper .badge {
  position: absolute;
  top: -32px;
  left: 116px;
  z-index: 2;
  display: flex;
  width: 322px;
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 2px;
  background: #E83959;
}
.countdown-card {
  background: var(--c-white);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 40px 124px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  animation: cardSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.countdown-nums {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4);
}
.countdown-item { display: flex; flex-direction: column; align-items: center; }
.countdown-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 80px;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown-lbl {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--c-ink);
  opacity: 0.65;
}

/* ─── COUNTDOWN FLIGHT TRACK ──────────────────────────── */
.countdown-flight { position: relative; height: 40px; }
.countdown-flight__line,
.countdown-flight__plane {
  position: absolute;
  transform: translateY(-50%);
}
.countdown-flight__line  { top: 50%; }
.countdown-flight__plane { top: 48%; }
.countdown-flight__line {
  left: 0;
  width: 100%;
  height: 8px;
  object-fit: fill;
  clip-path: inset(0 100% 0 0);
  animation: lineReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.countdown-flight__plane {
  width: 91px;
  height: 26px;
  left: 0;                /* ancla base; la posición real la maneja transform */
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* ─── ANIMACIONES ─────────────────────────────────────── */
@keyframes lineReveal  { to { clip-path: inset(0 0% 0 0); } }
@keyframes cardSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── STATS + MAP ─────────────────────────────────────── */
.stats-map-section {
  background: var(--c-primary-deep);
  padding: var(--s-6) 155px;
}
.stats-map__inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.stats-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.stats-text__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.stats-text__title em { font-style: italic; }
.stats-text__regular {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-white);
  line-height: 1.4;
}
.stats__grid {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: var(--s-2);
  flex-wrap: nowrap;
}
.stat { display: inline-flex; align-items: flex-end; gap: 6px; color: var(--c-white); }
.stat__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__lbl {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 4px;
  opacity: 0.8;
}

/* ─── MAP SUBTITLE ────────────────────────────────────── */
.map-subtitle {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 28px);
  color: var(--c-white);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding-top: 80px;
}

/* ─── COUNTRY NAV PILLS ───────────────────────────────── */
.country-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 8px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}
.country-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.country-pill.is-active {
  color: var(--c-white);
}
.country-pill.is-active .country-pill__dot {
  background: #00FFF0;
}
.country-pill:hover:not(.is-active) {
  color: rgba(255,255,255,0.8);
}

/* Mapa */
.map-wrap {
  position: relative;
  border-radius: var(--r-card);
  background: rgba(0,114,206,0.4);
  padding: 44px 108px;
}
.map-canvas {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.map-bg-wrap,
.map-bg-wrap > svg { width: 100%; height: auto; display: block; }
.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* el arco no captura clicks */
}
.map-overlay circle { pointer-events: all; cursor: pointer; }
.map-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--c-white);
  border-radius: var(--r-card);
  padding: 16px 24px;
  min-width: 180px;        /* ampliado para números de 4 dígitos */
  text-align: center;
  box-shadow: var(--sh-card);
  transition: opacity 0.4s ease;
}
.map-card__country {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.map-card__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 44px); /* clamp para que quepan números de 4 dígitos */
  line-height: 1;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 2px;
}
.map-card__lbl {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--c-primary);
}

/* ─── MECHANICS ───────────────────────────────────────── */
.mechanics-section {
  background: var(--c-surface);
  padding: var(--s-6) 155px;
}
.mechanics__inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.mechanics__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.mechanics__body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mechanics__step-block {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  flex: 1;
}
.mechanics__step-block img { flex-shrink: 0; }
.mechanics__step-text { display: flex; flex-direction: column; gap: 10px; }
.mechanics__step-main {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-ink);
}
.mechanics__step-detail {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,0.6);
}
.mechanics__ig-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mechanics__ig-icon {
  width: auto;
  height: 140px;
}
.mechanics__deadline {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-ink);
}
.mechanics__deadline strong { font-weight: 700; }

/* ─── POSTER ──────────────────────────────────────────── */
.poster-section {
  display: block;
  line-height: 0;
}
.poster__photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── SPONSORS (dentro del footer) ───────────────────── */
.footer__sponsors {
  max-width: 1130px;
  margin: 0 auto var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__sponsors img      { opacity: 0.7; filter: brightness(0) invert(1); }
.footer__sponsors-right    { display: flex; align-items: center; gap: 32px; }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--c-primary-deep);
  padding: var(--s-6) 155px;
}
.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin-bottom: var(--s-4);
}
.footer__inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.footer__logo img { filter: brightness(0) invert(1); }
.footer__terms {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-white);
  transition: opacity 0.15s;
}
.footer__terms:hover { opacity: 0.75; }
.footer__social { display: flex; align-items: center; gap: 16px; }
.social-icon { display: flex; align-items: center; opacity: 0.7; transition: opacity 0.15s; }
.social-icon:hover { opacity: 1; }

/* ─── MAINTENANCE ─────────────────────────────────────── */
.maintenance {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--s-3);
  padding: var(--s-3);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(0,114,206,0.35) 0%, rgba(0,114,206,0) 100%),
    var(--c-primary-deep);
}
.maintenance__logo {
  filter: brightness(0) invert(1);
  margin-bottom: var(--s-2);
}
.maintenance__eyebrow {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.maintenance__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-white);
  max-width: 640px;
  min-width: 0;
}
.maintenance__desc {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  min-width: 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */

/* ── 1200px: reducir márgenes laterales ─────────────────── */
@media (max-width: 1200px) {
  .nav__inner,
  .hero__inner,
  .stats-map-section,
  .countdown-section,
  .mechanics-section,
  .footer { padding-left: var(--s-5); padding-right: var(--s-5); }

  .hero__photo {
    background-image: url('../assets/images/abionshaki_2_tablet.jpg');
    background-position: center center;
  }
  .countdown-card { padding: 40px 60px; }
  .countdown-wrapper .badge { left: 40px; }
  .stats__grid { gap: 40px; }
  .map-wrap { padding: 32px 60px; }
}

/* ── 900px: tablet ───────────────────────────────────────── */
@media (max-width: 900px) {
  /* Tipografía */
  .hero__label       { font-size: 14px; }
  .hero__title       { font-size: clamp(2.4rem, 7vw, 3.2rem); }
  .hero__subtitle { font-size: clamp(20px, 3.5vw, 32px); line-height: 1; }
  .hero__desc        { font-size: 16px; }
  .hero__tour        { font-size: 16px; }
  .stats-text__title { font-size: clamp(1.6rem, 4vw, 2rem); }
  .stats-text__regular { font-size: 17px; }
  .stat__num         { font-size: 40px; }
  .stat__lbl         { font-size: 17px; }
  .countdown-num     { font-size: 52px; line-height: 68px; }
  .mechanics__title  { font-size: 26px; line-height: 36px; }
  .mechanics__notes p { font-size: 17px; }
  .footer__terms     { font-size: 16px; }

  /* Layout */
  .hero__photo {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 75%),
      url('../assets/images/avionshaki_2_responsive.jpg');
    background-position: center center;
  }
  .hero__inner {
    justify-content: flex-start;
    gap: 32px;
    padding-bottom: 48px;
  }
  .hero__left { padding-bottom: 0; }
  .hero__eyebrow  { margin-bottom: 8px; padding-bottom: 12px; }
  .hero__subtitle { padding-bottom: 16px; }
  .hero__desc     { padding-bottom: 16px; }
  .countdown-card { padding: 32px 32px 28px; }
  .stats__grid    { gap: 24px; }
  .steps          { grid-template-columns: 1fr; gap: 24px; }
  .map-wrap       { padding: 24px 32px; }
  .mechanics-section .btn  { width: 45%; max-width: 400px; }
  .mechanics__body     { gap: var(--s-4); }
  .mechanics__step-main  { font-size: 16px; }
  .mechanics__step-detail { font-size: 15px; }
  .mechanics__ig-icon  { height: 100px; }
  .mechanics__step-icon { width: 44px; height: 53.6px; }
}

/* ── 640px: móvil ────────────────────────────────────────── */
@media (max-width: 640px) {
  /* 1. Hero responsive: imagen con negro arriba y foto abajo, textos en zona oscura */
  .hero__photo {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0) 75%),
      url('../assets/images/avionshaki_2_responsive.jpg');
    background-position: center center;
  }
  .hero__inner {
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }
  .hero__left { padding-bottom: 0; }
  .hero__eyebrow  { margin-bottom: 6px; padding-bottom: 8px; }
  .hero__subtitle { padding-bottom: 10px; }
  .hero__desc     { padding-bottom: 12px; }

  /* 2. Badges en móvil */
  .countdown-wrapper .badge {
    font-size: 9px;
    padding: 6px 14px;
    gap: 8px;
    width: auto;
    max-width: 100%;
  }
  .countdown-wrapper .badge img { width: 28px; }
  .mechanics-section .btn  { width: 70%; max-width: 400px; }
  .mechanics-section .badge {
    font-size: 9px;
    padding: 6px 14px;
    gap: 8px;
    width: auto;
    max-width: 100%;
  }
  .mechanics-section .badge img { width: 28px; }

  /* Tipografía */
  .hero__label         { font-size: 11px; }
  .hero__title         { font-size: clamp(2rem, 9vw, 2.5rem); }
  .hero__subtitle { font-size: clamp(18px, 5.5vw, 26px); line-height: 1; }
  .hero__eyebrow       { font-size: 11px; }
  .hero__desc          { font-size: 14px; }
  .hero__tour          { font-size: 14px; }
  .stats-text__title   { font-size: 1.5rem; }
  .stats-text__regular { font-size: 14px; }
  .countdown-num       { font-size: 36px; line-height: 48px; }
  .countdown-lbl       { font-size: 14px; }
  .mechanics__title    { font-size: 22px; line-height: 30px; }
  .mechanics__notes p  { font-size: 14px; }

  /* 4. Stats: número arriba, texto abajo */
  .stat     { flex-direction: column; align-items: center; gap: 2px; }
  .stat__num { font-size: 28px; }
  .stat__lbl { font-size: 13px; padding-bottom: 0; line-height: 1.2; }

  /* Gráficos */
  .step img { width: 40px; height: 49px; }

  /* Layout */
  .nav__inner        { padding: 0 var(--s-3); }
  .hero__inner       { padding: 80px var(--s-3) 110px; }
  .countdown-section { padding-bottom: var(--s-5); }
  .countdown-wrapper { margin-top: -80px; }
  .countdown-wrapper .badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
  }
  /* 3. Countdown: más espacio lateral */
  .countdown-card { padding: 24px 28px; }
  .countdown-nums { gap: var(--s-2); }
  .countdown-flight { display: none; }

  .stats-map-section { padding: var(--s-5) var(--s-3); }
  .stats__grid       { gap: 12px; }

  /* 5. Country nav: pills más juntas y pequeñas */
  .country-nav       { gap: 5px; }
  .country-pill      { font-size: 11px; padding: 3px 8px 3px 6px; gap: 5px; }
  .country-pill__dot { width: 7px; height: 7px; }

  .map-wrap { padding: 16px; }

  /* 6. Map card más pequeña */
  .map-card          { bottom: 8px; left: 8px; padding: 8px 10px; min-width: 100px; }
  .map-card__country { font-size: 11px; margin-bottom: 2px; line-height: 1.2; }
  .map-card__num     { font-size: 20px; }
  .map-card__lbl     { font-size: 10px; }

  .mechanics-section { padding: var(--s-5) var(--s-3); }
  .mechanics-section .btn  { width: 85%; max-width: 400px; justify-content: center; }
  .mechanics__body     { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  .mechanics__ig-wrap  { display: none; }
  .mechanics__step-main  { font-size: 15px; }
  .mechanics__step-detail { font-size: 14px; }
  .footer            { padding: var(--s-5) var(--s-3); }
  .footer__inner     { flex-direction: column; align-items: center; text-align: center; gap: var(--s-2); }
  .footer__sponsors  { flex-direction: column; gap: var(--s-2); }
  .footer__sponsors-right { gap: var(--s-3); }
  .footer__social    { gap: 12px; }

  .maintenance__logo  { width: 150px; height: auto; }
  .maintenance__desc  { font-size: 15px; }
}

/* ── 480px: móvil pequeño ────────────────────────────────── */
@media (max-width: 480px) {
  .hero__title   { font-size: 2rem; }
  .stat__num     { font-size: 22px; }
  .countdown-num { font-size: 28px; line-height: 38px; }
  .countdown-card { padding: 20px 16px; }
  .countdown-nums { gap: 10px; }
  .countdown-lbl  { font-size: 12px; }
}

/* ─── ACCESIBILIDAD: reduced-motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  /* Elimina todas las transiciones y animaciones CSS */
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }

  /* card de countdown: aparece directamente, sin slide */
  .countdown-card {
    opacity: 1;
    transform: none;
  }

  /* línea de vuelo: visible de golpe, sin reveal animado */
  .countdown-flight__line {
    clip-path: inset(0 0% 0 0);
    animation: none;
  }
}
