/* ============================================================
   TRAVELIST CLUB — Estilos principales
   Brand: Teal #0e9e96 · Gold #c9a84c · Dark #1a2332
   ============================================================ */

/* ── Variables ── */
:root {
  --teal:        #0e9e96;
  --teal-dark:   #0a7b74;
  --teal-light:  #14c4bb;
  --gold:        #c9a84c;
  --gold-dark:   #a8882e;
  --gold-light:  #e0bf6a;
  --dark:        #1a2332;
  --dark-soft:   #2c3e55;
  --gray:        #6b7280;
  --light-gray:  #9ca3af;
  --border:      #e5e7eb;
  --bg:          #f7f9fc;
  --white:       #ffffff;
  --success:     #059669;
  --danger:      #dc2626;
  --warning:     #d97706;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.13);
  --shadow-teal: 0 4px 20px rgba(14,158,150,.25);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.30);

  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 999px;

  --transition:  .2s ease;
  --font:        'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--dark);
}

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1, h2, h3 { font-family: var(--font-heading); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

/* ── Lucide icons ── */
.lucide {
  display: inline-block;
  vertical-align: -0.15em;
  stroke-width: 1.75;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.hero-trust-item .lucide { color: var(--gold); }
.trust-item .lucide      { color: var(--teal); }
.booking-trust-item .lucide { color: var(--teal); }
.submit-trust-item .lucide  { color: var(--teal); }
.gstep-ico .lucide          { color: var(--teal); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: .5rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 6px 24px rgba(201,168,76,.4); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }

.btn-ghost {
  background: transparent;
  color: var(--gray);
  padding: .6rem 1rem;
}
.btn-ghost:hover { color: var(--teal); }

.btn-sm { padding: .5rem 1rem; font-size: .8rem; }
.btn-lg { padding: .95rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1da851; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-danger  { background: #fee2e2; color: var(--danger); }
.badge-warning { background: #fef3c7; color: var(--warning); }
.badge-new     { background: #d1fae5; color: var(--success); }
.badge-teal    { background: rgba(14,158,150,.1); color: var(--teal); }
.badge-category {
  background: rgba(14,158,150,.1);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.navbar-logo img {
  height: 40px;
  width: auto;
}
.navbar-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.5px;
}
.navbar-logo span em {
  color: var(--gold);
  font-style: normal;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.navbar-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-soft);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a:hover { color: var(--teal); }
.navbar-links a.active { color: var(--teal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: .3rem; font-size: .9rem; font-weight: 500; color: var(--dark-soft); transition: color var(--transition); cursor: pointer; }
.nav-dropdown-toggle:hover { color: var(--teal); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: .5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .875rem;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--teal); }

.navbar-cta { margin-left: .5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: white;
  z-index: 899;
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.mobile-nav .btn { margin-top: 1rem; }

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem;
  z-index: 800;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.mobile-cta-bar .btn { font-size: .9rem; padding: .8rem 1rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,.85) 0%, rgba(14,158,150,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
  padding: 5rem 0 3rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  border-radius: var(--radius-full);
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  gap: 1.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.hero-trust-item svg, .hero-trust-item .ico { color: var(--gold); }

/* ── SECTION BASE ── */
section { padding: 5rem 0; }
section.bg-light { background: var(--bg); }
section.bg-dark { background: var(--dark); color: white; }
section.bg-teal { background: var(--teal); color: white; }
.section-head { text-align: center; margin-bottom: 3rem; }

/* ── BENEFIT CARDS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(14,158,150,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}
.benefit-icon .lucide { color: var(--teal); stroke: var(--teal); }
.benefit-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .875rem; color: var(--gray); }

/* ── TRIP FILTERS ── */
.trip-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--gray);
  background: white;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

/* ── TRIP CARDS ── */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.75rem;
}
.trip-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.trip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.trip-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.trip-card:hover .trip-card-img img { transform: scale(1.05); }
.trip-card-img-fallback {
  width: 100%;
  height: 100%;
}
.trip-card-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.trip-card-badge.danger  { background: var(--danger); color: white; }
.trip-card-badge.warning { background: var(--warning); color: white; }
.trip-card-badge.new     { background: var(--gold); color: var(--dark); }

.trip-card-places {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(26,35,50,.75);
  color: white;
  border-radius: var(--radius-full);
  padding: .25rem .65rem;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .3rem;
  backdrop-filter: blur(4px);
}

.trip-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trip-card-cat { margin-bottom: .5rem; }
.trip-card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: .25rem; }
.trip-card-subtitle { font-size: .82rem; color: var(--gray); margin-bottom: .85rem; }
.trip-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.trip-card-meta span { display: flex; align-items: center; gap: .25rem; }
.trip-card-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 1rem;
  margin-top: auto;
}
.trip-card-price small {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray);
}
.trip-card-actions {
  display: flex;
  gap: .5rem;
}
.trip-card-actions .btn { flex: 1; font-size: .78rem; padding: .6rem .75rem; justify-content: center; }
.btn-pdf {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--dark-soft);
  flex: 0 0 auto !important;
}
.btn-pdf:hover { background: var(--border); transform: none; }

/* ── PLACES BAR ── */
.places-bar { margin-bottom: .85rem; }
.places-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--gray);
  margin-bottom: .35rem;
}
.places-bar-label strong { color: var(--danger); }
.places-bar-track {
  height: 5px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.places-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: var(--radius-full);
  transition: width .6s ease;
}
.places-bar-fill.urgent { background: var(--danger); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  border: 3px solid white;
  box-shadow: var(--shadow-teal);
}
.step-item h3 { font-size: .95rem; margin-bottom: .3rem; }
.step-item p { font-size: .82rem; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: var(--dark-soft); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: .95rem;
}
.testimonial-name { font-weight: 700; font-size: .875rem; }
.testimonial-trip { font-size: .75rem; color: var(--gray); }

/* ── TRUST BAR ── */
.trust-bar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-soft);
}
.trust-item .ico { font-size: 1.2rem; color: var(--teal); }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,35,50,.85) 100%);
}
.category-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}
.category-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.category-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.category-card p { font-size: .8rem; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.category-card .btn-sm { align-self: flex-start; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); color: white; border-radius: var(--radius-full); }
.category-card .btn-sm:hover { background: white; color: var(--dark); transform: none; }

/* ── LEAD FORM ── */
.lead-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  color: white;
  padding: 5rem 0;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead-text h2 { color: white; margin-bottom: .75rem; }
.lead-text p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 1.5rem; }
.lead-badge-urgency {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  border-radius: var(--radius-full);
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.lead-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.lead-form-wrap h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--dark); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .35rem; color: var(--dark-soft); }
.form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: border-color var(--transition);
  background: white;
  color: var(--dark);
}
.form-control:focus { outline: none; border-color: var(--teal); }
.form-control::placeholder { color: var(--light-gray); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: .72rem; color: var(--light-gray); margin-top: .3rem; }
.form-check { display: flex; gap: .6rem; align-items: flex-start; }
.form-check input { margin-top: .15rem; accent-color: var(--teal); }
.form-check label { font-size: .82rem; color: var(--gray); line-height: 1.45; }
.form-check a { color: var(--teal); text-decoration: underline; }

/* ── CTA FINAL ── */
.cta-final {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
}
.cta-final h2 { color: white; margin-bottom: .75rem; }
.cta-final h2 em { color: var(--gold); font-style: normal; }
.cta-final p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-toggle:hover { color: var(--teal); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  color: var(--teal);
  font-weight: 800;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── TRIP DETAIL PAGE ── */
.trip-hero {
  position: relative;
  height: 460px;
  background: var(--dark);
  overflow: hidden;
}
.trip-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}
.trip-hero-fallback { width: 100%; height: 100%; }
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,35,50,.9) 100%);
}
.trip-hero-content {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  color: white;
}
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 .4rem; }
.trip-hero-content h1 { color: white; margin-bottom: .4rem; font-size: clamp(1.6rem, 4vw, 2.6rem); }
.trip-hero-content p { color: rgba(255,255,255,.8); font-size: 1rem; }
.trip-hero-pills { display: flex; gap: .6rem; margin-top: .85rem; flex-wrap: wrap; }
.trip-pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  border-radius: var(--radius-full);
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Trip layout */
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
}
.trip-main h2 { font-size: 1.2rem; margin: 2rem 0 1rem; color: var(--dark); padding-bottom: .5rem; border-bottom: 2px solid var(--border); }
.trip-main h2:first-child { margin-top: 0; }
.trip-description { font-size: .95rem; color: var(--dark-soft); line-height: 1.75; margin-bottom: 1.5rem; }

/* Highlights */
.highlights-list { display: flex; flex-direction: column; gap: .6rem; }
.highlight-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; }
.highlight-item::before { content: '✓'; color: var(--teal); font-weight: 800; margin-top: .05rem; flex-shrink: 0; }

/* Includes */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.includes-col h3 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .75rem; }
.includes-col.yes h3 { color: var(--success); }
.includes-col.no h3  { color: var(--danger); }
.includes-list li { display: flex; gap: .5rem; font-size: .85rem; color: var(--dark-soft); padding: .3rem 0; }
.includes-list li::before { flex-shrink: 0; margin-top: .05rem; }
.includes-col.yes li::before { content: '✓'; color: var(--success); font-weight: 800; }
.includes-col.no  li::before { content: '✗'; color: var(--danger); font-weight: 800; }

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; gap: 0; }
.itinerary-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.itinerary-item:last-child { border-bottom: none; }
.itinerary-day {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(14,158,150,.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.itinerary-day .day-label { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.itinerary-day .day-num  { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.itinerary-content h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.itinerary-content p  { font-size: .85rem; color: var(--gray); }

/* Booking sidebar */
.booking-card {
  position: sticky;
  top: 84px;
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-card-header {
  background: var(--teal);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.booking-card-header .price-label { font-size: .78rem; opacity: .85; margin-bottom: .2rem; }
.booking-card-header .price { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.booking-card-header .price-note { font-size: .72rem; opacity: .75; margin-top: .25rem; }
.booking-card-body { padding: 1.5rem; }
.booking-meta { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.booking-meta-item { display: flex; gap: .6rem; font-size: .83rem; color: var(--dark-soft); align-items: center; }
.booking-meta-item .ico { color: var(--teal); width: 16px; flex-shrink: 0; }
.booking-urgency {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius);
  padding: .6rem .85rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--danger);
}
.booking-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.booking-deposit { font-size: .8rem; color: var(--gray); margin-bottom: 1rem; }
.booking-deposit strong { color: var(--teal); }
.booking-trust {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.booking-trust-item { display: flex; gap: .45rem; font-size: .75rem; color: var(--gray); align-items: center; }
.booking-trust-item .ico { color: var(--success); }
.booking-whatsapp { text-align: center; margin-top: 1rem; }
.booking-whatsapp a { font-size: .82rem; color: #25D366; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }

/* ── BOOKING / RESERVAR PAGE ── */
.reservar-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
}
.reservar-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.reservar-form-wrap h2 { font-size: 1.35rem; margin-bottom: .4rem; }
.reservar-form-wrap .reservar-sub { font-size: .9rem; color: var(--gray); margin-bottom: 2rem; }
.form-section-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin: 1.75rem 0 .85rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid rgba(14,158,150,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-group { display: flex; flex-direction: column; gap: .5rem; }
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.radio-option:has(input:checked) { border-color: var(--teal); background: rgba(14,158,150,.04); }
.radio-option input { margin-top: .15rem; accent-color: var(--teal); }
.radio-option-label { font-size: .875rem; font-weight: 600; }
.radio-option-note { font-size: .75rem; color: var(--gray); }
.form-check-link a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.submit-block { margin-top: 1.75rem; }
.submit-trust {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.submit-trust-item { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: var(--gray); }
.submit-trust-item .ico { color: var(--success); }

/* Reserva sidebar */
.reservar-sidebar { position: sticky; top: 84px; }
.reservar-trip-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.reservar-trip-img { height: 160px; object-fit: cover; width: 100%; }
.reservar-trip-img-fallback { height: 160px; width: 100%; }
.reservar-trip-info { padding: 1.25rem; }
.reservar-trip-info h3 { font-size: 1rem; margin-bottom: .3rem; }
.reservar-trip-meta { font-size: .8rem; color: var(--gray); margin-bottom: .75rem; }
.reservar-price-summary { border-top: 1px solid var(--border); padding-top: .75rem; }
.price-row { display: flex; justify-content: space-between; font-size: .83rem; margin-bottom: .3rem; color: var(--dark-soft); }
.price-row.total { font-size: 1rem; font-weight: 800; color: var(--teal); margin-top: .5rem; padding-top: .5rem; border-top: 2px solid var(--border); }
.price-row.deposit { color: var(--success); font-weight: 700; }

.block-badge {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.block-badge .block-icon { font-size: 2rem; margin-bottom: .4rem; }
.block-badge h3 { font-size: 1rem; color: white; margin-bottom: .3rem; }
.block-badge p { font-size: .78rem; color: rgba(255,255,255,.85); }

/* ── GRACIAS PAGE ── */
.gracias-wrap {
  max-width: 640px;
  margin: 5rem auto;
  text-align: center;
  padding: 0 1.25rem;
}
.gracias-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.gracias-wrap h1 { margin-bottom: 1rem; }
.gracias-wrap p { color: var(--gray); font-size: 1rem; margin-bottom: 1rem; }
.gracias-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.gracias-step {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.gracias-step .gstep-ico { font-size: 1.75rem; margin-bottom: .5rem; }
.gracias-step h4 { font-size: .875rem; margin-bottom: .3rem; }
.gracias-step p { font-size: .78rem; color: var(--gray); margin: 0; }
.gracias-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.gracias-note { font-size: .78rem; color: var(--light-gray); margin-top: 1.5rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 700;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-size: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { color: white; font-size: 1.2rem; margin-bottom: .3rem; }
.footer-brand h3 em { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: .83rem; margin-bottom: 1rem; line-height: 1.65; }
.footer-brand .legal-note { font-size: .72rem; opacity: .55; }
.footer h4 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; gap: .5rem; font-size: .83rem; margin-bottom: .5rem; align-items: flex-start; }
.footer-contact-item .ico { color: var(--teal); flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: white; }
.footer-trust-icons { display: flex; gap: 1rem; align-items: center; }

/* ── PAYMENT LOGOS ── */
.payment-logos { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; margin-top: .75rem; }
.payment-logo {
  height: 22px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  letter-spacing: .5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trip-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .reservar-layout { grid-template-columns: 1fr; }
  .reservar-sidebar { position: static; }
  .lead-inner { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  .wa-float { bottom: 5.5rem; }
  .categories-grid { grid-template-columns: 1fr; gap: 1rem; }
  .trips-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.25rem; }
  .hero { min-height: 100vh; }
  .hero-content { padding: 2rem 0 5rem; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gracias-steps { grid-template-columns: 1fr; }
  .trip-hero { height: 320px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .trip-card-actions { flex-direction: column; }
  .trip-card-actions .btn { flex: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
