/* GUÍA DE VIAJES — Estilo airline moderno (inspirado CLIC) · Guía informativa */

:root {
  --purple: #5b21b6;
  --purple-dark: #4c1d95;
  --purple-deep: #2e1065;
  --magenta: #db2777;
  --pink: #f472b6;
  --cyan: #06b6d4;
  --sky: #38bdf8;

  --bg: #f8f7fc;
  --bg-alt: #f1effa;
  --surface: #ffffff;
  --text: #1e1b4b;
  --text-2: #475569;
  --text-3: #94a3b8;
  --border: #e2e8f0;

  --gradient-hero: linear-gradient(135deg, #2e1065 0%, #5b21b6 40%, #7c3aed 70%, #db2777 100%);
  --gradient-card: linear-gradient(145deg, #5b21b6, #db2777);
  --gradient-soft: linear-gradient(180deg, #f5f3ff 0%, #fdf2f8 100%);

  --font: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  --container: 1140px;
  --header-h: 72px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(91, 33, 182, 0.12);
  --shadow-lg: 0 20px 60px rgba(91, 33, 182, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 9999; width: auto; height: auto;
  padding: 10px 18px; clip: auto; background: var(--magenta); color: #fff;
  border-radius: 8px; font-weight: 600;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ── AVISO ── */
.top-notice {
  background: var(--purple-deep);
  padding: 10px 0;
  text-align: center;
}
.top-notice p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}
.top-notice strong { color: #fff; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(91,33,182,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.header__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em;
}
.header__logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 14px rgba(219,39,119,0.35);
}
.header__brand-accent { color: var(--magenta); }

.header__list { display: flex; gap: 32px; }
.header__link {
  font-size: 0.875rem; font-weight: 600; color: var(--text-2);
  transition: color 0.2s;
}
.header__link:hover { color: var(--purple); }

.header__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.header__toggle span {
  display: block; width: 22px; height: 2px; background: var(--purple);
  border-radius: 2px; transition: 0.3s var(--ease);
}
.header__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO CLIC-STYLE ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero__mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 80%, rgba(244,114,182,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(56,189,248,0.25) 0%, transparent 45%);
}

.hero__clouds {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg width='100' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='50' cy='30' rx='40' ry='18' fill='white'/%3E%3C/svg%3E") repeat;
  background-size: 120px 70px;
  animation: drift 40s linear infinite;
}
@keyframes drift { from { background-position: 0 0; } to { background-position: 600px 0; } }

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; margin-bottom: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.hero__tag-dot {
  width: 8px; height: 8px; background: #4ade80;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

.hero__pretitle {
  font-size: 0.9375rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--pink); margin-bottom: 12px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 20px;
}
.hero__title span {
  display: block;
  background: linear-gradient(90deg, #fff 0%, #fbcfe8 50%, #a5f3fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.125rem; line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px; max-width: 520px;
}

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.hero__chip {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8125rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 0.9375rem; font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: #fff; color: var(--purple);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.28); }

.btn--ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero__updated {
  margin-top: 24px; font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

.hero__visual { position: relative; display: flex; justify-content: center; }

.hero__plane {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(-4deg); }
}

.hero__card-float {
  position: absolute; background: #fff;
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.hero__card-float--1 { top: 5%; right: -10px; animation-delay: -1s; }
.hero__card-float--2 { bottom: 15%; left: -20px; animation-delay: -2.5s; }
@keyframes floatCard {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}
.hero__card-float strong { display: block; font-size: 0.875rem; color: var(--purple); }
.hero__card-float small { font-size: 0.75rem; color: var(--text-3); }

.info-box {
  margin-top: 48px; padding: 18px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  display: flex; gap: 14px; align-items: flex-start;
  max-width: 680px;
}
.info-box__icon { font-size: 1.25rem; flex-shrink: 0; }
.info-box p { font-size: 0.875rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

/* ── SECCIONES ── */
.section { padding: 100px 0; }
.section--alt { background: var(--gradient-soft); }
.section--dark {
  background: var(--purple-deep);
  color: #fff;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head--left { text-align: left; margin-left: 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--magenta); margin-bottom: 12px;
}
.section--dark .section-eyebrow { color: var(--pink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 16px;
}
.section--dark .section-title { color: #fff; }

.section-desc {
  font-size: 1.0625rem; color: var(--text-2); line-height: 1.7;
}
.section--dark .section-desc { color: rgba(255,255,255,0.75); }

/* ── RUTAS (estilo CLIC) ── */
.routes-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.route-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
}
.route-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.route-card__bg {
  position: absolute; inset: 0;
  transition: transform 0.5s var(--ease);
}
.route-card:hover .route-card__bg { transform: scale(1.08); }

.route-card__bg--1 { background: linear-gradient(160deg, #0369a1, #0ea5e9, #38bdf8); }
.route-card__bg--2 { background: linear-gradient(160deg, #5b21b6, #8b5cf6, #c084fc); }
.route-card__bg--3 { background: linear-gradient(160deg, #be185d, #db2777, #f472b6); }
.route-card__bg--4 { background: linear-gradient(160deg, #047857, #10b981, #6ee7b7); }
.route-card__bg--5 { background: linear-gradient(160deg, #c2410c, #f97316, #fdba74); }
.route-card__bg--6 { background: linear-gradient(160deg, #4338ca, #6366f1, #a5b4fc); }

.route-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
}

.route-card__body {
  position: relative; z-index: 2; padding: 24px;
}

.route-card__label {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}

.route-card__route {
  font-size: 1.375rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 8px;
}

.route-card__tip {
  font-size: 0.8125rem; color: rgba(255,255,255,0.85);
  line-height: 1.5; margin-bottom: 14px;
}

.route-card__badge {
  display: inline-block;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 0.75rem; font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.stat-chip {
  text-align: center; padding: 28px 20px;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.stat-chip:hover { transform: translateY(-4px); }
.stat-chip strong {
  display: block; font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-card);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px;
}
.stat-chip span { font-size: 0.8125rem; color: var(--text-2); line-height: 1.5; }

/* ── COMPARE ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.compare-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.compare-card--high { border-top: 4px solid var(--magenta); }
.compare-card--low { border-top: 4px solid var(--cyan); }

.compare-card__tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.compare-card--high .compare-card__tag { background: #fce7f3; color: var(--magenta); }
.compare-card--low .compare-card__tag { background: #ecfeff; color: #0891b2; }

.compare-card__title { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.compare-card__text { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }

.compare-card__list li {
  font-size: 0.875rem; color: var(--text-2);
  padding: 8px 0 8px 20px; position: relative;
  border-bottom: 1px solid var(--border);
}
.compare-card__list li:last-child { border-bottom: none; }
.compare-card__list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%;
}
.compare-card--high .compare-card__list li::before { background: var(--magenta); }
.compare-card--low .compare-card__list li::before { background: var(--cyan); }

/* ── TIPS BENTO ── */
.tips-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 18px;
}

.tip-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.tip-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-card);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tip-card:hover::before { transform: scaleX(1); }

.tip-card--wide { grid-column: span 2; }

.tip-card__num {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  background: var(--gradient-card);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.35; margin-bottom: 8px;
}
.tip-card__title { font-size: 1.0625rem; font-weight: 800; margin-bottom: 8px; }
.tip-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ── CONCEPTOS GRID ── */
.concept-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.concept-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow);
  text-align: center; transition: transform 0.3s var(--ease);
}
.concept-card:hover { transform: translateY(-6px); }
.concept-card__emoji { font-size: 2rem; margin-bottom: 12px; }
.concept-card__title { font-size: 0.9375rem; font-weight: 800; margin-bottom: 8px; }
.concept-card p { font-size: 0.8125rem; color: var(--text-2); line-height: 1.55; }

/* ── AIRPORTS ── */
.airport-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.airport-card {
  display: flex; gap: 20px; padding: 24px;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.airport-card:hover { transform: translateX(6px); }

.airport-card__code {
  flex-shrink: 0; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-card); border-radius: 14px;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.airport-card__region {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--magenta); margin-bottom: 4px;
}
.airport-card__name { font-size: 1.0625rem; font-weight: 800; margin-bottom: 6px; }
.airport-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.55; }

/* ── TARIFAS ── */
.tariff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.tariff-item {
  padding: 24px 28px; background: var(--surface);
  border-radius: var(--radius); box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
  transition: transform 0.3s var(--ease);
}
.tariff-item:hover { transform: translateX(4px); }
.tariff-item__title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--purple); }
.tariff-item p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

.tip-banner {
  margin-top: 28px; padding: 20px 28px;
  background: linear-gradient(90deg, #f5f3ff, #fdf2f8);
  border-radius: var(--radius);
  border: 1px solid #e9d5ff;
  font-size: 0.9375rem; color: var(--purple-dark); line-height: 1.65;
}
.tip-banner strong { color: var(--magenta); }

/* ── EMERGENCY ── */
.emergency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.emergency-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-lg);
}
.emergency-card__title {
  font-size: 1.125rem; font-weight: 800; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.emergency-card ol {
  list-style: decimal; padding-left: 20px;
}
.emergency-card li {
  font-size: 0.9375rem; color: var(--text-2);
  line-height: 1.65; margin-bottom: 10px;
}

/* ── RIGHTS ── */
.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rights-card {
  padding: 28px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.rights-card:hover { background: rgba(255,255,255,0.12); }
.rights-card__title { font-size: 1rem; font-weight: 800; color: var(--pink); margin-bottom: 8px; }
.rights-card p { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.is-open { box-shadow: var(--shadow); border-color: #e9d5ff; }

.faq-item__question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 0.9375rem; font-weight: 700;
  text-align: left; color: var(--text);
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--purple); }

.faq-item__icon {
  flex-shrink: 0; width: 20px; height: 20px; position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ''; position: absolute; background: var(--purple);
  border-radius: 1px; transition: 0.3s var(--ease);
}
.faq-item__icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-item__icon::after { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.is-open .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.is-open .faq-item__answer { max-height: 220px; }
.faq-item__answer p {
  padding: 0 24px 20px; font-size: 0.875rem;
  color: var(--text-2); line-height: 1.65;
}

/* ── CTA / CLOSING ── */
.closing {
  padding: 100px 0; text-align: center;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(244,114,182,0.3), transparent 60%);
}
.closing .container { position: relative; z-index: 1; }
.closing__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.closing__text {
  font-size: 1.0625rem; color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 56px 0 32px;
  background: #0f0720; color: rgba(255,255,255,0.65);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer__logo {
  font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.footer__logo span { color: var(--pink); }
.footer__brand p { font-size: 0.875rem; line-height: 1.6; }
.footer__heading {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 16px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.875rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--pink); }
.footer__legal {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 0.8125rem;
}
.footer__disclaimer { margin-top: 8px; opacity: 0.6; }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead, .info-box { margin-left: auto; margin-right: auto; }
  .hero__chips, .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__card-float { display: none; }
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-bento { grid-template-columns: 1fr 1fr; }
  .tip-card--wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0;
    transition: 0.3s var(--ease);
  }
  .header__nav.is-open { transform: translateY(0); opacity: 1; }
  .header__list { flex-direction: column; gap: 16px; }
  .header__toggle { display: flex; }

  .section { padding: 64px 0; }
  .compare-grid, .stats-row, .concept-grid, .tips-bento,
  .airport-grid, .tariff-grid, .emergency-grid, .rights-grid,
  .routes-scroll { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
