/* ══════════════════════════════════════════════════════
   COBÁ TRAVEL — styles.css
   Fuentes: Playfair Display (display) + DM Sans (body) + Space Mono (mono)
   Paleta: Azul noche (#0A1628) + Coral (#E8583D) + Arena (#F5EDD6) + Oro (#D4A843)
══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:        #3D7A67;
  --navy-mid:    #50957F;
  --navy-light:  #6DB09A;
  --coral:       #D37D00;
  --coral-dark:  #B86C00;
  --coral-light: #E9A030;
  --arena:       #F5EDD6;
  --arena-dark:  #E8DFC4;
  --gold:        #D4A843;
  --gold-light:  #F0C96A;
  --white:       #FFFFFF;
  --text-dark:   #0A1628;
  --text-mid:    #3D5070;
  --text-light:  #8899AA;

  --nav-h:       72px;
  --topbar-h:    36px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 12px rgba(61,56,48,.08);
  --shadow-md:   0 8px 32px rgba(61,56,48,.14);
  --shadow-lg:   0 20px 60px rgba(61,56,48,.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-in:  cubic-bezier(.4,0,1,1);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 1.5rem; }
.topbar-promo { color: var(--gold) !important; font-weight: 700; }

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 150;
  transition: background .35s, box-shadow .35s, top .35s;
  background: transparent;
}
#navbar.scrolled {
  top: 0;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link--mundial {
  color: var(--gold) !important;
  font-weight: 700;
}
.nav-link--mundial:hover { background: rgba(212,168,67,.15) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  transition: background .15s, color .15s;
}
.dropdown-menu li a:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* Nav CTA group */
.nav-cta-group { display: flex; align-items: center; gap: 1rem; }
.btn-nav-cta {
  background: var(--coral);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-xl);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.85) 0%,
    rgba(10,22,40,.5) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s .2s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .4s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--coral-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .6s var(--ease-out) forwards;
}

/* Hero search */
.hero-search {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeUp .8s .8s var(--ease-out) forwards;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--arena-dark);
  padding: 0 1rem;
}
.search-tab {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .75rem 1rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.search-tab.active, .search-tab:hover { color: var(--coral); border-bottom-color: var(--coral); }
.search-form {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding: 1rem;
}
.search-field {
  flex: 1;
  padding: 0 1rem;
  border-right: 1px solid var(--arena-dark);
}
.search-field:first-child { padding-left: 0; }
.search-field label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .35rem;
}
.search-field input,
.search-field select {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  padding: 0;
  outline: none;
  appearance: none;
}
.btn-search {
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: 1rem;
  display: inline-block;
}
.btn-search:hover { background: var(--coral-dark); transform: translateY(-2px); }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.hero-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active { background: var(--white); width: 40px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 2rem;
}
.trust-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2.5rem;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.trust-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .15rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── GENERAL SECTION ────────────────────────────────── */
.section {
  padding: 7rem 2rem;
  max-width: 1340px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 1rem;
}
.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--coral);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--coral); }
.link-ver-mas {
  font-size: .85rem;
  font-weight: 600;
  color: var(--coral);
  white-space: nowrap;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color .2s;
  flex-shrink: 0;
}
.link-ver-mas:hover { color: var(--coral-dark); }

/* ── DESTINOS GRID ──────────────────────────────────── */
.destinos-section { padding-bottom: 0; }
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 220px;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.destino-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.destino-card img {
  transition: transform .6s var(--ease-out);
}
.destino-card:hover img { transform: scale(1.07); }
.destino-card--tall { grid-row: span 2; }
.destino-card--wide { grid-column: span 2; }
.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .3s;
}
.destino-card:hover .destino-overlay {
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.2) 60%);
}
.destino-region {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .4rem;
}
.destino-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: .25rem;
}
.destino-overlay p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}

/* ── SERVICIOS ──────────────────────────────────────── */
.servicios-section {
  background: var(--arena);
  max-width: 100%;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.servicios-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 900;
  color: rgba(10,22,40,.04);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.servicios-section .section-header {
  max-width: 1340px;
  margin: 0 auto 3.5rem;
}
.servicios-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.servicio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.servicio-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .35s;
}
.servicio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.servicio-card:hover::before { transform: scaleX(1); }
.servicio-card--featured {
  background: var(--navy);
  color: var(--white);
}
.servicio-card--featured h3 { color: var(--white); }
.servicio-card--featured p { color: rgba(255,255,255,.7); }
.servicio-card--featured .servicio-link { color: var(--gold); }
.servicio-card--featured::before { background: var(--gold); }
.servicio-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--coral);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.servicio-icon { font-size: 2rem; }
.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
}
.servicio-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }
.servicio-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--coral);
  margin-top: auto;
  transition: letter-spacing .2s;
}
.servicio-card:hover .servicio-link { letter-spacing: .04em; }

/* ── MUNDIAL 2026 ───────────────────────────────────── */
.mundial-section {
  background: var(--navy);
  padding: 6rem 2rem;
  overflow: hidden;
}
.mundial-content {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mundial-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mundial-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.mundial-title em { font-style: italic; color: var(--gold); }
.mundial-desc { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 2rem; font-size: .95rem; }

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.countdown-item {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 70px;
}
.countdown-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.countdown-label {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
  display: block;
}
.countdown-sep {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: rgba(255,255,255,.3);
  margin-bottom: .5rem;
}

/* Sedes */
.mundial-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.mundial-badge-year {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(212,168,67,.3);
}
.mundial-badge-text {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .15em;
  text-align: center;
}
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.sede {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.sede img { border-radius: var(--radius-md); }
.sede p {
  position: absolute;
  bottom: .5rem;
  left: 0; right: 0;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.sede::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.7), transparent 50%);
}
.sede p { z-index: 1; }

/* ── SLIDER / OFERTAS ───────────────────────────────── */
.ofertas-section { background: var(--white); }
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.slider-viewport { overflow: hidden; width: 100%; }
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s var(--ease-out);
  padding: .5rem 0 1.5rem;
}
.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: calc(33.333% - 1rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,.06);
  transition: box-shadow .3s, transform .3s;
  flex-shrink: 0;
}
.trip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trip-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.trip-img img { transition: transform .5s; }
.trip-card:hover .trip-img img { transform: scale(1.06); }
.trip-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.trip-tag--hot { background: var(--coral); }
.trip-tag--nuevo { background: var(--gold); color: var(--navy); }
.trip-body { padding: 1.5rem; }
.trip-meta {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.trip-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .35rem;
}
.trip-body p { font-size: .83rem; color: var(--text-mid); margin-bottom: 1rem; }
.trip-price { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.25rem; }
.trip-before {
  font-size: .8rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.trip-current {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--coral);
}
.trip-current small { font-size: .7rem; font-weight: 400; font-family: var(--font-body); }
.btn-trip {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: .7rem;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.btn-trip:hover { background: var(--coral); }

/* Slider buttons */
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.slider-btn:hover { background: var(--coral); transform: scale(1.08); }

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--arena-dark);
  transition: background .3s, width .3s;
}
.dot-indicator.active { background: var(--coral); width: 24px; border-radius: 4px; }

/* ── EXPERIENCIAS / WHY US ──────────────────────────── */
.experiencias-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.exp-visual {
  position: relative;
  height: 560px;
}
.exp-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 82%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.exp-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 46%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.exp-stat-bubble {
  position: absolute;
  top: 40%;
  right: 2rem;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-stat-bubble strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
}
.exp-stat-bubble span { font-size: .75rem; opacity: .9; }
.exp-desc { color: var(--text-mid); line-height: 1.75; margin: 1.5rem 0 2rem; font-size: .95rem; }
.features-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,88,61,.12);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-item strong { font-size: .95rem; color: var(--navy); display: block; margin-bottom: .2rem; }
.feature-item p { font-size: .83rem; color: var(--text-mid); }

/* ── TESTIMONIOS ────────────────────────────────────── */
.testimonios-section { background: var(--arena); max-width: 100%; padding: 7rem 2rem; }
.testimonios-section .section-header { max-width: 1340px; margin: 0 auto 3.5rem; }
.testimonios-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card--featured {
  background: var(--navy);
  transform: scale(1.03);
}
.testimonial-card--featured p { color: rgba(255,255,255,.8); }
.testimonial-card--featured .testimonial-stars { color: var(--gold); }
.testimonial-card--featured strong { color: var(--white); }
.testimonial-card--featured span { color: rgba(255,255,255,.5); }
.testimonial-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.testimonial-card > p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: .9rem; color: var(--navy); display: block; }
.testimonial-card--featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: .75rem; color: var(--text-light); }

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  z-index: -1;
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1800&q=60') center/cover;
  opacity: .12;
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-title em { font-style: italic; color: var(--coral-light); }
.cta-desc { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 2.5rem; font-size: .95rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: var(--radius-xl);
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,88,61,.4);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,88,61,.5);
}
.btn-primary--large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-secondary {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-xl);
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: var(--radius-xl);
  transition: background .2s, transform .2s;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top {
  max-width: 1340px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.logo--footer .logo-text { font-size: .95rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.social-links { display: flex; gap: .75rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--coral); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-contact li a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1340px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── WHATSAPP FAB ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 100;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .destinos-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .destino-card--tall { grid-row: span 1; }
  .destino-card--wide { grid-column: span 1; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .mundial-content { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .trip-card { min-width: calc(50% - .75rem); }
  .experiencias-section { grid-template-columns: 1fr; }
  .exp-visual { height: 380px; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { transform: none; }
}

/* ── MOBILE (≤ 768px) ───────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --topbar-h: 0px; }

  .topbar { display: none; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: .25rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: .75rem 1rem; font-size: 1rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    display: none;
    padding: .25rem .5rem;
    border-radius: var(--radius-sm);
  }
  .dropdown.open .dropdown-menu { display: block; }
  .btn-nav-cta { display: none; }

  /* Hero */
  .hero-content { padding-top: calc(var(--nav-h) + 3rem); }
  .hero-title { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-search { display: none; }
  .hero-scroll-hint { display: none; }

  /* Trust */
  .trust-inner { gap: 0; flex-wrap: wrap; }
  .trust-item { padding: .5rem 1.5rem; }
  .trust-divider { display: none; }

  /* Sections */
  .section { padding: 4rem 1.25rem; }
  .section-header { flex-direction: column; align-items: flex-start; }

  /* Destinos */
  .destinos-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .destino-card { height: 200px; }

  /* Servicios */
  .servicios-section { padding: 4rem 1.25rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicios-bg-text { display: none; }

  /* Mundial */
  .mundial-content { grid-template-columns: 1fr; gap: 3rem; }

  /* Slider */
  .trip-card { min-width: calc(85vw); }

  /* Experiencias */
  .exp-visual { height: 300px; }

  /* Testimonios */
  .testimonios-section { padding: 4rem 1.25rem; }
  .testimonios-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.25rem; }
  .footer-legal { flex-direction: column; gap: .5rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* WhatsApp FAB */
  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ── SMALL MOBILE (≤ 480px) ────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .countdown-item { min-width: 60px; padding: .75rem 1rem; }
  .countdown-num { font-size: 1.5rem; }
}
