/* =========================================
   GoExperiencia — Design System Premium
   Poppins SemiBold (headings) · Inter (body)
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Paleta ── */
  --navy:       #0D1F35;
  --navy-dark:  #070F1D;
  --navy-mid:   #162840;
  --teal:       #00C49A;
  --teal-dark:  #00A880;
  --gold:       #F0A500;
  --gold-light: #F5A623;
  --gold-dark:  #C97A06;
  --white:      #ffffff;
  --off-white:  #F8FAFD;
  --gray-50:    #F2F5FA;
  --gray-100:   #E6EBF4;
  --gray-200:   #CDD5E2;
  --gray-400:   #8898AA;
  --gray-600:   #4A5568;
  --gray-800:   #1A2535;

  /* ── Tipografía ── */
  --font:         'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;

  /* ── Formas ── */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill: 100px;

  /* ── Sombras ── */
  --shadow-xs:  0 1px 4px rgba(13,31,53,0.06);
  --shadow-sm:  0 4px 16px rgba(13,31,53,0.08);
  --shadow:     0 8px 32px rgba(13,31,53,0.12);
  --shadow-lg:  0 20px 56px rgba(13,31,53,0.16);
  --shadow-teal: 0 8px 28px rgba(0,196,154,0.28);
  --shadow-gold: 0 8px 28px rgba(240,165,0,0.32);

  --transition: 0.15s ease;
}

/* ── Reset base ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* ── Headings → Poppins ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ==============================
   BOTONES
   ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: var(--radius-pill);
  font-family: var(--font); font-weight: 600; font-size: 0.875rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,165,0,0.42);
}
.btn--nav {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}
.btn--nav:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--white-outline:hover { background: var(--white); color: var(--navy); }
.btn--sm { padding: 8px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ==============================
   TOPBAR
   ============================== */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__right { display: flex; gap: 20px; }
.topbar__right a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.topbar__right a:hover { color: var(--teal); }

/* ==============================
   NAVBAR
   ============================== */
.nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
}
.nav__inner {
  display: flex; align-items: center; gap: 32px; height: 80px;
}
.nav__logo { display: flex; align-items: center; gap: 0; }
.nav__logo-icon-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-icon {
  height: 72px; width: 72px; object-fit: contain;
  filter:
    drop-shadow(2px 0 0 white) drop-shadow(-2px 0 0 white)
    drop-shadow(0 2px 0 white) drop-shadow(0 -2px 0 white);
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em;
  line-height: 1.2; margin-left: -10px;
}
.nav__logo-text em { font-style: normal; color: var(--teal); }
.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--navy-dark); padding: 12px 24px 20px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0; font-size: 0.9rem; color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a:hover { color: var(--teal); }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__scenes { position: absolute; inset: 0; z-index: 0; }
.hero__scene {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: sceneCycle 25s infinite;
}
.hero__scene--1 {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 25%, #0891b2 50%, #22d3ee 75%, #0e7490 100%);
  animation-delay: 0s;
}
.hero__scene--1::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(34,211,238,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(8,145,178,0.2) 0%, transparent 50%);
}
.hero__scene--2 {
  background: linear-gradient(135deg, #14532d 0%, #15803d 30%, #166534 60%, #1a3a2a 100%);
  animation-delay: 5s;
}
.hero__scene--2::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 60% 40%, rgba(74,222,128,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 10% 70%, rgba(34,197,94,0.15) 0%, transparent 50%);
}
.hero__scene--3 {
  background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 30%, #4338ca 55%, #7c3aed 80%, #312e81 100%);
  animation-delay: 10s;
}
.hero__scene--3::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(167,139,250,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 75%, rgba(196,181,253,0.15) 0%, transparent 50%);
}
.hero__scene--4 {
  background: linear-gradient(135deg, #0c4a6e 0%, #0f766e 35%, #0d9488 60%, #14b8a6 100%);
  animation-delay: 15s;
}
.hero__scene--4::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% 55%, rgba(45,212,191,0.25) 0%, transparent 55%);
}
.hero__scene--5 {
  background: linear-gradient(135deg, #451a03 0%, #92400e 25%, #d97706 50%, #f59e0b 75%, #b45309 100%);
  animation-delay: 20s;
}
.hero__scene--5::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 45%, rgba(251,191,36,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 15% 75%, rgba(245,158,11,0.2) 0%, transparent 50%);
}
@keyframes sceneCycle {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__scene-labels {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.hero__scene-label {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-pill);
  opacity: 0; white-space: nowrap;
  animation: labelCycle 25s infinite;
}
.hero__scene-label:nth-child(1) { animation-delay: 0s; }
.hero__scene-label:nth-child(2) { animation-delay: 5s; }
.hero__scene-label:nth-child(3) { animation-delay: 10s; }
.hero__scene-label:nth-child(4) { animation-delay: 15s; }
.hero__scene-label:nth-child(5) { animation-delay: 20s; }
@keyframes labelCycle {
  0%   { opacity: 0; color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.10); }
  4%   { opacity: 1; color: #fff; background: rgba(255,255,255,0.18); }
  20%  { opacity: 1; color: #fff; background: rgba(255,255,255,0.18); }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(7,15,29,0.52) 0%, rgba(7,15,29,0.40) 60%, rgba(7,15,29,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 88px 0 68px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 600; color: var(--white); line-height: 1.12;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 40px; max-width: 540px; line-height: 1.65;
}

/* ── Buscador ── */
.buscador {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  width: 100%; max-width: 920px;
  overflow: hidden;
}
.buscador__tabs {
  display: flex; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.buscador__tab {
  flex: 1; padding: 14px 12px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gray-600); background: none; border: none;
  cursor: pointer; transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.buscador__tab.active {
  background: var(--white); color: var(--navy);
  border-bottom-color: var(--gold);
}
.buscador__tab:hover:not(.active) { background: var(--gray-100); }
.buscador__form {
  display: flex; align-items: flex-end; gap: 0;
  padding: 22px;
}
.buscador__field {
  flex: 1; min-width: 0;
  padding: 0 14px; border-right: 1px solid var(--gray-100);
}
.buscador__field:first-child { padding-left: 0; }
.buscador__field:last-of-type { border-right: none; }
.buscador__field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--gray-600); margin-bottom: 6px;
  text-align: center;
}
.buscador__input-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; }
.buscador__icon { font-size: 1rem; flex-shrink: 0; }
.buscador__input-wrap input,
.buscador__input-wrap select {
  width: 100%; border: none; outline: none;
  font-size: 0.9rem; color: var(--gray-800);
  background: none; padding: 4px 0; appearance: none;
  text-align: center;
}
.buscador__btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark);
  border: none; border-radius: var(--radius-pill);
  padding: 14px 26px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  flex-shrink: 0; margin-left: 18px;
  box-shadow: var(--shadow-gold);
}
.buscador__btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(240,165,0,0.42);
}

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 80px 0; }
.section__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em;
}
.section__title::after {
  content: ''; display: block;
  width: 36px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin-top: 10px;
}
.section__filtros { display: flex; gap: 8px; flex-wrap: wrap; }
.filtro {
  padding: 8px 20px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-600);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.filtro:hover, .filtro.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.ver-todos {
  font-size: 0.875rem; font-weight: 600; color: var(--teal);
  transition: color var(--transition);
}
.ver-todos:hover { color: var(--teal-dark); }

/* ==============================
   DESTACADOS
   ============================== */
.destacados { background: var(--white); padding: 72px 0; }
.destacados__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.destacado-card {
  border-radius: var(--radius);
  min-height: 260px;
  display: flex; align-items: flex-end;
  overflow: hidden; position: relative;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.destacado-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.destacado-card--caribe {
  background-image: linear-gradient(160deg, rgba(8,80,120,0.45), rgba(6,90,120,0.72)),
    url('../imagenes/Paqutes/Punta cana.jpg');
  background-size: cover; background-position: center;
}
.destacado-card--europa {
  background-image: linear-gradient(160deg, rgba(50,40,130,0.45), rgba(70,35,110,0.72)),
    url('../imagenes/Paqutes/Portugal.jpg');
  background-size: cover; background-position: center;
}
.destacado-card--asia {
  background-image: linear-gradient(160deg, rgba(90,50,10,0.45), rgba(130,70,8,0.68)),
    url('../imagenes/Paqutes/Turquía y Dubai.jpg');
  background-size: cover; background-position: center;
}
.destacado-card__body {
  position: relative; z-index: 1; width: 100%;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.destacado-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.destacado-card__body p { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.destacado-card__precio {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-bottom: 16px;
}
.destacado-card__precio strong { font-size: 1.15rem; color: var(--white); }
.tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 10px;
}
.tag--white { background: rgba(255,255,255,0.18); color: var(--white); backdrop-filter: blur(6px); }
.tag--orange { background: var(--gold); color: var(--navy-dark); }

/* ==============================
   PAQUETES GRID
   ============================== */
.paquetes-section { background: var(--gray-50); }
.paquetes__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow: hidden;
  transition: all 0.18s ease; border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.pkg-card.hidden { display: none; }
.pkg-card__img {
  height: 188px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.pkg-card__img::before {
  position: absolute; font-size: 3.5rem;
  top: 50%; left: 50%; transform: translate(-50%, -55%);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
}
.pkg-card__badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(13,31,53,0.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.pkg-card__img--cancun    { background: linear-gradient(135deg,#0891b2,#22d3ee,#67e8f9); }
.pkg-card__img--cancun::before    { content: '🏖️'; }
.pkg-card__img--puntacana { background: linear-gradient(135deg,#0e7490,#06b6d4,#a5f3fc); }
.pkg-card__img--puntacana::before { content: '🌴'; }
.pkg-card__img--paris     { background: linear-gradient(135deg,#7c3aed,#a855f7,#d8b4fe); }
.pkg-card__img--paris::before     { content: '🗼'; }
.pkg-card__img--grecia    { background: linear-gradient(135deg,#1d4ed8,#3b82f6,#93c5fd); }
.pkg-card__img--grecia::before    { content: '🏛️'; }
.pkg-card__img--dubai     { background: linear-gradient(135deg,#92400e,#f59e0b,#fde68a); }
.pkg-card__img--dubai::before     { content: '🏙️'; }
.pkg-card__img--japon     { background: linear-gradient(135deg,#9f1239,#e11d48,#fda4af); }
.pkg-card__img--japon::before     { content: '🌸'; }
.pkg-card__img--patagonia { background: linear-gradient(135deg,#065f46,#10b981,#6ee7b7); }
.pkg-card__img--patagonia::before { content: '🏔️'; }
.pkg-card__img--brasil    { background: linear-gradient(135deg,#166534,#16a34a,#86efac); }
.pkg-card__img--brasil::before    { content: '🌴'; }
.pkg-card__body { padding: 18px 16px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__title {
  font-family: var(--font-heading);
  font-size: 0.97rem; font-weight: 600; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.pkg-card__destino { font-size: 0.79rem; color: var(--gray-400); margin-bottom: 12px; }
.pkg-card__detalles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 16px;
}
.pkg-card__detalles span {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--gray-50); color: var(--gray-600);
  font-size: 0.7rem; font-weight: 500;
  padding: 5px 9px; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-100);
  min-height: 26px;
}
.pkg-card__footer { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.pkg-card__precio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #dde6f0;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 4px;
  gap: 2px;
}
.pkg-card__precio .desde {
  font-size: 0.72rem; color: #4f6070; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.pkg-card__precio strong {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  line-height: 1;
}
.pkg-card__precio .por-persona {
  font-size: 0.67rem; color: #4f6070; font-weight: 500;
}

/* ==============================
   SALIDAS GRUPALES
   ============================== */
.salidas-section { background: var(--white); }
.salidas__grid { display: flex; flex-direction: column; gap: 16px; }
.salida-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden;
  display: flex; box-shadow: var(--shadow-xs);
  transition: all 0.18s ease;
}
.salida-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.salida-card__img {
  width: 360px; flex-shrink: 0;
  position: relative; overflow: hidden;
  border-radius: 12px 0 0 12px;
  align-self: flex-start;
  height: 240px;
}
.salida-card__img--maldivas  { background: linear-gradient(135deg,#0f766e,#14b8a6,#5eead4); }
.salida-card__img--maldivas::after  { content: '🌊'; position: absolute; font-size: 4rem; }
.salida-card__img--peru      { background: linear-gradient(135deg,#78350f,#d97706,#fbbf24); }
.salida-card__img--peru::after      { content: '🏔️'; position: absolute; font-size: 4rem; }
.salida-card__img--marruecos { background: linear-gradient(135deg,#7c2d12,#ea580c,#fdba74); }
.salida-card__img--marruecos::after { content: '🏜️'; position: absolute; font-size: 4rem; }
/* Nuevas salidas 2026 — fotos reales */
.salida-card__img--turquia-grecia {
  background-image: url('../imagenes/salidas grupales/turquia-islas-griegas.jpg');
  background-size: cover; background-position: center;
}
.salida-card__img--colombia {
  background-image: url('../imagenes/salidas grupales/colombia-medellin.jpg');
  background-size: cover; background-position: center;
}
.salida-card__img--adriatico {
  background-image: url('../imagenes/salidas grupales/perlas-adriatico.jpg');
  background-size: cover; background-position: center;
}
.salida-card__img--italia {
  background-image: url('../imagenes/salidas grupales/sur-italia-amalfitana.jpg');
  background-size: cover; background-position: center;
}
.salida-card__img--inglaterra {
  background-image: url('../imagenes/salidas grupales/inglaterra-escocia-francia.webp');
  background-size: cover; background-position: center;
}
/* Botón "Ver precios" + dropdown de itinerarios */
.btn--yellow {
  background: transparent;
  border: 1.5px solid #2DC5A2;
  color: #2DC5A2;
  padding: 9px 14px; border-radius: 8px; font-size: 0.82rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; white-space: nowrap; width: 100%;
  font-family: 'Inter', sans-serif;
}
.btn--yellow:hover { background: #2DC5A2; color: #fff; }
.itinerarios-wrap { position: relative; width: 100%; }
.itinerarios-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  z-index: 300; min-width: 260px; overflow: hidden;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: opacity .18s, transform .18s;
}
.itinerarios-dropdown.open {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
/* Permitir que el dropdown se vea por encima del borde y demás cards */
.salida-card.dropdown-open {
  overflow: visible;
  position: relative;
  z-index: 50;
}
.itinerarios-dropdown__header {
  padding: 10px 16px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #94a3b8;
  background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.itinerarios-dropdown__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; gap: 12px; border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem; color: #1B2E4B; transition: background .12s;
}
.itinerarios-dropdown__item:last-child { border-bottom: none; }
.itinerarios-dropdown__item:hover { background: #f0fdf9; }
.itinerarios-dropdown__item a {
  font-size: 0.78rem; padding: 4px 10px; white-space: nowrap;
}
/* ── Dropdown extendido: Turquía e Islas Griegas ── */
.itin--turquia { min-width: 460px; max-width: 520px; }
.itin-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #1B2E4B; flex-wrap: wrap;
}
.itin-chip {
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap;
}
.itin-chip--day   { background: #ef4444; color: #fff; }
.itin-chip--night { background: #1e3a5f; color: #fff; border: 1px solid #3b82f6; }
.itin-titulo {
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  font-weight: 600; margin-left: 4px;
}
.itin-precios {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: #e2e8f0;
}
.itin-bloque {
  background: #fff; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
}
.itin-bloque__fechas {
  font-size: 0.75rem; font-weight: 800; color: #1B2E4B;
  text-transform: uppercase; letter-spacing: .04em;
  background: #EFF6FF; border-radius: 6px;
  padding: 5px 8px; text-align: center;
}
.itin-bloque__fila {
  display: flex; flex-direction: column; gap: 2px;
}
.itin-bloque__tipo {
  font-size: 0.75rem; color: #64748b;
}
.itin-bloque__monto {
  font-size: 1.25rem; font-weight: 800; color: #1B2E4B; display: block;
}
.itin-bloque__imp {
  font-size: 0.72rem; color: #94a3b8; display: block;
}
.itin-hr {
  border: none; border-top: 1px dashed #e2e8f0; margin: 4px 0;
}
.itin-incluye {
  padding: 12px 16px; background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.itin-incluye__titulo {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: #1B2E4B; display: block; margin-bottom: 4px;
}
.itin-incluye p {
  font-size: 0.78rem; color: #475569; line-height: 1.5; margin: 0;
}
.itin-cta {
  padding: 12px 16px; border-top: 1px solid #e2e8f0;
}
/* Plus del Viaje */
.itin-plus {
  padding: 12px 16px; background: #fffbeb;
  border-top: 1px solid #fde68a;
}
.itin-plus__titulo {
  font-size: 0.78rem; font-weight: 800; color: #92400e;
  display: block; margin-bottom: 4px;
}
.itin-plus p {
  font-size: 0.78rem; color: #78350f; line-height: 1.5; margin: 0;
}
/* Colombia */
.itin--colombia { min-width: 380px; }
.itin--colombia .itin-bloque__fechas {
  font-size: 0.8rem; background: #f0fdf4; color: #166534;
}
/* Badges (Doble garantizada / BUE COR) */
.itin-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 16px; border-bottom: 1px solid #e2e8f0; background: #f8fafc;
}
.itin-badge {
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap;
}
.itin-badge--green { background: #dcfce7; color: #166534; }
.itin-badge--blue  { background: #dbeafe; color: #1e40af; }
/* Recorrido */
.itin-recorrido {
  padding: 12px 16px; border-bottom: 1px solid #e2e8f0;
}
.itin-recorrido__titulo {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: #1B2E4B; display: block; margin-bottom: 4px;
}
.itin-recorrido p {
  font-size: 0.78rem; color: #475569; line-height: 1.5; margin: 0;
}
/* Adriático */
.itin--adriatico { min-width: 400px; }
.itin-bloque__fechas--adriatico { background: #eff6ff; color: #1e40af; font-size: 0.78rem; }
/* Sur de Italia */
.itin--italia { min-width: 400px; }
.itin-bloque__fechas--italia { background: #fff1f2; color: #9f1239; font-size: 0.78rem; }
/* Inglaterra */
.itin--inglaterra { min-width: 400px; }
.itin-bloque__fechas--inglaterra { background: #eff6ff; color: #1e40af; font-size: 0.78rem; }
.itin-precios--single { grid-template-columns: 1fr; }
.itin-bloque--full { border-right: none; }
/* Programas apilados (Sudáfrica y similares) */
.itin--sudafrica { min-width: 360px; }
.itin-programa {
  padding: 14px 16px; border-bottom: 1px solid #e2e8f0;
  display: flex; flex-direction: column; gap: 6px;
}
.itin-programa:last-of-type { border-bottom: none; }
.itin-programa--link {
  text-decoration: none; color: inherit;
  transition: background .15s;
  cursor: pointer;
}
.itin-programa--link:hover { background: #f8fafc; }
.itin-programa--link:hover .itin-programa__ver { opacity: 1; }
.itin-programa__ver {
  font-size: 0.72rem; font-weight: 700;
  color: #2DC5A2; margin-top: 2px;
  opacity: 0; transition: opacity .15s;
}
.itin-programa__top {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.itin-programa__nombre {
  font-size: 0.82rem; font-weight: 800; color: #1B2E4B;
  text-transform: uppercase; letter-spacing: .04em;
}
.itin-programa__chips { display: flex; gap: 4px; flex-shrink: 0; }
.itin-programa__ruta {
  font-size: 0.76rem; color: #64748b; line-height: 1.4; margin: 0;
}
.itin-programa__badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  background: #fff7ed; color: #92400e; border-radius: 20px;
  padding: 2px 10px; border: 1px solid #fed7aa;
}
.itin-programa__precio {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.itin-programa__precio span { font-size: 0.72rem; color: #94a3b8; }
.itin-programa__precio strong { font-size: 1.1rem; font-weight: 800; color: #1B2E4B; }
/* Permitir dropdown-open en pkg-card también */
.pkg-card.dropdown-open { overflow: visible; position: relative; z-index: 50; }
/* Portugal */
.itin--portugal { min-width: 400px; }

/* ── SALVADOR DE BAHÍA — Tabs de origen (COR / BUE) ─────────── */
.itin--salvador      { min-width: 420px; }
.itin--punta-cana    { min-width: 420px; }
.itin--mexico        { min-width: 380px; }
.itin--mexico-caribe { min-width: 440px; }
.itin--jamaica       { min-width: 400px; }
.itin--aruba         { min-width: 380px; }
.itin--mundial       { min-width: 460px; }

/* ── MUNDIAL 26 — Grid de precios ──────────────────────────── */
.itin-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.itin-grid__head {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 4px;
  padding: 6px 8px;
  background: #f8fafc;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.itin-grid__head-h3 { color: #ea580c; text-align: center; }
.itin-grid__head-h4 { color: #2563eb; text-align: center; }
.itin-grid__row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 4px;
  padding: 8px 8px;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
}
.itin-grid__row:last-child { border-bottom: none; }
.itin-grid__row:nth-child(even) { background: #fafbfc; }
.itin-grid__pack { display: flex; flex-direction: column; gap: 2px; }
.itin-grid__pack-name {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.82rem;
}
.itin-grid__pack-desc {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.3;
}
.itin-grid__price {
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.itin-grid__price--h3 { color: #ea580c; }
.itin-grid__price--h4 { color: #2563eb; }
.itin-grid__note {
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  padding: 6px 4px 2px;
  font-style: italic;
}
.itin-grid__consult {
  font-size: 0.72rem;
  background: #fef9c3;
  color: #92400e;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Scroll interno para dropdowns con muchos hoteles */
.itin-scroll {
  max-height: 400px;
  overflow-y: auto;
  margin: 0 -16px;
  padding: 0 16px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.itin-scroll::-webkit-scrollbar { width: 4px; }
.itin-scroll::-webkit-scrollbar-track { background: transparent; }
.itin-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* Encabezados de zona dentro del scroll */
.itin-zona {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 10px 0 4px;
}
.itin-zona:first-child { margin-top: 4px; }
.itin-zona--playa  { background: #dcfce7; color: #15803d; }
.itin-zona--cancun { background: #ede9fe; color: #6d28d9; }
.itin-zona--costa  { background: #fee2e2; color: #b91c1c; }

/* Eliminar borde externo del grupo de hoteles dentro de zona */
.itin-hotels--zona {
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4px;
}
/* Cuando el dropdown se pasa del borde derecho, lo anclamos a la derecha */
.itinerarios-dropdown.itin-align-right { left: auto; right: 0; }

.itin-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.itin-tab {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.81rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.itin-tab:hover:not(.itin-tab--active) {
  background: #e9f0f8;
  color: #1B2E4B;
  border-color: #cbd5e1;
}
.itin-tab--active {
  background: #1B2E4B;
  border-color: #1B2E4B;
  color: #fff;
}
.itin-tab-panel { display: none; }
.itin-tab-panel--active { display: block; }

/* Hotel list */
.itin-hotels {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.itin-hotel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  gap: 10px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  transition: background 0.12s;
}
.itin-hotel:last-child { border-bottom: none; }
.itin-hotel:nth-child(even) { background: #f8fafc; }
.itin-hotel__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.itin-hotel__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.itin-hotel__regime {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
}
.itin-regime--mp { background: #dbeafe; color: #1d4ed8; }
.itin-regime--ai { background: #dcfce7; color: #15803d; }
.itin-regime--ep { background: #f1f5f9; color: #475569; }
.itin-hotel__precios {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.itin-hotel__monto {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1B2E4B;
}
.itin-hotel__imp {
  font-size: 0.68rem;
  color: #94a3b8;
}
.itin-bloque__fechas--portugal { background: #fdf4ff; color: #7e22ce; font-size: 0.78rem; }
.itin-stopover {
  padding: 10px 16px; background: #f97316; color: #fff;
  font-size: 0.78rem; font-weight: 700; text-align: center;
  letter-spacing: .03em;
}
.salida-card__body {
  flex: 1; padding: 20px 24px;
  display: flex; gap: 20px; align-items: center;
}
.salida-card__fecha {
  text-align: center; background: var(--navy);
  color: var(--white); border-radius: var(--radius-sm);
  padding: 10px 14px; flex-shrink: 0; min-width: 56px;
}
.salida-card__mes  { display: block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; opacity: 0.70; }
.salida-card__dia  { display: block; font-size: 1.85rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.salida-card__info { flex: 1; }
.salida-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.salida-card__info p { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; }
.salida-card__footer  { display: flex; align-items: center; gap: 16px; }
.salida-card__precio  { font-size: 0.85rem; color: var(--gray-600); }
.salida-card__precio strong {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
}

/* ==============================
   CIRCUITOS
   ============================== */
.circuitos-section { background: var(--gray-50); }
.circuitos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.circ-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--shadow-xs); transition: all 0.18s ease;
}
.circ-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.circ-card__img {
  height: 164px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.circ-card__img--europa-clasica { background: linear-gradient(135deg,#312e81,#6d28d9,#a78bfa); }
.circ-card__img--europa-clasica::after { content: '🏰'; position: absolute; font-size: 4rem; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3)); }
.circ-card__img--usa            { background: linear-gradient(135deg,#1e3a8a,#2563eb,#93c5fd); }
.circ-card__img--usa::after            { content: '🗽'; position: absolute; font-size: 4rem; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3)); }
.circ-card__img--sudeste        { background: linear-gradient(135deg,#065f46,#059669,#6ee7b7); }
.circ-card__img--sudeste::after        { content: '⛩️'; position: absolute; font-size: 4rem; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3)); }
.circ-card__body { padding: 20px; }
.circ-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.circ-card__ruta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  font-size: 0.78rem; color: var(--gray-600); margin-bottom: 12px;
}
.circ-card__ruta span:nth-child(even) { color: var(--gray-400); }
.circ-card__detalles { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.circ-card__detalles span {
  background: var(--gray-50); color: var(--gray-600);
  font-size: 0.7rem; font-weight: 500;
  padding: 3px 9px; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-100);
}
.circ-card__footer { display: flex; align-items: center; justify-content: space-between; }
.circ-card__precio { font-size: 0.82rem; color: var(--gray-600); }
.circ-card__precio strong {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
}

/* ==============================
   POR QUÉ ELEGIRNOS
   ============================== */
.porque {
  background: var(--navy);
  padding: 88px 0;
}
.porque .section__title { color: var(--white); }
.porque .section__title::after { background: var(--teal); }
.porque__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  margin-bottom: 60px;
}
.porque__item { text-align: center; }
.porque__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.porque__item h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px;
}
.porque__item p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.porque__logo { display: flex; justify-content: center; }
.porque__logo img { height: 52px; filter: brightness(0) invert(1); opacity: 0.80; }

/* ==============================
   CONTACTO
   ============================== */
.contacto-section { background: var(--white); }
.contacto__grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start;
}
.contacto__info .section__title { margin-bottom: 16px; }
.contacto__info > p { color: var(--gray-600); line-height: 1.75; margin-bottom: 36px; }
.contacto__datos { display: flex; flex-direction: column; gap: 20px; }
.contacto__dato { display: flex; align-items: flex-start; gap: 14px; }
.contacto__dato > span { font-size: 1.2rem; }
.contacto__dato strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.contacto__dato span:last-child { font-size: 0.875rem; color: var(--gray-600); }
.contacto__form {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 700;
  color: var(--gray-600); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--gray-800); background: var(--white);
  outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,196,154,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 14px; }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--navy-dark); padding-top: 64px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 52px;
}
.footer__logo { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer__brand .nav__logo { margin-bottom: 14px; margin-left: -6px; }
.footer__brand .nav__logo-icon { height: 48px; width: 48px; }
.footer__brand .nav__logo-text { font-size: 1.1rem; margin-left: -6px; }
.footer__brand > p {
  font-size: 0.85rem; color: rgba(255,255,255,0.40);
  line-height: 1.75; max-width: 260px; margin-bottom: 22px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all var(--transition);
}
.footer__social-link:hover { background: var(--teal); color: var(--white); }
.footer__col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.30); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col span {
  font-size: 0.85rem; color: rgba(255,255,255,0.46);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.90); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.90); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--teal); }

/* ==============================
   WHATSAPP FLOTANTE
   ============================== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 9998;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}
.whatsapp-float__label {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  line-height: 1.2;
}
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.60);
}
@media (max-width: 480px) {
  .whatsapp-float { padding: 12px; border-radius: 50%; }
  .whatsapp-float__label { display: none; }
}
.btn-wa-card {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: white; flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}
.btn-wa-card:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(37,211,102,0.5); }
.whatsapp-float::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.40);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==============================
   TOAST
   ============================== */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal);
  transform: translateY(80px); opacity: 0;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .paquetes__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .paquetes__grid      { grid-template-columns: repeat(2, 1fr); }
  .destacados__grid    { grid-template-columns: 1fr 1fr; }
  .destacados__grid > :last-child { grid-column: 1 / -1; }
  .porque__grid        { grid-template-columns: repeat(2, 1fr); }
  .circuitos__grid     { grid-template-columns: 1fr 1fr; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contacto__grid      { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__links, .nav__actions .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__inner  { height: 68px; }

  /* Hero mobile */
  .hero { min-height: 560px; }
  .hero__content { padding: 64px 16px 48px; }
  .hero__title   { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .hero__sub     { font-size: 0.95rem; padding: 0 4px; }

  /* Buscador mobile */
  .buscador { border-radius: var(--radius); }
  .buscador__tab   { font-size: 0.78rem; padding: 12px 6px; }
  .buscador__form  { flex-direction: column; gap: 0; padding: 16px; }
  .buscador__field {
    width: 100%; border-right: none; border-bottom: none;
    padding: 12px 14px; background: var(--gray-50);
    border-radius: var(--radius-sm); margin-bottom: 10px;
    border: 1px solid var(--gray-100);
  }
  .buscador__field:last-of-type { margin-bottom: 0; }
  .buscador__btn {
    width: 100%; justify-content: center;
    margin-left: 0; margin-top: 14px; padding: 15px; font-size: 1rem;
  }

  .section { padding: 56px 0; }
  .section__header  { flex-direction: column; align-items: flex-start; gap: 14px; }
  .destacados__grid { grid-template-columns: 1fr; }
  .destacados__grid > :last-child { grid-column: auto; }
  .paquetes__grid   { grid-template-columns: 1fr; }
  .salida-card      { flex-direction: column; }
  .salida-card__img { width: 100%; height: 200px; border-radius: 12px 12px 0 0; align-self: auto; }
  .circuitos__grid  { grid-template-columns: 1fr; }
  .porque__grid     { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .form-row  { grid-template-columns: 1fr; }
  .contacto__form { padding: 24px 20px; }
  .toast     { left: 16px; right: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  .porque__grid { grid-template-columns: 1fr; }
  .nav__inner   { height: 60px; }
}

/* ===== ITINERARIO DÍA A DÍA EN DROPDOWN DE SALIDAS ===== */
.itin-fecha-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #94a3b8;
  padding: 10px 16px 4px; display: block;
}
.itin-tabs-wrap { padding: 0 16px 10px; }
.itin-dias {
  padding: 10px 16px 14px;
  max-height: 380px;
  overflow-y: auto;
  border-top: 1px solid #e2e8f0;
  scroll-behavior: smooth;
}
.itin-dias::-webkit-scrollbar { width: 4px; }
.itin-dias::-webkit-scrollbar-track { background: #f1f5f9; }
.itin-dias::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.itin-dia-row {
  display: flex; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid #f1f5f9;
}
.itin-dia-row:last-child { border-bottom: none; }
.itin-dia-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #1B2E4B; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; margin-top: 2px;
}
.itin-dia-content { flex: 1; min-width: 0; }
.itin-dia-fecha {
  font-size: 0.67rem; color: #94a3b8; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 1px;
}
.itin-dia-titulo {
  font-size: 0.8rem; font-weight: 700; color: #1B2E4B; line-height: 1.3;
}
.itin-dia-desc {
  font-size: 0.74rem; color: #4f6070; line-height: 1.45; margin-top: 3px;
}
.itin-dia-opc {
  font-size: 0.71rem; color: #3B82F6; margin-top: 4px;
  padding-left: 8px; border-left: 2px solid #bfdbfe; line-height: 1.4;
}
.itin-pronto {
  font-size: 0.8rem; color: #94a3b8; text-align: center;
  padding: 24px 0; font-style: italic;
}

/* ===== CARD IMP DISPLAY ===== */
.pkg-card__imp {
  font-size: 0.71rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ===== COTIZACION FORM NEW SELECT ===== */
.cotizacion__form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #f8fafc;
  color: #1e293b;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2E4B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.cotizacion__form-select:focus {
  border-color: #1B2E4B;
  background-color: #fff;
  outline: none;
}
