/* =============================================
   SKIP LINK – accesibilidad / Lighthouse
============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #0B2545;
  color: #fff;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0B2545;
  --teal:      #1A6B8A;
  --teal-lt:   #2B9BB8;
  --gold:      #F09318;
  --gold-lt:   #F5B840;
  --sand:      #F5F0E8;
  --white:     #FFFFFF;
  --gray-100:  #F7F8FA;
  --gray-200:  #EAECEF;
  --gray-400:  #9CA3AF;
  --gray-600:  #4B5563;
  --gray-800:  #1F2937;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11,37,69,.08);
  --shadow-md: 0 8px 30px rgba(11,37,69,.13);
  --shadow-lg: 0 20px 60px rgba(11,37,69,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.8;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,138,.35);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-white {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   TOPBAR
============================================= */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.topbar-info a:hover { color: var(--gold-lt); }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-social a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.topbar-social a:hover { color: var(--gold-lt); }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  height: 74px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.brand-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 700;
}
.brand-text .brand-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--white);
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-menu a:hover {
  background: var(--gray-100);
  border-left-color: var(--gold);
  color: var(--navy);
}
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(10,25,55,.78) 0%, rgba(14,58,110,.65) 55%, rgba(21,78,128,.55) 100%),
    url('../assets/img/fondo-seccion.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-bg-pattern {
  display: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,107,138,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.3);
  color: var(--gold-lt);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold-lt); }

.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.stats-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stats-strip .container {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

.hero-visual { position: relative; }

.hero-card-main {
  background: rgba(10,25,55,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-card-main h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.hero-card-main p {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.hero-card-sm {
  background: rgba(10,25,55,.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.hero-card-sm-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,107,138,.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-lt);
  font-size: .9rem;
  flex-shrink: 0;
}
.hero-card-sm-icon .fi {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
}
.hero-card-sm h4 { font-size: .85rem; color: var(--white); margin-bottom: 2px; }
.hero-card-sm p  { font-size: .75rem; color: rgba(255,255,255,.75); }

/* =============================================
   SERVICES STRIP
============================================= */
.services-strip {
  background: var(--sand);
  padding: 48px 0;
}
.services-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strip-item { display: flex; align-items: flex-start; gap: 16px; }
.strip-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.strip-text h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.strip-text p  { font-size: .78rem; color: var(--gray-600); }

/* =============================================
   SECTIONS
============================================= */
.section     { padding: 96px 0; }
.section-alt  { background: var(--gray-100); }
.section-dark { background: var(--navy); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* =============================================
   ABOUT
============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,.3);
}
.about-img-inner i    { font-size: 5rem; }
.about-img-inner span { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.about-badge-text .num { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); line-height: 1; }
.about-badge-text .lbl { font-size: .72rem; color: var(--gray-400); }

.about-content h2 { margin-bottom: 20px; }
.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,107,138,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.about-feature p  { font-size: .82rem; color: var(--gray-600); }

.about-director {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.about-director-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.about-director-name  { font-weight: 600; color: var(--navy); font-size: .9rem; }
.about-director-title { font-size: .78rem; color: var(--gray-400); }

/* =============================================
   TOUR CARDS
============================================= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tour-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.tour-thumb-icon { font-size: 3rem; color: rgba(255,255,255,.2); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.tour-meta-item { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--gray-400); }
.tour-meta-item i { color: var(--teal); }
.tour-title { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.tour-desc  { font-size: .85rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 20px; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.tour-price { font-size: .8rem; color: var(--gray-400); }
.tour-price strong { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); }

.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.tour-btn:hover { background: var(--teal); transform: translateY(-2px); }

/* =============================================
   INTERNATIONAL DESTINATIONS LIST
============================================= */
.destinations-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}
.destinations-intro-text .section-title { margin-top: 8px; margin-bottom: 0; }
.destinations-intro-text .section-label { margin-bottom: 0; }
.dest-list { display: flex; flex-direction: column; gap: 14px; }
.dest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--teal);
  transition: var(--transition);
}
.dest-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.dest-item-left { display: flex; align-items: center; gap: 14px; }
.dest-dot { display: none; }
.dest-icon { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.dest-item h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.dest-item p  { font-size: .75rem; color: var(--gray-400); }
.dest-arrow { color: var(--teal); font-size: .85rem; transition: transform var(--transition); }
.dest-item:hover .dest-arrow { transform: translateX(3px); }

/* =============================================
   GALLERY
============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gallery-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: 2 / 4; aspect-ratio: 16/8; }

.gallery-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.25); }
.gallery-placeholder i    { font-size: 2rem; }
.gallery-placeholder span { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 1.6rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cta { text-align: center; margin-top: 32px; }
.gallery-cta p { color: var(--gray-400); font-size: .85rem; margin-bottom: 16px; }
.gallery-cta p i { color: var(--teal); margin-right: 6px; }

/* =============================================
   WHY CHOOSE US
============================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.why-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* =============================================
   FAQ
============================================= */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--gray-100); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .75rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 16px 24px 20px;
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-200);
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   TERMS
============================================= */
.terms-content { max-width: 820px; margin: 0 auto; }
.terms-section { padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.terms-section:last-child { border-bottom: none; }
.terms-section h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.terms-section h3 i { color: var(--teal); font-size: .9rem; }
.terms-section p,
.terms-section li { font-size: .9rem; color: var(--gray-600); line-height: 1.8; }
.terms-section ul { padding-left: 16px; display: flex; flex-direction: column; gap: 6px; }
.terms-section li::before { content: '—'; color: var(--gold); margin-right: 8px; }

/* =============================================
   CONTACT
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition);
}
.contact-info-item:hover { background: var(--sand); transform: translateX(4px); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-info-text label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-info-text a,
.contact-info-text span { font-size: .9rem; font-weight: 500; color: var(--navy); }
.contact-info-text a:hover { color: var(--teal); }

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  background: var(--gray-200);
  border: none;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: .85rem; color: var(--gray-400); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,138,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,107,138,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
  font-size: 1.5rem;
}
.form-success h4 { color: var(--navy); margin-bottom: 8px; }
.form-success p  { color: var(--gray-400); font-size: .85rem; }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #D4700A 100%); padding: 72px 0; }
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,.8); margin-top: 8px; font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--gray-800); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.footer-brand .brand-sub  { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.8; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '';
  display: block;
  width: 6px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-col ul a:hover { color: var(--gold-lt); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .83rem; }
.footer-contact-item i { color: var(--gold); width: 16px; text-align: center; flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-lt); }

.sernatur-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 16px;
}
.sernatur-badge i { color: var(--gold); }
.sernatur-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.sernatur-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sernatur-text span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8); }
}

.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-800);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* =============================================
   UTILITIES
============================================= */
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-white { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   FOCUS VISIBLE – accesibilidad teclado
============================================= */
:focus-visible {
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* =============================================
   REDUCED MOTION – accesibilidad / Lighthouse
============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; padding-block: 60px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 400px; }
  .destinations-intro { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; }
  .gallery-item:nth-child(5) { grid-column: 1 / -1; }
  .services-strip .container { grid-template-columns: 1fr; }
  .stats-strip .container { gap: 40px; flex-wrap: wrap; justify-content: space-around; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar { display: none; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRÓXIMOS TOURS
============================================= */
.prox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prox-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.prox-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prox-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.prox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prox-card:hover .prox-thumb img { transform: scale(1.05); }

.prox-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--white);
}
.prox-badge.nacional      { background: var(--teal); }
.prox-badge.internacional { background: var(--navy); }
.prox-badge.norte         { background: #D4700A; }

.prox-date-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10,25,55,.82);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
}
.prox-date-pill i { color: var(--gold); font-size: .65rem; }

.prox-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prox-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prox-desc {
  font-size: .82rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
}

.prox-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prox-includes li {
  font-size: .8rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.prox-includes li i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .7rem;
}
.prox-includes li .fa-check             { color: var(--teal); }
.prox-includes li .fa-triangle-exclamation { color: #E07800; }
.prox-includes li .fa-circle-info       { color: var(--gray-400); }
.prox-desc-wrap { margin-bottom: 14px; }
.prox-expandable { font-size: .82rem; color: var(--gray-600); line-height: 1.65; margin: 0 0 6px; }
.prox-nota { font-size: .78rem; color: #E07800; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 6px; }
.prox-nota i { margin-top: 2px; flex-shrink: 0; }
.btn-ver-mas {
  background: none;
  border: none;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
}
.btn-ver-mas:hover { color: var(--navy); }

.prox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  gap: 12px;
}
.prox-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.prox-price span {
  font-size: .72rem;
  font-weight: 400;
  color: var(--gray-400);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(240,147,24,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--white);
}
.btn-sm {
  padding: 9px 16px;
  font-size: .8rem;
  gap: 6px;
}

/* Responsive próximos tours */
@media (max-width: 1100px) {
  .prox-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .prox-grid { grid-template-columns: 1fr; }
}

/* ── Gallery ─────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gal-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  background: var(--gray-200);
}
.gal-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
  max-width: none;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-show-more { display: flex; justify-content: center; margin-top: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img,
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  z-index: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 1.3rem;
  padding: 14px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Reviews slider */
.reviews-slider { overflow: hidden; }
.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 3px; }
.review-text { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 20px; flex: 1; font-style: italic; }
.review-author { font-weight: 600; color: #fff; font-size: .88rem; }
.review-date { font-size: .73rem; color: rgba(255,255,255,.38); margin-top: 3px; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.reviews-btn {
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.reviews-btn:hover { background: rgba(255,255,255,.28); }
.reviews-dots { display: flex; gap: 8px; }
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 20px; padding: 5px 16px;
  font-size: .78rem; color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc(100% - 0px); }
}
