/* ══════════════════════════════════════════════════════
   COBÁ TRAVEL — styles.css v3.0
   Paleta: Verde jade (#3D7A67) + Ámbar (#D37D00) + Arena (#F5EDD6) + Oro (#D4A843)
   Fuentes: Playfair Display · DM Sans · Space Mono
══════════════════════════════════════════════════════ */

/* ── 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; }
address { font-style: normal; }

/* ── 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: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 80px; width: auto; object-fit: contain; }
.logo--footer img { height: 140px !important; width: auto; object-fit: contain; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.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; }
.chevron { transition: transform .2s; }
.dropdown:hover .chevron, .dropdown.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 210px;
  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);
  z-index: 10;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  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: .75rem; flex-shrink: 0; }

/* Social icons — desktop nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.social-icon-btn:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }
.social-icon-btn svg { flex-shrink: 0; }

/* Social links — footer uses same class with larger size */
.social-links { display: flex; gap: .65rem; }
.social-links .social-icon-btn { width: 38px; height: 38px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
.social-links .social-icon-btn:hover { background: var(--coral); color: var(--white); }

/* Mobile social hidden in nav, shown in menu */
.nav-social-mobile { display: none; }

/* Nav CTA */
.btn-nav-cta {
  background: var(--coral);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: .6rem 1.35rem;
  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;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  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.05rem;
  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 v3.0 ───────────────────────────────── */
.hero-search {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  overflow: visible; /* allow suggestions to overflow */
  max-width: 900px;
  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;
  gap: .25rem;
}
.search-tab {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .8rem 1rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 0;
  background: none;
}
.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 1rem 1rem;
}
.search-field {
  flex: 1;
  padding: 0 1rem;
  border-right: 1px solid var(--arena-dark);
  position: relative;
}
.search-field:first-child { padding-left: .5rem; }
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.search-field input,
.search-field select {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  padding: 0;
  outline: none;
  appearance: none;
  cursor: text;
}
.search-field select { cursor: pointer; }

/* Autocomplete suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + .75rem);
  left: -.5rem;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--arena-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 50;
  padding: .5rem 0;
  max-height: 280px;
  overflow-y: auto;
}
.search-suggestions[hidden] { display: none; }
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  cursor: pointer;
  transition: background .15s;
}
.search-suggestion-item:hover,
.search-suggestion-item[aria-selected="true"] { background: var(--arena); }
.suggestion-icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.suggestion-text { flex: 1; min-width: 0; }
.suggestion-name { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.suggestion-region { font-size: .72rem; color: var(--text-light); }

/* Search button */
.btn-search {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: 1rem;
  flex-shrink: 0;
}
.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;
  border: none;
}
.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; z-index: -10;}
.trust-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  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: .72rem; 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; }

/* ── SECTION BASE ───────────────────────────────────── */
.section {
  padding: 6rem 2rem;
  max-width: 1340px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}
.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--coral);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(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;
  align-self: flex-end;
}
.link-ver-mas:hover { color: var(--coral-dark); }

/* ── DESTINOS v3.0 — Compact 5-card grid ────────────── */
.destinos-section { padding-bottom: 2rem; }
.destinos-grid {
  display: grid;
  /* 1 featured tall col + 2 regular cols */
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 250px 210px;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.destino-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.destino-card img { transition: transform .65s var(--ease-out); }
.destino-card:hover img { transform: scale(1.07); }
/* Featured: spans 2 rows */
.destino-card--tall { grid-row: span 2; }

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 55%);
  padding: 1.25rem 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,.15) 55%);
}
.destino-region {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .35rem;
}
.destino-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: .2rem;
}
.destino-overlay p { font-size: .78rem; color: rgba(255,255,255,.75); }

/* Destino region tags */
.destinos-tags {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: .5rem 0;
}
.destinos-tags-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.destino-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--arena-dark);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color .2s, background .2s, color .2s;
}
.destino-tag:hover { border-color: var(--coral); background: rgba(211,125,0,.06); color: var(--coral); }
.destino-tag--hot { border-color: var(--gold); color: var(--navy); font-weight: 700; background: rgba(212,168,67,.1); }
.destino-tag--hot:hover { background: var(--gold); color: var(--white); }

/* ── SERVICIOS ──────────────────────────────────────── */
.servicios-section {
  background: var(--arena);
  max-width: 100%;
  padding: 6rem 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 3rem; }
.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: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  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: .62rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(61,122,103,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.servicio-card--featured .servicio-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.servicio-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); font-weight: 700; }
.servicio-card p { font-size: .85rem; 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: .7rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.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 { 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: .62rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; display: block; }
.countdown-sep { font-family: var(--font-mono); font-size: 1.5rem; color: rgba(255,255,255,.3); margin-bottom: .5rem; }
.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: .78rem; 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::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.7), transparent 50%); }
.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); 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: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.trip-body h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); font-weight: 700; margin-bottom: .3rem; }
.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: .78rem; 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;
  width: 100%;
}
.btn-trip:hover { background: var(--coral); }
.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 { 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; border: none; cursor: pointer; }
.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: 520px; }
.exp-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; 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(211,125,0,.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: .93rem; 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: 6rem 2rem; }
.testimonios-section .section-header { max-width: 1340px; margin: 0 auto 3rem; }
.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 footer strong { color: var(--white); }
.testimonial-card--featured footer span { color: rgba(255,255,255,.5); }
.testimonial-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: .95rem; 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: .7rem; 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(211,125,0,.35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(211,125,0,.45); }
.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; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.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 { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: .5rem; font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact p svg { flex-shrink: 0; margin-top: .15rem; opacity: .7; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact 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: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; 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 ─────────────────────────────────────────── */
.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: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .destino-card--tall { grid-row: span 2; }
  .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; }
  /* Hide some nav links to avoid overflow */
  .nav-link[href="nosotros.html"],
  .nav-link[href="contacto.html"] { display: none; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --topbar-h: 0px; }
  .topbar { display: none; }

  /* Hamburger */
  .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.25rem 1.25rem 2rem;
    gap: .15rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s var(--ease-out);
    z-index: 140;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: .7rem 1rem; font-size: .95rem; }
  /* Show all nav links on mobile */
  .nav-link[href="nosotros.html"],
  .nav-link[href="contacto.html"] { display: flex; }
  .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);
    width: 100%;
    min-width: auto;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .btn-nav-cta { display: none; }
  .nav-social { display: none; } /* shown inside menu instead */
  .nav-social-mobile { display: block; padding: 1rem 1rem .5rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: .5rem; width: 100%; }
  .nav-social-label { font-family: var(--font-mono); font-size: .62rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
  .nav-social-row { display: flex; gap: .5rem; }

  /* 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 { 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 1fr; grid-template-rows: 180px 180px 180px; }
  .destino-card--tall { grid-row: span 2; }

  /* Tags */
  .destinos-tags { gap: .45rem; }

  /* Servicios */
  .servicios-section { padding: 4rem 1.25rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicios-bg-text { display: none; }

  /* Mundial */
  .mundial-section { padding: 4rem 1.25rem; }
  .mundial-content { grid-template-columns: 1fr; gap: 3rem; }

  /* Slider */
  .trip-card { min-width: 85vw; }

  /* Experiencias */
  .experiencias-section { padding: 4rem 1.25rem; }
  .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; }
  .destinos-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .destino-card--tall { grid-row: span 1; }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .countdown-item { min-width: 60px; padding: .75rem 1rem; }
  .countdown-num { font-size: 1.5rem; }
}
/* =============================================
   DESTINOS.HTML - ESTILOS ESPECÍFICOS v3.0
============================================= */

/* Hero específico para destinos */
.hero--destinos {
  height: 520px;
  min-height: 520px;
}

.hero--destinos .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Filtros de regiones */
.destinos-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--arena-dark);
  background: var(--white);
  color: var(--text-mid);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}

/* Grid principal de destinos */
.destinos-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
  max-width: 1340px;
  margin: 0 auto;
}

/* Tarjetas más grandes y atractivas para la página de destinos */
.destino-card--full {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.destino-card--full img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.destino-card--full:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.destino-card--full:hover img {
  transform: scale(1.08);
}

.destino-card--full .destino-overlay {
  padding: 1.8rem 1.6rem;
  background: linear-gradient(to top, rgba(10,22,40,0.92), rgba(10,22,40,0.6) 60%, transparent);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.destino-card--full .destino-region {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.destino-card--full h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  color: white;
}

.destino-card--full p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive para destinos */
@media (max-width: 768px) {
  .destinos-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
  }
  
  .destino-card--full img {
    height: 220px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .destinos-filters {
    gap: 8px;
  }
}

/* FIX Z-INDEX HERO SEARCH */
.hero-search {
  position: relative;
  z-index: 100;
}

.search-suggestions {
  z-index: 20000 !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   MEJORAS GENERALES + CORRECCIONES v3.1
============================================= */

/* Cards unificadas y más atractivas */
.trip-card, .destino-card--full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trip-card:hover, .destino-card--full:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.trip-img, .destino-card--full img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.trip-card:hover .trip-img img,
.destino-card--full:hover img {
  transform: scale(1.09);
}

/* Overlay más elegante */
.destino-overlay {
  padding: 1.8rem 1.6rem;
  background: linear-gradient(to top, rgba(10,22,40,0.92), rgba(10,22,40,0.65) 50%, transparent);
}

/* Mejor tipografía en tarjetas */
.trip-body h3, .destino-card--full h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.trip-price .trip-current {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--coral);
}

.trip-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

/* Filtros más premium */
.destinos-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 14px 26px;
  border: 2px solid var(--arena-dark);
  background: var(--white);
  color: var(--text-mid);
  border-radius: var(--radius-xl);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-3px);
}

.filter-btn.active {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
  box-shadow: 0 8px 25px rgba(211, 125, 0, 0.25);
}

/* Grid más consistente */
.destinos-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  max-width: 1340px;
  margin: 0 auto;
}

/* Hero Search - Mejor z-index y apariencia */
.hero-search {
  position: relative;
  z-index: 120;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.search-suggestions {
  z-index: 9999 !important;
  top: calc(100% + 12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border: none;
}

/* Trust Bar - Mejor visual */
.trust-bar {
  z-index: 10;
  position: relative;
}

/* Pequeños ajustes generales */
.section {
  padding: 6.5rem 2rem;
}

@media (max-width: 768px) {
  .destinos-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
  }
  
  .trip-img, .destino-card--full img {
    height: 230px;
  }
}

.map-container {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      height: 420px;
      margin-top: 1.5rem;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

/* =============================================
   FORMULARIO DE CONTACTO - ESTILOS MEJORADOS
============================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--arena-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(211, 125, 0, 0.1);
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* Placeholder más suave */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.85;
}

/* Botón mejorado */
.contact-form button {
  margin-top: 1rem;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-out);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(211, 125, 0, 0.35);
}

/* Mensaje de éxito (opcional) */
.success-message {
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 1rem;
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
  height: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flip-card-front {
  background: white;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: var(--navy);
  color: white;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.flip-info-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
}

/* =============================================
   FLIP CARDS - DESTINOS v2.0 (Corregido)
============================================= */

.flip-card {
  perspective: 1200px;
  height: 100%;
  min-height: 380px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flip-card-front {
  background: var(--white);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
}

/* Frente de la tarjeta */
.flip-card-front img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.flip-card-front .destino-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.9), transparent 40%);
}

/* Botón info */
.flip-info-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 5;
  transition: transform 0.3s;
}

.flip-info-btn:hover {
  transform: scale(1.1);
}

/* Atrás */
.flip-card-back h3 {
  margin-bottom: 1rem;
  color: white;
}

.flip-card-back ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.flip-card-back li {
  margin: 6px 0;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .flip-card {
    min-height: 340px;
  }
  .flip-card-front img {
    height: 220px;
  }
}

/* ── SLIDER / OFERTAS ───────────────────────────────── */
.ofertas-section { background: var(--white); }
.slider-wrapper { 
  position: relative; 
  display: flex; 
  align-items: center; 
  gap: .5rem; 
  padding: 0 1rem; /* ← AGREGAR ESTO */
}
.slider-viewport { 
  overflow: hidden; 
  width: 100%; 
}
.slider-track { 
  display: flex; 
  gap: 1.5rem; 
  transition: transform .55s var(--ease-out); 
  padding: .5rem 0 1.5rem; 
}

/* Mejorar tarjetas del slider */
.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: calc(33.333% - 1.5rem);   /* ← Cambiar de -1rem a -1.5rem */
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,.06);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trip-card { 
    min-width: 92vw;   /* ← Cambiar de 85vw a 92vw para que no se corte */
  }
}

/* GOOGLE TRANSLATE - ESTILO MEJORADO */
#google_translate_element {
  display: inline-block;
  vertical-align: middle;
}

#google_translate_element select {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 30px !important;
  padding: 8px 16px !important;
  font-size: 0.83rem !important;
  font-weight: 600 !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer;
  height: auto !important;
  min-width: 110px;
  outline: none;
}

/* Quitar el fondo blanco horrible */
#google_translate_element select option {
  background: #1a2a3a;
  color: white;
}

/* Mejorar el contenedor */
.lang-switcher {
  background: rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Ocultar el logo de Google Translate (opcional pero recomendado) */
.goog-te-gadget-icon {
  display: none !important;
}

.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}