/* ==========================================================================
   AJ & TRAVEL TOURS — Sistema de diseño Basado en el Logo Oficial
   Paleta: Azul Zafiro / Royal Navy + Dorado Cálido / Oro Solar + Fondos Claros
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* --- FONDOS Y NEUTRALES CLAROS (LUMINOSOS & MODERNOS) --- */
  --white: #ffffff;
  --cream-50: #f8fafc;       /* Fondo principal ultra limpio (slate-50) */
  --cream-100: #e2e8f0;      /* Bordes y divisores sutiles (slate-200) */
  --cream-200: #cbd5e1;      /* Bordes de inputs / hover (slate-300) */

  /* --- AZUL ZAFIRO / ROYAL NAVY DEL LOGO DE LA COMPAÑÍA --- */
  --navy-900: #0a1e3b;       /* Azul marino profundo (exacto del logo) */
  --navy-800: #0f2e5a;       /* Azul zafiro fuerte para titulares */
  --navy-700: #164785;       /* Azul zafiro medio */
  --navy-600: #1d5ba5;       /* Azul zafiro brillante para enlaces y detalles */
  --navy-100: #eaf2fc;       /* Azul cielo tenue para fondos de tarjetas/inclusiones */
  --navy-50:  #f3f8fd;       /* Fondo ultra sutil azulado */

  /* --- DORADO / ORO CÁLIDO DEL LOGO DE LA COMPAÑÍA --- */
  --gold-600: #b45309;       /* Dorado ámbar profundo (precios de alta visibilidad) */
  --gold-500: #d97706;       /* Dorado principal cálido para botones (amber-600) */
  --gold-400: #f59e0b;       /* Dorado brillante del logo para estrellas y badges */
  --gold-300: #fbbf24;       /* Amarillo dorado claro del logo */
  --gold-100: #fef3c7;       /* Fondo suave dorado para tags activos (amber-100) */
  --gold-50:  #fffbeb;       /* Fondo tenue dorado (amber-50) */

  /* --- TEXTOS DE ALTO CONTRASTE Y LEGIBILIDAD --- */
  --ink-900: #0a1e3b;        /* Titulares principales (azul marino profundo) */
  --ink-700: #1e3a5f;        /* Texto de párrafos y lectura */
  --ink-600: #475569;        /* Texto descriptivo y secundario */
  --ink-400: #94a3b8;        /* Placeholders y textos tenues */

  /* --- WHATSAPP Y SEGURIDAD --- */
  --wa-green: #25d366;
  --wa-green-hover: #1eb757;
  --emerald-600: #059669;
  --emerald-100: #d1fae5;
  --emerald-50: #f0fdf4;

  /* --- TIPOGRAFÍAS --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* --- RADIOS Y CONTENEDOR --- */
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1180px;

  /* --- SOMBRAS SUAVES MODERNAS --- */
  --shadow-xs: 0 1px 2px rgba(10, 30, 59, 0.04);
  --shadow-sm: 0 2px 8px -2px rgba(10, 30, 59, 0.06);
  --shadow-md: 0 8px 24px -4px rgba(10, 30, 59, 0.08);
  --shadow-lg: 0 16px 40px -8px rgba(10, 30, 59, 0.12);
  --shadow-hover: 0 20px 40px -8px rgba(217, 119, 6, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-700);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2.5px;
  background: var(--gold-500);
  border-radius: 999px;
  display: inline-block;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px -8px rgba(217, 119, 6, 0.45);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px -6px rgba(217, 119, 6, 0.55);
}
.btn-outline {
  background: var(--white);
  border-color: var(--cream-100);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  background: var(--gold-50);
}
.btn-navy {
  background: var(--navy-800);
  color: #ffffff;
  box-shadow: 0 10px 24px -8px rgba(10, 30, 59, 0.35);
}
.btn-navy:hover {
  background: var(--navy-900);
  color: #ffffff;
}
.btn-large {
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
}

/* ==========================================================================
   HEADER & NAVBAR (LIMPIO, TRANSLÚCIDO & COLORES DEL LOGO)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-100);
  box-shadow: 0 2px 14px -4px rgba(10, 30, 59, 0.06);
  transition: all 0.25s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.brand:hover .brand-logo-img {
  transform: scale(1.06) rotate(3deg);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--navy-900);
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover {
  background: var(--navy-50);
  color: var(--navy-700);
}
.nav-links a.active {
  background: var(--gold-100);
  color: var(--gold-600);
  font-weight: 700;
}
.btn-nav-reserve {
  padding: 9px 20px !important;
  font-size: 0.88rem !important;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35) !important;
}
.btn-nav-reserve:hover {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

.nav-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: 999px;
  padding: 2px 4px;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}
.lang-switch .lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-800);
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.18s ease;
  letter-spacing: 0.04em;
}
.lang-switch .lang-btn:hover {
  color: var(--gold-600);
}
.lang-switch .lang-btn.active {
  background: var(--navy-900);
  color: var(--gold-400);
  box-shadow: 0 2px 6px rgba(10, 30, 59, 0.2);
}
.lang-sep {
  font-size: 0.72rem;
  color: var(--navy-200);
  user-select: none;
  padding: 0 1px;
}
.lang-switch.in-menu {
  display: flex;
  width: 100%;
  margin-top: 6px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 8px;
  padding: 4px;
  gap: 6px;
  box-shadow: none;
}
.lang-switch.in-menu .lang-btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
}
.mobile-lang-li {
  display: none;
}

@media (max-width: 890px) {
  .nav-toggle { display: block; }
  .mobile-lang-li {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--cream-100);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--cream-100);
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
  }
}

/* ==========================================================================
   HERO (LUMINOSO, AZUL ZAFIRO & DORADO DEL LOGO CON FONDO MONSERRATE)
   ========================================================================== */
.hero {
  position: relative;
  background-color: #0a1e3b;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.45) 100%),
    url('../images/fondo.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: var(--navy-900);
  overflow: hidden;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--cream-100);
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: var(--navy-900);
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  margin: 18px 0 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero p.lede {
  font-size: 1.12rem;
  color: var(--ink-700);
  max-width: 52ch;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Buscador Rápido en el Hero */
.hero-search-box {
  margin: 26px 0 24px;
  max-width: 520px;
}
.hero-search-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--cream-100);
  border-radius: 999px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 10px 30px -8px rgba(10, 30, 59, 0.08);
  transition: all 0.2s ease;
}
.hero-search-form:focus-within {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(22, 71, 133, 0.15);
}
.hero-search-icon {
  font-size: 1.1rem;
  color: var(--gold-500);
  margin-right: 10px;
}
.hero-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  outline: none;
}
.hero-search-input::placeholder {
  color: var(--ink-400);
}
.hero-search-btn {
  background: var(--navy-800);
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-search-btn:hover {
  background: var(--navy-900);
}
@media (max-width: 480px) {
  .hero-search-form {
    padding: 5px 6px 5px 14px;
  }
  .hero-search-btn {
    padding: 9px 15px;
    font-size: 0.82rem;
  }
  .hero-search-input {
    font-size: 0.88rem;
  }
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}
.hero-feature-chip {
  background: var(--white);
  border: 1px solid var(--cream-100);
  color: var(--navy-900);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px dashed var(--cream-200);
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy-800);
  line-height: 1;
}
.hero-stats .stat span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-600);
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}

.hero-badge {
  position: relative;
  justify-self: end;
}
.hero-photo-frame {
  position: relative;
  width: min(390px, 92%);
  margin-left: auto;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hero-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-photo-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 8px solid var(--white);
  box-shadow: 0 25px 50px -12px rgba(10, 30, 59, 0.18);
}
.hero-photo-frame .tag-chip {
  position: absolute;
  bottom: -16px;
  left: -14px;
  background: var(--gold-500);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -6px rgba(217, 119, 6, 0.4);
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .hero {
    background-image: 
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 65%, rgba(255, 255, 255, 0.70) 100%),
      url('../images/fondo.webp');
    background-position: center top;
    padding: 55px 0 65px;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-photo-frame {
    margin: 0 auto;
    transform: rotate(0deg);
  }
}

/* ==========================================================================
   BARRA DE PRUEBA SOCIAL / SOCIAL PROOF STRIP
   ========================================================================== */
.social-proof-bar {
  background: var(--white);
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
  padding: 18px 0;
  color: var(--navy-900);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sp-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-stars {
  color: var(--gold-400);
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.sp-rating-text strong {
  display: block;
  font-size: 1.02rem;
  color: var(--navy-900);
  line-height: 1.2;
}
.sp-rating-text span {
  font-size: 0.78rem;
  color: var(--ink-600);
  font-weight: 500;
}
.sp-quote {
  flex: 1;
  max-width: 520px;
  font-size: 0.92rem;
  color: var(--ink-700);
  border-left: 3px solid var(--gold-500);
  padding-left: 14px;
  font-style: italic;
}
.sp-quote p { margin: 0; }
.sp-source {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-top: 4px;
}
.sp-cta .sp-link {
  font-size: 0.86rem;
  color: var(--navy-800);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  transition: all 0.2s ease;
}
.sp-cta .sp-link:hover {
  background: var(--gold-500);
  color: #ffffff;
  border-color: var(--gold-500);
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
section { padding: 84px 0; }
.section-cream { background: var(--white); }
.section-tint { background: var(--cream-50); }
.section-navy, .section-featured {
  background: var(--cream-50);
  color: var(--navy-900);
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
}
.section-navy h2, .section-featured h2 { color: var(--navy-900); }
.section-navy .section-head p, .section-featured .section-head p { color: var(--ink-600); }

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  margin-top: 12px;
  color: var(--navy-900);
}
.section-head p {
  color: var(--ink-600);
  font-size: 1.05rem;
  margin-top: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   TARJETAS DE TOURS (MÁS VENDIDOS & CATALOG)
   ========================================================================== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.top-sellers-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
}
@media (max-width: 920px) {
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .top-sellers-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 620px) {
  .tour-grid { grid-template-columns: 1fr; }
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.tour-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
  cursor: pointer;
}
.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-media img {
  transform: scale(1.08);
}
.tour-card-media .tour-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--navy-900);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.commercial-card .hot-badge {
  background: var(--gold-500) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4) !important;
  border: none !important;
}
.tour-card-media .tour-dur-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 30, 59, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.tour-location {
  font-size: 0.78rem;
  color: var(--navy-700);
  font-weight: 700;
}
.tour-rating {
  font-size: 0.82rem;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tour-rating span {
  color: var(--ink-600);
  font-size: 0.75rem;
  font-weight: 500;
}
.tour-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--navy-900);
  line-height: 1.25;
}
.tour-card-body p {
  color: var(--ink-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 14px 0;
  flex: 1;
}
.tour-pills-row {
  display: flex;
  gap: 8px;
  margin: 6px 0 14px;
}
.tour-mini-pill {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-800);
}

.tour-commercial-includes {
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 8px 0 16px;
  border: 1px solid var(--navy-100);
}
.tour-commercial-includes strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-700);
  margin-bottom: 6px;
  font-weight: 700;
}
.tour-commercial-includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
@media (max-width: 520px) {
  .tour-commercial-includes ul { grid-template-columns: 1fr; }
}
.tour-commercial-includes li {
  font-size: 0.8rem;
  color: var(--navy-900);
  line-height: 1.35;
}

.tour-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-100);
  margin-top: auto;
}
.tour-card-foot .from {
  font-size: 0.82rem;
  color: var(--ink-600);
}
.from-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  font-weight: 600;
}
.tour-card-foot .from b {
  font-size: 1.25rem;
  color: var(--gold-600);
  font-family: var(--font-display);
}
.card-action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-card-action {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--cream-200);
  transition: all 0.2s ease;
}
.btn-card-action:hover {
  background: var(--navy-800);
  color: #ffffff;
  border-color: var(--navy-800);
}
.btn-card-wa {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--wa-green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s, background 0.2s;
}
.btn-card-wa:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Callout catálogo completo */
.catalog-callout {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.catalog-callout-text h3 {
  color: var(--navy-900);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.catalog-callout-text p {
  color: var(--ink-600);
  font-size: 0.95rem;
  margin: 0;
  max-width: 60ch;
}

/* ==========================================================================
   ¿POR QUÉ NOSOTROS? (DIFERENCIADORES)
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-100);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.why-card.highlight {
  background: linear-gradient(135deg, var(--gold-50) 0%, #ffffff 100%);
  border-color: var(--gold-300);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.why-card p {
  font-size: 0.94rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   TRANSPARENCIA TOTAL (QUÉ INCLUYE / NO INCLUYE)
   ========================================================================== */
.pricing-transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .pricing-transparency-grid { grid-template-columns: 1fr; }
}
.pricing-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
}
.pricing-box.included {
  border-top: 4px solid var(--navy-700);
}
.pricing-box.not-included {
  border-top: 4px solid var(--gold-500);
}
.pricing-box-header {
  margin-bottom: 22px;
}
.pricing-box-badge {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--navy-100);
  color: var(--navy-700);
  display: inline-block;
  margin-bottom: 8px;
}
.pricing-box-badge.not-badge {
  background: var(--gold-100);
  color: var(--gold-600);
}
.pricing-box-header h3 {
  font-size: 1.35rem;
  color: var(--navy-900);
}
.pricing-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
}
.cross-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
}
.pricing-checklist strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
}
.pricing-checklist span {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-600);
  line-height: 1.45;
  margin-top: 2px;
}
.pricing-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-100);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--ink-700);
}

/* ==========================================================================
   RESERVA EN 3 PASOS
   ========================================================================== */
.booking-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}
@media (max-width: 820px) {
  .booking-steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-100);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-badge {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.step-card p {
  font-size: 0.94rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}
.step-arrow, .step-check {
  position: absolute;
  top: 30px;
  right: 24px;
  font-size: 1.4rem;
  color: var(--gold-400);
  font-weight: bold;
}
@media (max-width: 820px) {
  .step-arrow { transform: rotate(90deg); }
}

/* ==========================================================================
   GALERÍA REAL (FOTOS DE VIAJEROS)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px 10px;
  background: linear-gradient(to top, rgba(10, 30, 59, 0.88), transparent);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
}

/* ==========================================================================
   TESTIMONIOS & PRUEBA SOCIAL
   ========================================================================== */
.reviews-badges-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.review-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
}
.review-badge-item b {
  font-size: 1.05rem;
  color: var(--navy-900);
}
.review-badge-item span {
  font-size: 0.82rem;
  color: var(--ink-600);
  font-weight: 500;
}
.r-stars { color: var(--gold-400); }
.r-check { color: var(--navy-700); font-weight: bold; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.review-stars {
  color: var(--gold-400);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.review-text {
  font-style: italic;
  color: var(--ink-700);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--cream-100);
  padding-top: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
}
.review-info strong {
  display: block;
  font-size: 0.94rem;
  color: var(--navy-900);
}
.review-info span {
  font-size: 0.78rem;
  color: var(--ink-600);
}

/* ==========================================================================
   REDES SOCIALES (FOLLOW SECTION)
   ========================================================================== */
.follow-section .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.follow-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}
.follow-card.tiktok {
  background: linear-gradient(135deg, #0a1e3b 0%, #0f2e5a 60%, #164785 100%);
}
.follow-card.instagram {
  background: linear-gradient(135deg, #d97706 0%, #db2777 55%, #7c3aed 100%);
}
.follow-card.facebook {
  background: linear-gradient(135deg, #0a1e3b 0%, #1d5ba5 55%, #2563eb 100%);
}
.follow-card .fc-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.follow-card .fc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.follow-card .fc-icon svg { width: 26px; height: 26px; fill: #ffffff; }
.follow-card h3 { color: #ffffff; font-size: 1.3rem; margin: 0; }
.follow-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  margin: 14px 0 18px;
  line-height: 1.5;
}
.follow-card .handle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.follow-card .btn {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.follow-card .btn:hover {
  background: #ffffff;
  color: var(--navy-900);
}
@media (max-width: 960px) {
  .follow-section .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .follow-section .wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-grid {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-100);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}
.faq-btn {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.faq-icon {
  font-size: 1rem;
  transition: transform 0.25s ease;
  color: var(--gold-500);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 22px 18px;
}

/* ==========================================================================
   BANNER FINAL: ¿LISTO PARA VIAJAR?
   ========================================================================== */
.ready-to-travel-section {
  background: linear-gradient(135deg, #0a1e3b 0%, #0f2e5a 45%, #164785 100%);
  color: #ffffff;
  padding: 96px 0;
}
.ready-to-travel-section h2 {
  color: #ffffff !important;
}
.ready-to-travel-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.ready-to-travel-section .eyebrow {
  color: #fed7aa !important;
}
.ready-to-travel-section .eyebrow::before {
  background: #fed7aa !important;
}
.ready-to-travel-section .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.ready-to-travel-section .btn-outline:hover {
  background: #ffffff;
  color: var(--navy-900);
}

/* ==========================================================================
   FOOTER (AZUL MARINO PROFUNDO DEL LOGO)
   ========================================================================== */
footer {
  background: var(--navy-900);
  color: rgba(248, 250, 252, 0.75);
  padding: 64px 0 28px;
  border-top: 3px solid var(--gold-500);
}
.footer-grid, .foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr;
  gap: 36px;
  margin-bottom: 40px;
}
footer h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
footer .brand-text { color: #ffffff; }
footer p { font-size: 0.92rem; line-height: 1.5; }
.brand-footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}
.foot-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(248, 250, 252, 0.7);
  transition: color 0.18s;
}
.foot-links a:hover { color: var(--gold-400); }
.foot-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(248, 250, 252, 0.8);
}
.foot-contact svg { width: 18px; height: 18px; stroke: var(--gold-400); flex: none; }
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s ease;
}
.social-row a svg { width: 18px; height: 18px; fill: #ffffff; }
.social-row a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  align-items: center;
}
.foot-bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.admin-access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-200);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: all 0.25s ease;
  opacity: 0.7;
}
.admin-access-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-400);
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 900px) {
  .footer-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid, .foot-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PÁGINA DE TOURS & TIQUETES (TOURS.HTML)
   ========================================================================== */
.tours-hero {
  background: linear-gradient(135deg, #f0f5fb 0%, #ffffff 45%, #fef9ed 100%);
  color: var(--navy-900);
  padding: 68px 0 54px;
  border-bottom: 1px solid var(--cream-100);
}
.tours-hero h1 {
  color: var(--navy-900);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-top: 14px;
}
.tours-hero p {
  color: var(--ink-600);
  max-width: 62ch;
  margin-top: 12px;
  font-size: 1.05rem;
}

.tours-search-box {
  max-width: 680px;
  margin: 28px 0 0;
  position: relative;
}
.tours-search-input {
  width: 100%;
  padding: 16px 46px 16px 48px;
  border-radius: 999px;
  border: 2px solid var(--cream-200);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1rem;
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.tours-search-input::placeholder { color: var(--ink-400); }
.tours-search-input:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(22, 71, 133, 0.15);
}
.tours-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 1.15rem;
  pointer-events: none;
}
.tours-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream-200);
  color: var(--navy-800);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  line-height: 1;
}
.tours-search-clear:hover {
  background: var(--gold-500);
  color: #ffffff;
}
@media (max-width: 480px) {
  .tours-search-input {
    padding: 12px 36px 12px 38px;
    font-size: 0.88rem;
  }
  .tours-search-icon {
    left: 14px;
    font-size: 1rem;
  }
  .tours-search-clear {
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 0;
}
.chip {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--cream-200);
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.chip:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  background: var(--gold-50);
}
.chip.active {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  border-color: var(--gold-500);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.chip .chip-count {
  background: var(--cream-100);
  color: var(--ink-700);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.72rem;
  margin-left: 6px;
  font-weight: 700;
}
.chip.active .chip-count {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.no-tours-msg {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--cream-200);
  color: var(--ink-600);
  font-size: 1.1rem;
}

/* Tarjetas Estilo Pase de Embarque (Tickets) */
.tickets {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 56px 0 100px;
}
.ticket {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ticket:hover {
  box-shadow: var(--shadow-lg);
}
.ticket-main {
  padding: 34px 38px;
}
.ticket-main .num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticket-main h3 {
  font-size: 1.55rem;
  margin: 8px 0 6px;
  color: var(--navy-900);
}
.ticket-main .dur {
  font-size: 0.82rem;
  color: var(--navy-700);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
}
.ticket-main p.desc {
  color: var(--ink-600);
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.6;
}
.ticket-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.ticket-photos a {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  border: 1px solid var(--cream-100);
  cursor: pointer;
}
.ticket-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ticket-photos a:hover img {
  transform: scale(1.08);
}
.ticket-main .includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-top: 20px;
}
.ticket-main .includes li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--navy-900);
}
.ticket-main .includes li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: var(--navy-700);
}

/* Talón del Ticket (Calculadora Interactiva de Personas) */
.ticket-stub {
  background: linear-gradient(145deg, #f8fafc 0%, #edf4fc 100%);
  color: var(--navy-900);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 1px dashed var(--cream-200);
}
.ticket-stub .stub-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 700;
  margin-bottom: 12px;
}

.pax-calc-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-xs);
}
.pax-calc-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pax-calc-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pax-select {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pax-select:hover, .pax-select:focus {
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 71, 133, 0.12);
}
.pax-select option {
  background: var(--white);
  color: var(--navy-900);
}

.pax-calc-card {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pax-calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pax-calc-item-label {
  font-size: 0.78rem;
  color: var(--navy-700);
  font-weight: 600;
}
.pax-calc-item-val.pax-price-per-person {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-900);
}
.pax-calc-divider {
  height: 1px;
  background: rgba(22, 71, 133, 0.15);
  margin: 2px 0;
}
.pax-calc-item.total {
  align-items: flex-end;
}
.pax-calc-item.total .pax-calc-item-label {
  font-size: 0.82rem;
  color: var(--navy-900);
  font-weight: 800;
  display: block;
}
.pax-calc-pax-count {
  font-size: 0.72rem;
  color: var(--ink-600);
  font-weight: normal;
  display: block;
}
.pax-calc-item.total .pax-total-price {
  font-size: 1.35rem;
  color: var(--gold-600);
  font-weight: 900;
  font-family: var(--font-display);
}

.btn-calc-wa {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 11px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: var(--wa-green);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}
.btn-calc-wa:hover {
  background: var(--wa-green-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.pax-table-toggle-wrap {
  margin-top: 6px;
  text-align: center;
}
.btn-toggle-table {
  background: transparent;
  border: none;
  color: var(--ink-600);
  font-family: var(--font-body);
  font-size: 0.76rem;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-toggle-table:hover {
  color: var(--navy-800);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--cream-100);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid var(--cream-100);
}
.price-table th {
  color: var(--ink-600);
  font-weight: 500;
}
.price-table td {
  color: var(--navy-900);
  font-weight: 700;
}
.price-table tr:last-child td, .price-table tr:last-child th {
  border-bottom: none;
}
.price-table tr.active-row {
  background: var(--gold-100);
}
.price-table tr.active-row th {
  color: var(--gold-600);
  font-weight: 700;
}
.price-table tr.active-row td {
  color: var(--gold-600);
  font-weight: 800;
}

@media (max-width: 780px) {
  .ticket { grid-template-columns: 1fr; }
  .ticket-main { padding: 24px 20px; }
  .ticket-stub { padding: 22px 20px; border-left: none; border-top: 1px dashed var(--cream-200); }
  .ticket-main .includes { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACTO (CONTACTO.HTML)
   ========================================================================== */
.contact-hero {
  background: linear-gradient(135deg, #f0f5fb 0%, #ffffff 45%, #fef9ed 100%);
  color: var(--navy-900);
  padding: 68px 0 54px;
  border-bottom: 1px solid var(--cream-100);
}
.contact-hero h1 {
  color: var(--navy-900);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-top: 14px;
}
.contact-hero p {
  color: var(--ink-600);
  max-width: 56ch;
  margin-top: 12px;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
}
.contact-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list a, .contact-list .row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--ink-700);
  transition: color 0.18s;
}
.contact-list a:hover { color: var(--navy-700); }
.contact-list .ic {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 0.2s;
  color: var(--navy-700);
}
.contact-list .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy-700);
}
.contact-list a:hover .ic {
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.contact-list a:hover .ic svg {
  stroke: #ffffff;
  fill: #ffffff;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  color: var(--navy-900);
  border: 1px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  color: var(--navy-900);
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.contact-form p {
  color: var(--ink-600);
  margin-bottom: 24px;
  font-size: 0.94rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  font-weight: 700;
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--ink-400);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(22, 71, 133, 0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form .btn {
  margin-top: 8px;
  width: 100%;
}
.form-note {
  font-size: 0.74rem;
  color: var(--ink-400);
  margin-top: 14px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}
.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 59, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.25);
  object-fit: contain;
}
.lightbox-caption {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox-close:hover {
  background: var(--gold-500);
  color: #ffffff;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
body.reveal-armed .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.reveal-armed .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tour-card:hover, .wa-float:hover, .btn:hover { transform: none; }
}

/* ==========================================================================
   PRIORIDAD 2 & 4: ITINERARIO PASO A PASO (TIMELINE)
   ========================================================================== */
.itinerary-toggle-wrap {
  margin-top: 18px;
}
.btn-toggle-itinerary {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-toggle-itinerary:hover {
  background: var(--gold-500);
  color: #ffffff;
  border-color: var(--gold-500);
}
.itinerary-timeline {
  margin-top: 14px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.itinerary-head {
  font-size: 0.95rem;
  margin: 0 0 14px;
  color: var(--navy-900);
  font-weight: 700;
}
.itinerary-steps {
  position: relative;
  padding-left: 8px;
}
.itinerary-steps::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 92px;
  width: 2px;
  background: var(--gold-300);
}
.itinerary-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
}
.itinerary-step:last-child {
  margin-bottom: 0;
}
.itinerary-time-col {
  width: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.itinerary-time {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.itinerary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px var(--gold-400);
  position: relative;
  z-index: 2;
  margin-right: -5px;
}
.itinerary-content {
  flex: 1;
}
.itinerary-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.itinerary-content p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-600);
  line-height: 1.45;
}

/* ==========================================================================
   PRIORIDAD 2 & 4: PRECIOS MÁS VISIBLES Y DISTINTIVOS
   ========================================================================== */
.tour-price-badge-prominent {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-50), #fff);
  border: 1.5px solid var(--gold-400);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.12);
  margin-top: 10px;
}
.tour-price-badge-prominent .price-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-600);
  letter-spacing: 0.05em;
}
.tour-price-badge-prominent .price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
}
.tour-price-badge-prominent .price-currency {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
}

.ticket-tag-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   PRIORIDAD 2: BARRA FIJA PERSISTENTE EN MÓVIL (STICKY CONVERSION BAR)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 30, 59, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  z-index: 999;
  border-top: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
  }
  body {
    padding-bottom: 64px;
  }
}
.mobile-sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease;
}
.mobile-sticky-btn.btn-wa-action {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}
.mobile-sticky-btn.btn-tours-action {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.35);
}

/* Tooltip dinámico del botón WhatsApp flotante */
.wa-float-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-float-wrap .wa-float {
  position: relative;
  bottom: auto;
  right: auto;
}
@media (max-width: 768px) {
  .wa-float-wrap {
    bottom: 74px;
    right: 18px;
  }
  .wa-float-wrap .wa-float,
  .wa-float {
    bottom: 74px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .wa-float-wrap .wa-float svg,
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}


/* ==========================================================================
   PRIORIDAD 4: MAPA DE RUTAS Y DESTINOS (DESTINATIONS MAP)
   ========================================================================== */
.destinations-map-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-50) 100%);
}
.map-visual-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
  align-items: center;
}
@media (max-width: 860px) {
  .map-visual-container {
    grid-template-columns: 1fr;
  }
}
.map-canvas-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-200);
  box-shadow: var(--shadow-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.map-hub-center {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-400);
  margin-bottom: 24px;
}
.map-hub-center h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--gold-300);
}
.map-hub-center p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}
.map-routes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-100);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}
.map-route-item:hover {
  background: #ffffff;
  border-color: var(--gold-400);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.map-route-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.map-route-info span {
  font-size: 0.78rem;
  color: var(--ink-600);
}
.map-route-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-600);
  white-space: nowrap;
}

