/* ── Travel Spot — Hoja de estilos compartida ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', system-ui, sans-serif; background: #fff; color: #111827; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

:root {
  --azul: #144084;
  --azul-dark: #0f3370;
  --azul-deep: #0b255a;
  --naranja: #f39223;
  --gris-claro: #f8f7f4;
  --gris-borde: #e5e7eb;
  --texto: #111827;
  --texto-suave: #6b7280;
  --verde-wa: #25D366;
  --nav-height: 86px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
html { scroll-padding-top: calc(var(--nav-height) + 18px); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--gris-borde);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  height: var(--nav-height);
}
.nav-inner > a:first-child { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 58px; width: auto; display: block; }
.nav-links { margin-left: auto; }
.nav-social { display: flex; align-items: center; gap: 6px; margin-left: 28px; margin-right: 10px; }
.nav-social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--azul); background: rgba(20,64,132,0.06);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.nav-social-icon:hover { background: var(--azul); color: #fff; transform: translateY(-1px); }
@media (max-width: 1100px) { .nav-social { display: none; } }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > .nav-item { position: relative; }
.nav-links a, .nav-links .nav-toggle {
  font-size: 0.9rem; font-weight: 500; color: #374151;
  text-decoration: none; transition: color 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links .nav-toggle:hover { color: var(--azul); }
.nav-links a.active { color: var(--azul); font-weight: 600; }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--gris-borde); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  min-width: 200px; padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  z-index: 250;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  padding: 9px 14px; border-radius: 8px; font-size: 0.88rem;
  color: #374151; text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--gris-claro); color: var(--azul); }
.nav-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--azul); color: #fff;
  font-weight: 600; font-size: 0.875rem;
  padding: 9px 18px; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-wa:hover { background: var(--azul-dark); transform: translateY(-1px); color: #fff; }
#mob-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
#mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gris-borde); }
#mobile-menu.open { display: block; }
.mob-links { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.mob-links > a, .mob-section > strong {
  font-size: 1rem; font-weight: 500; color: #374151; text-decoration: none;
}
.mob-section strong { display: block; margin: 8px 0 4px; font-size: 0.78rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.mob-section a { display: block; padding: 6px 0 6px 12px; font-size: 0.95rem; color: #374151; text-decoration: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70dvh;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--nav-height); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-position: center 30%; background-size: cover; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: rgba(8,26,66,0.55); }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 24px;
  max-width: 760px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 30px;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--naranja); }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HERO SUBPAGE (más bajo) ── */
.hero-sub { min-height: 56dvh; }
.hero-sub h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azul); color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 9px;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(20,64,132,0.4);
}
.btn-primary:hover { background: var(--azul-dark); transform: translateY(-2px); color: #fff; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(255,255,255,0.45);
  font-weight: 600; font-size: 0.95rem;
  padding: 12px 28px; border-radius: 9px;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); color: #fff; }
.btn-wa-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde-wa); color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 9px;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa-solid:hover { background: #20b858; transform: translateY(-2px); color: #fff; }
.btn-wa-solid::before,
.btn-primary[href*="wa.me"]::before,
.exp-link[href*="wa.me"]::before,
.form-submit-wa::before {
  content: '';
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.136.559 4.14 1.535 5.877L.057 23.4l5.686-1.492A11.943 11.943 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.818a9.806 9.806 0 01-5.031-1.389l-.36-.214-3.736.979 1.001-3.638-.234-.374A9.773 9.773 0 012.182 12C2.182 6.57 6.57 2.182 12 2.182S21.818 6.57 21.818 12 17.43 21.818 12 21.818z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.136.559 4.14 1.535 5.877L.057 23.4l5.686-1.492A11.943 11.943 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.818a9.806 9.806 0 01-5.031-1.389l-.36-.214-3.736.979 1.001-3.638-.234-.374A9.773 9.773 0 012.182 12C2.182 6.57 6.57 2.182 12 2.182S21.818 6.57 21.818 12 17.43 21.818 12 21.818z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--gris-claro);
  border-bottom: 1px solid var(--gris-borde);
  padding-top: var(--nav-height);
}
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  font-size: 0.85rem; color: var(--texto-suave);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--texto-suave); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--azul); }
.breadcrumb .sep { color: #cbd5e1; }
.breadcrumb .current { color: var(--azul); font-weight: 600; }

/* ── SECCIONES ── */
.section { padding: 90px 0; }
.section-alt { padding: 90px 0; background: #eef4ff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; color: var(--azul);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px; display: block;
}
.section-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--texto);
  line-height: 1.1; margin-bottom: 14px;
}
.section-h2 span { color: var(--azul); }
.section-sub {
  font-size: 1rem; color: var(--texto-suave); line-height: 1.75;
  max-width: 60ch;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── NOSOTROS / SPLIT ── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.split-img img { width: 100%; height: 440px; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--gris-borde);
  font-size: 0.93rem; color: var(--texto); font-weight: 500;
}
.check-item:last-child { border-bottom: none; }
.check-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(20,64,132,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── DESTINOS GRID ── */
.destinos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dest-card {
  border-radius: 14px; overflow: hidden; position: relative;
  display: block; text-decoration: none; cursor: pointer;
}
.dest-card img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,26,66,0.85) 0%, rgba(8,26,66,0.2) 60%, transparent 100%);
}
.dest-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 18px;
  color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em;
}
.dest-ver {
  display: inline-block; margin-top: 5px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8);
}

/* ── EXPERIENCIAS / CARDS ── */
.promos-home-section {
  background: #fff;
  padding: 92px 0;
  border-top: 2px solid rgba(20,64,132,0.12);
  border-bottom: 2px solid rgba(20,64,132,0.12);
}
.promos-home-section .section-tag,
.promos-home-section .section-h2,
.promos-home-section .section-h2 span,
.promo-home-title {
  color: var(--azul);
}
.home-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.home-promo-card {
  display: block;
  width: 100%;
  font-family: inherit;
  text-align: left;
  cursor: zoom-in;
  background: #fff;
  border: 1px solid rgba(20,64,132,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20,64,132,0.10);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.home-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20,64,132,0.16);
}
.home-promo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f8fafc;
}
.home-promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: var(--azul);
  font-size: 0.86rem;
  font-weight: 700;
}
.home-promo-foot span:last-child {
  color: var(--naranja);
  white-space: nowrap;
}
.home-promos-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.home-promos-empty {
  grid-column: 1 / -1;
  padding: 32px 24px;
  text-align: center;
  color: var(--azul);
  font-weight: 700;
  background: #eef4ff;
  border: 1px solid rgba(20,64,132,0.14);
  border-radius: 14px;
}

.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gris-borde);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.exp-card img { width: 100%; height: 200px; object-fit: cover; }
.exp-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.exp-tag {
  font-size: 0.68rem; font-weight: 700; color: var(--azul);
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(20,64,132,0.08);
  padding: 3px 10px; border-radius: 20px;
  align-self: flex-start; margin-bottom: 12px;
}
.exp-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--texto); margin-bottom: 10px; line-height: 1.3; }
.exp-body p { font-size: 0.875rem; color: var(--texto-suave); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.exp-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; color: var(--azul);
  text-decoration: none; transition: gap 0.2s; align-self: flex-start;
}
.exp-link:hover { gap: 10px; }

/* ── PAGO ── */
.pago-section { background: #eef4ff; padding: 90px 0; color: var(--texto); }
.pago-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,64,132,0.08);
  border: 1px solid rgba(20,64,132,0.15);
  color: var(--azul); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 18px;
}
.pago-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--texto);
  margin-bottom: 14px; line-height: 1.1;
}
.pago-sub { font-size: 1rem; color: var(--texto-suave); line-height: 1.7; max-width: 56ch; margin: 0 auto 52px; }
.pago-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.pago-card {
  background: #fff;
  border: 1px solid rgba(20,64,132,0.08);
  border-radius: 14px; padding: 32px 28px; text-align: center;
  box-shadow: 0 2px 10px rgba(20,64,132,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pago-card:hover { box-shadow: 0 8px 24px rgba(20,64,132,0.1); transform: translateY(-2px); }
.pago-icon {
  width: 52px; height: 52px; background: var(--azul);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.pago-card h3 { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 10px; }
.pago-card p { font-size: 0.875rem; color: var(--texto-suave); line-height: 1.7; }
.pago-banner {
  background: #fff;
  border: 1px solid rgba(20,64,132,0.08);
  border-radius: 14px; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(20,64,132,0.04);
}
.pago-banner-left { display: flex; align-items: center; gap: 16px; }
.pago-banner-icon {
  width: 44px; height: 44px; background: var(--azul);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pago-banner h4 { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 3px; }
.pago-banner p { font-size: 0.85rem; color: var(--texto-suave); }
.pago-banner-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--azul);
  text-decoration: none; white-space: nowrap;
  border-bottom: 1.5px solid rgba(20,64,132,0.3);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.pago-banner-link:hover { border-color: var(--azul); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gris-borde); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 16px;
  font-family: inherit;
}
.faq-btn span { font-size: 0.97rem; font-weight: 600; color: var(--texto); line-height: 1.4; }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--azul); }
.faq-body { display: none; padding-bottom: 20px; }
.faq-body p { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.8; }
.faq-cta {
  margin-top: 48px; background: var(--gris-claro);
  border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.faq-cta p { font-size: 0.93rem; color: var(--texto-suave); }
.faq-cta strong { font-size: 1rem; color: var(--texto); display: block; margin-bottom: 4px; }

/* ── CONTACTO ── */
.contacto-section {
  background:
    linear-gradient(135deg, rgba(20,64,132,0.08) 0%, rgba(243,146,35,0.06) 46%, rgba(255,255,255,0.4) 100%),
    #f6f9fc;
  padding: 96px 0;
  color: var(--texto);
}
.contacto-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 48px; align-items: center; }
.contacto-social-icons { display: flex; gap: 8px; margin-top: 10px; }
.contacto-social-icons .social-icon {
  width: 34px; height: 34px;
  background: rgba(20,64,132,0.08); color: var(--azul);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.contacto-social-icons .social-icon:hover { background: var(--naranja); color: #fff; transform: translateY(-2px); }
.contacto-tag { font-size: 0.75rem; font-weight: 700; color: var(--naranja); text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 12px; }
.contacto-h2 { font-size: clamp(2.1rem,4vw,3rem); font-weight: 800; letter-spacing: -0.04em; color: var(--texto); margin-bottom: 22px; line-height: 1.08; }
.contacto-h2 span { color: var(--naranja); }
.contacto-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contacto-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--texto-suave); }
.contacto-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 36px;
}
.contacto-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.email-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; margin-top: 14px;
}
.email-box a { color: #fff; font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.divider span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── CONTENIDO TIPO ARTÍCULO (info, condiciones, formas-de-pago) ── */
.article { padding: 80px 0; }
.article-content { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article-content h2 {
  font-size: 1.6rem; font-weight: 800; color: var(--texto);
  letter-spacing: -0.03em; margin: 44px 0 16px; line-height: 1.2;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--azul);
  margin: 28px 0 10px;
}
.article-content p {
  font-size: 0.97rem; color: #374151; line-height: 1.85;
  margin-bottom: 14px;
}
.article-content ul, .article-content ol { margin: 10px 0 18px 22px; }
.article-content li { font-size: 0.97rem; color: #374151; line-height: 1.85; margin-bottom: 6px; }
.article-content strong { color: var(--texto); font-weight: 700; }
.article-content a { color: var(--azul); text-decoration: underline; text-decoration-color: rgba(20,64,132,0.3); transition: text-decoration-color 0.2s; }
.article-content a:hover { text-decoration-color: var(--azul); }
.callout {
  background: var(--gris-claro);
  border-left: 4px solid var(--naranja);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p { margin-bottom: 0; }

/* ── BANNER WA INLINE ── */
.cta-wa-banner {
  background: linear-gradient(120deg, var(--azul) 0%, var(--azul-deep) 100%);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; color: #fff;
  margin: 40px 0;
}
.cta-wa-banner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.cta-wa-banner p { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.5; }
.article-content .cta-wa-banner h3 { color: #fff; margin-top: 0; }
.article-content .cta-wa-banner p { color: rgba(255,255,255,0.85); }

/* ── FOOTER ── */
footer { background: #0c1936; padding: 34px 0 18px; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 24px; align-items: start; }
.footer-logo { height: 114px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.32);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px; display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 6px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 56px; height: 56px; background: var(--verde-wa);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.25s; animation: wa-pulse 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes wa-pulse {
  0%, 80%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  40% { box-shadow: 0 0 0 12px rgba(37,211,102,0.08), 0 6px 24px rgba(37,211,102,0.5); }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.40s; } .d6 { transition-delay: 0.48s; }

/* ── DESTINO LAYOUT (con sidebar) ── */
.dest-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.dest-sidebar {
  position: sticky; top: 90px;
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dest-sidebar h3 { font-size: 1.15rem; font-weight: 800; color: var(--texto); margin-bottom: 18px; letter-spacing: -0.02em; }
.dest-sidebar-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.dest-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #374151; padding: 4px 0;
}
.dest-sidebar-item svg { flex-shrink: 0; color: var(--azul); }
.dest-sidebar .btn-wa-solid { width: 100%; justify-content: center; padding: 12px 20px; }
.dest-sidebar-bullets { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dest-sidebar-bullets li {
  font-size: 0.88rem; color: #374151; line-height: 1.6;
  padding-left: 22px; position: relative;
}
.dest-sidebar-bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--naranja);
}
.dest-sidebar h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--azul);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 22px 0 10px;
}

/* ── PAGO CATEGORIZADO (formas-de-pago.html) ── */
.pago-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pago-cat-card {
  border: 1px solid var(--gris-borde);
  border-radius: 14px; overflow: hidden;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pago-cat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pago-cat-head {
  padding: 16px 22px; color: #fff;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.pago-cat-body { padding: 22px 24px; }
.pago-cat-body ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pago-cat-body li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: #374151; line-height: 1.65;
}
.pago-cat-body li svg { flex-shrink: 0; margin-top: 4px; color: var(--azul); }
.pago-warn {
  background: #fef9e7; border: 1px solid #fde68a; border-radius: 12px;
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  margin-top: 30px;
}
.pago-warn-icon { flex-shrink: 0; color: #92400e; margin-top: 2px; }
.pago-warn strong { color: #92400e; display: block; margin-bottom: 4px; font-size: 0.95rem; }
.pago-warn p { color: #92400e; opacity: 0.85; font-size: 0.88rem; line-height: 1.65; margin: 0; }
.pago-final-cta {
  background: var(--gris-claro); border-radius: 16px;
  padding: 44px 28px; text-align: center; margin-top: 34px;
  border: 1px solid var(--gris-borde);
}
.pago-final-cta h3 { font-size: 1.4rem; font-weight: 800; color: var(--texto); margin-bottom: 10px; letter-spacing: -0.02em; }
.pago-final-cta p { font-size: 0.95rem; color: var(--texto-suave); line-height: 1.7; max-width: 52ch; margin: 0 auto 22px; }
.pago-final-cta .pago-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── TRUST STRIP (debajo del hero) ── */
.trust-strip { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 28px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(20,64,132,0.08); color: var(--azul);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.trust-text strong { font-size: 0.92rem; font-weight: 700; color: var(--texto); letter-spacing: -0.01em; }
.trust-text span { font-size: 0.78rem; color: var(--texto-suave); margin-top: 2px; }
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── CONTACTO INFO CARDS (Tel + Horario) ── */
.contacto-info {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
  margin-top: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(20,64,132,0.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(20,64,132,0.12);
}
.contacto-info::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--naranja), var(--azul));
}
.contacto-info-card {
  position: relative;
  padding: 22px 24px 22px 30px;
  display: flex; align-items: center; gap: 16px;
}
.contacto-info-card + .contacto-info-card { border-top: 1px solid rgba(20,64,132,0.1); }
.contacto-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(20,64,132,0.08);
  border: 1px solid rgba(20,64,132,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--azul);
}
.contacto-info-card:nth-child(2) .contacto-info-icon { color: var(--naranja); background: rgba(243,146,35,0.12); border-color: rgba(243,146,35,0.18); }
.contacto-info-card:nth-child(3) .contacto-info-icon { background: rgba(20,64,132,0.1); }
.contacto-info-card .ci-label {
  font-size: 0.72rem; color: var(--texto-suave);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 5px; font-weight: 700;
}
.contacto-info-card .ci-value { font-size: 1rem; color: var(--texto); font-weight: 800; }
.contacto-info-card .ci-value a { color: var(--texto); text-decoration: none; }
.contacto-info-card .ci-value a:hover { color: var(--azul); }

/* ── FORMULARIO DENTRO DEL CONTACTO ── */
.contacto-form-wrap { max-width: 820px; margin: 0 auto; }
.contacto-form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(20,64,132,0.08);
  border-radius: 18px; padding: 36px;
  box-shadow: 0 18px 55px rgba(20,64,132,0.16);
}
.contacto-form-card h3 {
  font-size: 1.35rem; font-weight: 800; color: var(--texto);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.contacto-form-sub { font-size: 0.92rem; color: var(--texto-suave); margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--texto); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gris-borde);
  border-radius: 10px; font-family: inherit; font-size: 0.92rem;
  outline: none; transition: border-color 0.15s; background: #fff; color: var(--texto);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--azul); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--azul); color: #fff; font-family: inherit;
  font-weight: 700; font-size: 0.95rem;
  padding: 13px 30px; border: none; border-radius: 10px;
  cursor: pointer; box-shadow: 0 4px 16px rgba(20,64,132,0.3);
  transition: background 0.2s, transform 0.2s;
  margin-top: 10px;
}
.form-submit:hover { background: var(--azul-dark); transform: translateY(-1px); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

/* Contacto: layout de tarjetas + formulario */
.contacto-section {
  background: #fff;
  padding: 78px 0;
}
.contacto-section .section-tag { color: var(--azul); }
.contacto-section .section-h2 { color: var(--azul); }
.contacto-section .section-sub { color: var(--texto-suave); }
.contacto-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 2.05fr);
  gap: 28px;
  align-items: stretch;
}
.contacto-section .section-header {
  margin-bottom: 34px;
}
.contacto-section .section-h2 span {
  color: var(--naranja);
}
.contacto-section .section-sub {
  margin: 0 auto;
}
.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.contacto-info::before { display: none; }
.contacto-info-card {
  flex: 1;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(20,64,132,0.14);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(20,64,132,0.10);
  display: flex;
  align-items: center;
  gap: 14px;
}
.contacto-info-card + .contacto-info-card { border-top: 1px solid rgba(20,64,132,0.14); }
.contacto-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(20,64,132,0.10);
  border: 0;
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacto-info-card:nth-child(2) .contacto-info-icon {
  color: var(--naranja);
  background: rgba(243,146,35,0.14);
  border: 0;
}
.contacto-info-card:nth-child(3) .contacto-info-icon {
  background: rgba(20,64,132,0.10);
}
.contacto-info-card .ci-label {
  font-size: 0.82rem;
  color: var(--texto-suave);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
  font-weight: 500;
}
.contacto-info-card .ci-value {
  font-size: 0.95rem;
  color: var(--texto);
  font-weight: 700;
  line-height: 1.35;
}
.contacto-social-icons {
  margin-top: 8px;
}
.contacto-social-icons .social-icon {
  background: rgba(20,64,132,0.08);
  color: var(--azul);
}
.contacto-social-icons .social-icon:hover {
  background: var(--azul);
  color: #fff;
}
.contacto-form-card {
  min-height: 0;
  padding: 22px 22px;
  background: #fff;
  border: 1px solid rgba(20,64,132,0.14);
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(20,64,132,0.10);
}
.contacto-form-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.contacto-form-sub {
  margin-bottom: 16px;
}
.form-row {
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 0.84rem;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  border: 1px solid #dedbd2;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15,51,112,0.04) inset;
}
.form-group textarea {
  min-height: 56px;
  height: 70px;
  resize: vertical;
}
.form-submit {
  margin-top: 0;
  background: var(--azul);
  box-shadow: none;
  border-radius: 9px;
  padding: 11px 18px;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-submit-wa {
  background: var(--verde-wa);
}
.form-submit-wa:hover {
  background: #1fb456;
}

.section-testimonios { background: #eef4ff; padding-bottom: 48px; }

/* ── TESTIMONIOS ── */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonio-card {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(20,64,132,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,64,132,0.13); }
.testimonio-stars { color: #f39223; font-size: 1rem; letter-spacing: 2px; }
.testimonio-texto {
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonio-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonio-nombre { font-weight: 700; font-size: 0.92rem; color: var(--texto); }
.testimonio-destino { font-size: 0.8rem; color: var(--naranja); font-weight: 600; margin-top: 2px; }
@media (max-width: 860px) { .testimonios-grid { grid-template-columns: 1fr; } }

/* ── PROMOS GRID ── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.promos-months {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.promos-month {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding: 58px max(24px, calc((100vw - 1200px) / 2)) 66px;
  border-top: 2px solid rgba(20,64,132,0.16);
}
.promos-month:nth-child(odd) {
  background: #fff;
}
.promos-month:nth-child(even) {
  background: #eef4ff;
}
.promos-month:first-child {
  border-top: 0;
}
.promos-month-head {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 auto 34px;
  max-width: 1200px;
  text-align: center;
}
.promos-month-head::before,
.promos-month-head::after {
  content: '';
  height: 1px;
  background: rgba(20,64,132,0.34);
}
.promos-month-head h2 {
  color: var(--azul);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  text-align: center;
}
.promo-card {
  border-radius: 16px; overflow: hidden;
  background: #fff; border: 1px solid var(--gris-borde);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.promo-img-wrap {
  cursor: zoom-in; display: block; overflow: hidden;
  background: #f1f3f6;
  aspect-ratio: 3 / 4;
  position: relative;
}
.promo-img-wrap img {
  width: 100%; height: 100%; display: block;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.promo-img-wrap:hover img { transform: scale(1.03); }
.promo-img-wrap::after {
  content: '🔍'; position: absolute; bottom: 10px; right: 10px;
  background: rgba(20,64,132,0.85); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; opacity: 0; transition: opacity 0.25s;
}
.promo-img-wrap:hover::after { opacity: 1; }
.promo-foot {
  padding: 18px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; background: #fff;
}
.promo-date { font-size: 0.78rem; color: var(--azul); font-weight: 600; }
.promo-foot .btn-wa-solid { padding: 9px 16px; font-size: 0.85rem; }
.promos-empty {
  text-align: center; padding: 60px 24px; max-width: 520px;
  margin: 0 auto; color: var(--texto-suave);
  background: var(--gris-claro); border-radius: 16px;
}
.promos-empty h3 { color: var(--texto); margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }

/* Lightbox */
#lightbox,
.home-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,15,38,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
  backdrop-filter: blur(4px);
}
#lightbox.open,
.home-lightbox.open { display: flex; }
#lightbox img,
.home-lightbox img {
  max-width: 95vw; max-height: 92vh;
  border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#lightbox .lb-close,
.home-lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; line-height: 1;
}
#lightbox .lb-close:hover,
.home-lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --nav-height: 66px; }
  .nav-inner { padding: 0 18px; }
  .nav-logo { height: 44px; }
  .nav-links, .nav-wa { display: none; }
  #mob-btn { display: block; }
  .split-grid, .contacto-grid { grid-template-columns: 1fr; gap: 32px; }
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
  .home-promos-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .pago-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-img img { height: 320px; }
  .dest-layout { grid-template-columns: 1fr; }
  .dest-sidebar { position: static; }
  .pago-cat-grid { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .promos-grid { grid-template-columns: 1fr; }
  .home-promos-grid { grid-template-columns: 1fr; }
  .promos-home-section { padding: 64px 0; }
  .destinos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section, .section-alt, .pago-section, .contacto-section { padding: 64px 0; }
  .article { padding: 56px 0; }
  .cta-wa-banner { padding: 28px 24px; }
}
