/* ============================================================
   DP Travels — Conversión estática (HTML + CSS + JS puro)
   Paleta, tipografía y formas tomadas del proyecto original
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --navy-50: #eef4fb;
  --navy-100: #d7e5f5;
  --navy-200: #b0c9e8;
  --navy-300: #7ba3d4;
  --navy-400: #4b78b6;
  --navy-500: #2b5691;
  --navy-600: #1b3f73;
  --navy-700: #123a6b;
  --navy-800: #0b2545;
  --navy-900: #071930;
  --navy-950: #04101f;

  --sky-brand: #12b5f0;
  --cyan-brand: #22d3ee;
  --gold-brand: #c9a227;

  --whatsapp: #25d366;
  --facebook: #1877f2;

  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;

  --radius-lg: 28px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: #f7f9fc;
  color: var(--navy-800);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

/* ===================== Fondo mesh + glass ===================== */

.mesh {
  background-image:
    radial-gradient(at 12% 18%, rgba(18, 181, 240, 0.35) 0px, transparent 55%),
    radial-gradient(at 88% 8%, rgba(34, 211, 238, 0.28) 0px, transparent 50%),
    radial-gradient(at 72% 88%, rgba(11, 37, 69, 0.9) 0px, transparent 60%),
    radial-gradient(at 8% 92%, rgba(18, 58, 107, 0.7) 0px, transparent 55%);
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============================ Animaciones ======================= */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shine {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================== Navbar =========================== */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(7, 25, 48, 0.06);
  backdrop-filter: blur(20px);
}
.navbar .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .navbar .nav-row { padding: 0 1.5rem; } }

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo svg { height: 2.75rem; width: 2.75rem; flex-shrink: 0; }
.logo .logo-text-a { font-size: 22px; font-weight: 800; line-height: 1; color: var(--navy-800); }
.logo .logo-text-b { font-size: 10px; font-weight: 600; letter-spacing: 0.35em; color: var(--navy-500); }
.navbar:not(.scrolled) .logo .logo-text-a { color: #fff; }
.navbar:not(.scrolled) .logo .logo-text-b { color: var(--sky-brand); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.2s;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.navbar.scrolled .nav-links a { color: var(--navy-700); }
.navbar.scrolled .nav-links a:hover { background: var(--navy-50); color: var(--navy-900); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.btn-whatsapp-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s;
}
.btn-whatsapp-pill:hover { transform: scale(1.05); }
@media (min-width: 640px) { .btn-whatsapp-pill { display: inline-flex; } }

.menu-toggle {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.15rem;
}
.navbar.scrolled .menu-toggle { background: var(--navy-50); color: var(--navy-800); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  margin: 0.75rem 1rem 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--navy-100);
  background: #fff;
  padding: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--navy-800);
}
.mobile-menu a:hover { background: var(--navy-50); }
.mobile-menu svg { color: var(--sky-brand); transform: rotate(90deg); height: 1rem; width: 1rem; }

/* =============================== Hero ============================ */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-900);
  padding: 8rem 0 5rem;
}
@media (min-width: 640px) { .hero { padding: 10rem 0 7rem; } }

.hero .mesh { position: absolute; inset: 0; z-index: -2; opacity: 0.9; }
.hero-img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.25; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(4,16,31,0.8), rgba(7,25,48,0.6), var(--navy-950));
}

.hero-plane {
  position: absolute;
  color: rgba(18, 181, 240, 0.3);
  animation: float 6s ease-in-out infinite;
  display: none;
}
@media (min-width: 768px) { .hero-plane { display: block; } }
.hero-plane.p1 { right: 8%; top: 7rem; height: 2.5rem; width: 2.5rem; transform: rotate(45deg); }
.hero-plane.p2 { left: 6%; bottom: 6rem; height: 1.75rem; width: 1.75rem; color: rgba(34,211,238,0.25); transform: rotate(90deg); }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-brand);
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 1.5rem 0 0;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero h1 .shine {
  background: linear-gradient(90deg, var(--sky-brand), var(--cyan-brand), var(--sky-brand));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 4s linear infinite;
}

.hero p.lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) { .hero p.lead { font-size: 1.125rem; } }

.hero-ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--sky-brand);
  color: var(--navy-950);
  box-shadow: 0 20px 40px rgba(18,181,240,0.3);
}
.btn-primary:hover { transform: scale(1.03); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 32rem;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats dt { font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stats dd {
  margin: 0.15rem 0 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; }
.hero-card-head p { font-size: 0.875rem; font-weight: 700; color: #fff; margin: 0; }
.live-badge {
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.15);
  padding: 0.25rem 0.6rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #86efac;
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  padding: 0.75rem;
  margin-top: 0.65rem;
  transition: background 0.2s;
}
.hero-route:hover { background: rgba(255,255,255,0.15); }
.hero-route .flag {
  display: grid; place-items: center;
  height: 2.5rem; width: 2.5rem; flex-shrink: 0;
  border-radius: 0.75rem; background: rgba(255,255,255,0.1);
  font-size: 1.25rem;
}
.hero-route .route-info { min-width: 0; flex: 1; }
.hero-route .route-name { display: block; font-size: 0.875rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-route .route-airline { display: block; font-size: 11px; color: rgba(255,255,255,0.55); }
.hero-route .route-price { text-align: right; }
.hero-route .price { display: block; font-size: 0.875rem; font-weight: 800; color: var(--sky-brand); }
.hero-route .dates-count { display: block; font-size: 10px; color: rgba(255,255,255,0.5); }

.hero-card-foot { margin-top: 1rem; text-align: center; font-size: 11px; color: rgba(255,255,255,0.45); }

.marquee-wrap {
  margin-top: 4rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
}
.marquee-track .dest {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.marquee-track .dest .dot { color: var(--sky-brand); }

/* ======================== Sección genérica ======================= */

section { position: relative; }
.section-pad { padding: 5rem 0; }
@media (min-width: 640px) { .section-pad { padding: 7rem 0; } }
.bg-white { background: #fff; }
.bg-tint { background: rgba(238,244,251,0.6); }
.bg-navy { background: var(--navy-900); overflow: hidden; }

.section-title { max-width: 42rem; margin: 0 auto; text-align: center; }
.section-title h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
@media (min-width: 640px) { .section-title h2 { font-size: 2.25rem; } }
.section-title.light h2 { color: #fff; }
.section-title p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--slate-500);
}
.section-title.light p { color: rgba(255,255,255,0.7); }

/* =========================== Acerca de =========================== */

.about-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }

.about-card {
  height: 100%;
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.about-card .icon {
  display: grid; place-items: center;
  height: 3rem; width: 3rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.15);
}
.about-card h3 { margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 800; }
.about-card p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }

.about-card.mission { background: linear-gradient(to bottom right, var(--navy-800), var(--navy-600)); color: #fff; box-shadow: 0 25px 50px rgba(11,37,69,0.2); }
.about-card.mission p { color: rgba(255,255,255,0.75); }

.about-card.vision { background: linear-gradient(to bottom right, var(--sky-brand), var(--cyan-brand)); color: var(--navy-950); box-shadow: 0 25px 50px rgba(18,181,240,0.25); }
.about-card.vision .icon { background: rgba(255,255,255,0.3); }
.about-card.vision p { color: rgba(7,25,48,0.8); }

.about-card.values { border: 1px solid var(--navy-100); background: rgba(238,244,251,0.5); color: var(--navy-800); }
.about-card.values .icon { background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
.about-card.values ul { list-style: none; margin: 0.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.about-card.values li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--slate-600); }
.about-card.values li svg { margin-top: 2px; flex-shrink: 0; height: 1rem; width: 1rem; }

.destinations-box {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  border: 1px dashed var(--navy-200);
  background: rgba(238,244,251,0.4);
  padding: 1.5rem;
  text-align: center;
}
.destinations-box .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy-500); margin: 0; }
.destinations-box .chips { margin-top: 0.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.chip {
  border-radius: 999px;
  background: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid var(--navy-100);
}

.people-grid {
  margin: 3rem auto 0;
  display: grid;
  gap: 2rem;
  max-width: 60rem;
}
@media (min-width: 640px) { .people-grid.managers { grid-template-columns: repeat(2, 1fr); } }
.agents-wrap { margin: 3rem auto 0; max-width: 64rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.agents-wrap .person-card { width: 100%; }
@media (min-width: 640px) { .agents-wrap .person-card { width: 330px; } }

.person-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--navy-100);
  background: #fff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(7,25,48,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.person-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(7,25,48,0.15); }
.person-card .banner { position: absolute; inset: 0 0 auto 0; height: 7rem; background: linear-gradient(to bottom right, var(--navy-800), var(--sky-brand)); }
.person-card .content { position: relative; }
.person-card h3 { margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 800; color: var(--navy-800); display: flex; align-items: center; justify-content: center; gap: 0.4rem;}
.person-card .role { margin: 0.25rem 0 0; font-size: 0.875rem; font-weight: 700; color: var(--sky-brand); }
.person-card .bio { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--slate-500); }
.person-card .languages { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-400); }

.verified-pill {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(29,155,240,0.1);
  padding: 0.25rem 0.65rem;
  font-size: 11px;
  font-weight: 700;
  color: #1d9bf0;
}
.stars { display: flex; align-items: center; justify-content: center; gap: 2px; margin-top: 0.6rem; }
.stars .val { margin-left: 0.4rem; font-size: 0.75rem; font-weight: 700; color: var(--navy-700); }
.stars svg { height: 1rem; width: 1rem; }

.avatar {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.avatar .circle {
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--navy-700), var(--sky-brand));
  box-shadow: 0 20px 40px rgba(11,37,69,0.2);
  border: 4px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.avatar.lg .circle { height: 9rem; width: 9rem; font-size: 2.25rem; }
.avatar .circle img { height: 100%; width: 100%; object-fit: cover; }
.avatar .badge {
  position: absolute; right: 0.25rem; bottom: 0.5rem;
  display: grid; place-items: center;
  border-radius: 999px; background: #fff; padding: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.avatar .badge svg { height: 2rem; width: 2rem; }

.contact-row { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.6rem 1rem;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.contact-btn:hover { transform: scale(1.05); }
.contact-btn.wa { background: var(--whatsapp); }
.contact-btn.fb { background: var(--facebook); }
.contact-btn.tel { background: var(--navy-800); }
.contact-btn svg { height: 1rem; width: 1rem; }

/* ============================ Aliadas ============================= */

.partners-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }

.partner-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}
.partner-card:hover { transform: translateY(-6px); border-color: rgba(18,181,240,0.4); }
.partner-card .head { display: flex; align-items: flex-start; gap: 1rem; }
.partner-logo {
  position: relative; flex-shrink: 0;
}
.partner-logo .box {
  display: grid; place-items: center;
  overflow: hidden;
  height: 4rem; width: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.95), var(--navy-100));
  font-size: 1.125rem; font-weight: 800; color: var(--navy-800);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.partner-logo .badge { position: absolute; right: -6px; bottom: -6px; display: grid; place-items: center; background: #fff; border-radius: 999px; padding: 2px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.partner-logo .badge svg { height: 1.25rem; width: 1.25rem; }
.partner-card h3 { margin: 0; font-size: 1.125rem; font-weight: 800; color: #fff; }
.partner-card .specialty { margin: 0; font-size: 0.75rem; font-weight: 700; color: var(--sky-brand); }
.partner-rating { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.partner-rating .star-row span { color: rgba(255,255,255,0.2); }
.partner-rating .star-row span.filled { color: #fbbf24; }
.partner-rating .num { font-size: 0.75rem; font-weight: 700; color: #fff; }
.partner-rating .count { font-size: 11px; color: rgba(255,255,255,0.45); }
.partner-card .desc { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.partner-card .foot {
  margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem;
}
.partner-card .since { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }
.partner-card .socials { display: flex; gap: 0.5rem; }
.social-circle {
  display: grid; place-items: center;
  height: 2.25rem; width: 2.25rem;
  border-radius: 999px; color: #fff;
  transition: transform 0.2s;
}
.social-circle:hover { transform: scale(1.1); }
.social-circle.wa { background: var(--whatsapp); }
.social-circle.fb { background: var(--facebook); }
.social-circle svg { height: 1rem; width: 1rem; }

.partner-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 220px; height: 100%;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255,255,255,0.15);
  padding: 1.75rem; text-align: center;
}
.partner-cta .emoji { font-size: 1.875rem; }
.partner-cta p.title { margin: 0.75rem 0 0; font-size: 0.875rem; font-weight: 700; color: #fff; }
.partner-cta p.sub { margin-top: 0.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.partner-cta a {
  margin-top: 1rem; border-radius: 999px; background: rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem; font-size: 0.75rem; font-weight: 700; color: #fff;
  transition: background 0.2s;
}
.partner-cta a:hover { background: rgba(255,255,255,0.2); }

/* ============================ Vuelos =============================== */

.update-badge {
  margin: 2rem auto 0; max-width: 42rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--slate-500);
}
.pulse-dot { display: inline-flex; height: 8px; width: 8px; border-radius: 999px; background: #22c55e; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.search-box {
  margin: 2rem auto 0; max-width: 56rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--navy-100);
  background: rgba(238,244,251,0.5);
  padding: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.search-input-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: 1rem; background: #fff;
  padding: 0.75rem 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.search-input-wrap input {
  width: 100%; border: none; background: transparent; outline: none;
  font-size: 0.875rem; font-weight: 500; color: var(--navy-800);
}
.filter-row {
  margin-top: 0.75rem; display: flex; gap: 0.5rem;
  overflow-x: auto; padding-bottom: 4px;
}
.filter-chip {
  flex-shrink: 0; border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 700; color: var(--navy-600);
  background: #fff; box-shadow: inset 0 0 0 1px var(--navy-100);
  transition: 0.2s;
}
.filter-chip:hover { background: var(--navy-100); }
.filter-chip.active { background: var(--navy-800); color: #fff; box-shadow: 0 8px 20px rgba(11,37,69,0.2); }

.flights-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .flights-grid { grid-template-columns: repeat(2, 1fr); } }

.flight-card {
  position: relative; height: 100%;
  overflow: hidden; border-radius: var(--radius-xl);
  border: 1px solid var(--navy-100);
  background: #fff; padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(7,25,48,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.flight-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px rgba(7,25,48,0.15); }
.flight-card.featured { border-color: rgba(18,181,240,0.4); }
.featured-badge {
  position: absolute; right: 1.25rem; top: 1.25rem;
  border-radius: 999px; background: linear-gradient(90deg, var(--sky-brand), var(--cyan-brand));
  padding: 0.3rem 0.75rem; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-950);
}
.flight-head { display: flex; align-items: flex-start; gap: 1rem; }
.flight-head .flag { display: grid; place-items: center; flex-shrink: 0; height: 3.5rem; width: 3.5rem; border-radius: 1rem; background: rgba(238,244,251,0.7); font-size: 1.875rem; }
.flight-head .route-title { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 1.125rem; font-weight: 800; color: var(--navy-800); }
.flight-head .route-title svg { height: 1rem; width: 1rem; color: var(--sky-brand); transform: rotate(90deg); }
.flight-head .country { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--slate-500); }

.flight-meta { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; font-size: 0.875rem; }
.flight-meta .box { border-radius: 1rem; background: rgba(238,244,251,0.7); padding: 0.75rem 1rem; }
.flight-meta .box .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-400); margin: 0; }
.flight-meta .box .value { margin-top: 2px; font-weight: 700; color: var(--navy-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.flight-baggage { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--slate-500); }

.flight-dates-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-400); margin-top: 1rem; }
.flight-dates { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.date-chip {
  border-radius: 0.75rem; background: #fff; padding: 0.4rem 0.75rem;
  font-size: 0.75rem; font-weight: 700; color: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--navy-100); transition: 0.2s;
}
.date-chip:hover { background: var(--navy-800); color: #fff; box-shadow: inset 0 0 0 1px var(--navy-800); }

.flight-note {
  margin-top: 1rem; border-radius: 1rem; background: #fffbeb;
  padding: 0.6rem 1rem; font-size: 0.75rem; line-height: 1.5; color: #92400e;
}

.flight-foot {
  margin-top: 1.25rem; display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--navy-100); padding-top: 1.25rem;
}
.flight-foot .price-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-400); margin: 0; }
.flight-foot .price { margin: 0; font-size: 1.5rem; font-weight: 800; color: var(--navy-800); }
.flight-foot .price .currency { font-size: 0.875rem; font-weight: 700; color: var(--slate-400); }
.btn-reserve {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; background: var(--whatsapp); color: #fff;
  padding: 0.85rem 1.5rem; font-size: 0.875rem; font-weight: 800;
  box-shadow: 0 15px 30px rgba(37,211,102,0.25); transition: transform 0.2s;
}
.btn-reserve:hover { transform: scale(1.05); }

.empty-msg { margin-top: 3.5rem; text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--slate-400); }

/* ============================ Modal reserva ========================= */

.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  align-items: center; justify-content: center;
  background: rgba(4,16,31,0.7); backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  max-height: 92vh; width: 100%; max-width: 32rem;
  overflow-y: auto; border-radius: var(--radius-xl);
  background: #fff; box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.modal-head {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(to bottom right, var(--navy-800), var(--sky-brand));
  padding: 1.5rem; color: #fff;
}
.modal-close {
  position: absolute; right: 1rem; top: 1rem;
  display: grid; place-items: center;
  height: 2.25rem; width: 2.25rem; border-radius: 999px;
  background: rgba(255,255,255,0.15); color: #fff; transition: 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-head .eyebrow2 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin: 0; }
.modal-head h3 { margin: 0.5rem 0 0; display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 800; }
.modal-head .sub { margin: 0.25rem 0 0; font-size: 0.875rem; color: rgba(255,255,255,0.8); }

.modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.field-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-500); }
.date-picker { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.date-picker button {
  border-radius: 0.75rem; padding: 0.5rem 0.9rem; font-size: 0.875rem; font-weight: 700;
  background: rgba(238,244,251,0.7); color: var(--navy-700); transition: 0.15s;
}
.date-picker button.selected { background: var(--navy-800); color: #fff; box-shadow: 0 10px 20px rgba(11,37,69,0.25); }

.modal-form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .modal-form-grid { grid-template-columns: repeat(2,1fr); } }
.modal-body input[type="text"], .modal-body input[type="number"] {
  margin-top: 0.5rem; width: 100%; border-radius: 0.75rem;
  border: 1px solid var(--navy-100); background: rgba(238,244,251,0.6);
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--navy-800);
  outline: none; transition: 0.2s;
}
.modal-body input:focus { border-color: var(--sky-brand); background: #fff; }

.modal-contact-box { border-radius: 1rem; border: 1px solid var(--navy-100); background: rgba(238,244,251,0.5); padding: 1rem; }
.modal-contact-box p.title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-500); margin: 0; }
.modal-contact-box p.sub { margin: 0.25rem 0 0; font-size: 0.75rem; color: var(--slate-500); }
.modal-wa-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.modal-wa-list a {
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: 1rem; background: var(--whatsapp); color: #fff;
  padding: 0.85rem 1rem; box-shadow: 0 15px 30px rgba(37,211,102,0.25); transition: transform 0.2s;
}
.modal-wa-list a:hover { transform: scale(1.02); }
.modal-wa-list .txt { min-width: 0; flex: 1; text-align: left; }
.modal-wa-list .txt b { display: block; font-size: 0.875rem; font-weight: 800; }
.modal-wa-list .txt span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.85); }

.modal-disclaimer { text-align: center; font-size: 11px; line-height: 1.6; color: var(--slate-400); }

/* ============================= Galería ============================== */

.gallery-tabs { margin-top: 2rem; display: flex; justify-content: center; gap: 0.5rem; }
.gallery-tabs button {
  border-radius: 999px; padding: 0.6rem 1.25rem; font-size: 0.75rem; font-weight: 700;
  background: #fff; color: var(--navy-600); box-shadow: inset 0 0 0 1px var(--navy-100); transition: 0.2s;
}
.gallery-tabs button:hover { background: var(--navy-100); }
.gallery-tabs button.active { background: var(--navy-800); color: #fff; box-shadow: 0 10px 20px rgba(11,37,69,0.2); }

.gallery-grid { margin-top: 2.5rem; column-count: 1; column-gap: 1.25rem; }
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }
.gallery-item {
  display: inline-block; width: 100%; margin-bottom: 1.25rem; break-inside: avoid;
  position: relative; overflow: hidden; border-radius: 26px;
  background: var(--navy-800); box-shadow: 0 15px 30px rgba(7,25,48,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(7,25,48,0.2); }
.gallery-item img { width: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, var(--navy-950), rgba(4,16,31,0.7), transparent);
  padding: 3.5rem 1.25rem 1.25rem;
}
.gallery-caption .t { margin: 0; font-size: 0.875rem; font-weight: 800; color: #fff; }
.gallery-caption .s { margin: 2px 0 0; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.gallery-type-badge {
  position: absolute; left: 1rem; top: 1rem;
  border-radius: 999px; background: rgba(255,255,255,0.9);
  padding: 0.25rem 0.65rem; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-800);
}

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 100;
  place-items: center; background: rgba(4,16,31,0.85); backdrop-filter: blur(4px); padding: 1rem;
}
.lightbox.open { display: grid; }
.lightbox-inner { width: 100%; max-width: 48rem; }
.lightbox-media { overflow: hidden; border-radius: var(--radius-xl); background: #000; box-shadow: 0 40px 80px rgba(0,0,0,0.4); }
.lightbox-media img { max-height: 75vh; width: 100%; object-fit: contain; }
.lightbox-foot { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lightbox-foot .t { margin: 0; font-size: 1.125rem; font-weight: 800; color: #fff; }
.lightbox-foot .s { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.lightbox-close {
  border-radius: 999px; background: rgba(255,255,255,0.15); color: #fff;
  padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 700; transition: 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============================= Contacto ============================= */

.contact-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2,1fr); } }
.contact-panel { height: 100%; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.12); padding: 1.75rem; }
.contact-panel h3 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 800; color: #fff; margin: 0; }
.contact-panel h3 svg { color: var(--whatsapp); }
.contact-panel > p { margin-top: 0.4rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.wa-contact-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.wa-contact-list a {
  display: flex; align-items: center; gap: 1rem;
  border-radius: 1rem; background: var(--whatsapp); color: #fff;
  padding: 1rem 1.25rem; box-shadow: 0 15px 30px rgba(37,211,102,0.2); transition: transform 0.2s;
}
.wa-contact-list a:hover { transform: scale(1.02); }
.wa-contact-list .txt { min-width: 0; flex: 1; }
.wa-contact-list .txt b { display: block; font-size: 0.875rem; font-weight: 800; }
.wa-contact-list .txt span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.85); }

.phone-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.phone-list a {
  display: flex; align-items: center; gap: 1rem;
  border-radius: 1rem; background: rgba(255,255,255,0.08); padding: 1rem 1.25rem; transition: background 0.2s;
}
.phone-list a:hover { background: rgba(255,255,255,0.15); }
.phone-list .ic { display: grid; place-items: center; flex-shrink: 0; height: 2.75rem; width: 2.75rem; border-radius: 0.75rem; background: rgba(18,181,240,0.2); color: var(--sky-brand); }
.phone-list .txt b { display: block; font-size: 0.875rem; font-weight: 800; color: #fff; }
.phone-list .txt span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.social-grid { margin-top: 0.75rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  border-radius: 1rem; padding: 1.25rem 1rem; color: #fff; transition: transform 0.2s;
}
.social-card:hover { transform: scale(1.02); }
.social-card.fb { background: var(--facebook); }
.social-card.ig { background: linear-gradient(to bottom right, #F58529, #DD2A7B, #8134AF); }
.social-card span { font-size: 0.75rem; font-weight: 800; }

.email-box { margin-top: 0.75rem; border-radius: 1rem; background: rgba(255,255,255,0.08); padding: 1rem 1.25rem; }
.email-box .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin: 0; }
.email-box .val { margin: 0.25rem 0 0; font-size: 0.875rem; font-weight: 700; color: #fff; }
.email-box .addr { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ============================== Footer =============================== */

footer { background: var(--navy-950); padding: 3.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-logo-box { display: inline-block; border-radius: 1rem; background: rgba(255,255,255,0.95); padding: 0.75rem 1rem; }
.footer-brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-socials { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer-socials a { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 999px; background: rgba(255,255,255,0.1); color: #fff; transition: background 0.2s; }
.footer-socials a:hover.fb { background: var(--facebook); }
.footer-socials a:hover.ig { background: #DD2A7B; }
.footer-socials a:hover.wa { background: var(--whatsapp); }

.footer-col h4 { font-size: 0.875rem; font-weight: 800; color: #fff; margin: 0; }
.footer-col ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-col ul a:hover { color: var(--sky-brand); }
.footer-col ul .sub { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer-bottom {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ===================== Botón flotante WhatsApp ========================= */

.floating-wa { position: fixed; bottom: 1.25rem; right: 1rem; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.floating-wa-panel {
  display: none; width: 16rem; overflow: hidden; border-radius: 1.5rem;
  background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border: 1px solid var(--navy-100);
}
.floating-wa-panel.open { display: block; }
.floating-wa-panel .head { background: var(--whatsapp); padding: 0.75rem 1rem; }
.floating-wa-panel .head b { display: block; font-size: 0.875rem; font-weight: 800; color: #fff; }
.floating-wa-panel .head span { font-size: 11px; color: rgba(255,255,255,0.85); }
.floating-wa-panel .list { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.floating-wa-panel .list a { display: flex; align-items: center; gap: 0.75rem; border-radius: 1rem; background: rgba(238,244,251,0.7); padding: 0.6rem 0.75rem; transition: background 0.2s; }
.floating-wa-panel .list a:hover { background: var(--navy-100); }
.floating-wa-panel .list .ic { display: grid; place-items: center; flex-shrink: 0; height: 2.25rem; width: 2.25rem; border-radius: 999px; background: var(--whatsapp); color: #fff; }
.floating-wa-panel .list .txt b { display: block; font-size: 0.75rem; font-weight: 800; color: var(--navy-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floating-wa-panel .list .txt span { display: block; font-size: 11px; color: var(--slate-500); }

.floating-wa-btn {
  display: grid; place-items: center; height: 3.5rem; width: 3.5rem;
  border-radius: 999px; background: var(--whatsapp); color: #fff;
  box-shadow: 0 25px 50px rgba(22,163,74,0.4); transition: transform 0.2s;
  font-size: 1.25rem; font-weight: 700;
}
.floating-wa-btn:hover { transform: scale(1.1); }

/* ===================== Logo personalizado (panel admin) ================ */

.logo img.logo-img { height: 2.75rem; width: auto; flex-shrink: 0; border-radius: 0.5rem; }
.footer-logo-box .logo img.footer-logo-img { height: 44px; width: auto; border-radius: 0.5rem; }

/* ===================== Preguntas frecuentes (FAQ) ======================== */

.faq-list { max-width: 46rem; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--navy-100); border-radius: 1.25rem; background: #fff;
  box-shadow: 0 10px 30px rgba(11,37,69,0.05); overflow: hidden;
}
.faq-item .faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; text-align: left; font-weight: 700; font-size: 0.95rem; color: var(--navy-800);
}
.faq-item .faq-q .chev { flex-shrink: 0; transition: transform 0.2s; color: var(--sky-brand); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-item .faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 1.35rem; font-size: 0.875rem; line-height: 1.65; color: var(--slate-600);
}
.faq-item.open .faq-a { max-height: 480px; padding: 0 1.35rem 1.1rem; }
