/* ==========================================================================
   L&Z TOURS - STYLES
   Brand styles
   ========================================================================== */

:root {
  --primary-teal: #33696a;
  --primary-teal-hover: #285354;
  --primary-teal-dark: #1d3f40;
  --primary-teal-light: #eef7f7;
  --primary-teal-border: #b9d7d7;
  --accent-gold: #eab308;
  --dark-bg: #081214;
  --topbar-bg: #040c10;
  --text-dark: #1f2937;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --card-radius: 10px;
  --btn-radius: 6px;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s ease-in-out;
}

/* ==========================================
   RESET Y TIPOGRAFÍA BASE
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ==========================================
   BARRA SUPERIOR (TOP BAR)
   ========================================== */
.top-bar {
  background-color: var(--topbar-bg);
  color: #d1d5db;
  font-size: 13px;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1000;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
}

.top-bar-item i {
  color: #5a9fa0;
  font-size: 13px;
}

.top-bar-item:hover {
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d1d5db;
  font-size: 13px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-teal);
  color: #ffffff;
}

/* ==========================================
   HEADER Y MENÚ DE NAVEGACIÓN
   ========================================== */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  max-width: 1320px;
  margin: 0 auto;
}

.logo-img {
  height: 50px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-teal);
}

.nav-arrow {
  font-size: 10px;
  margin-left: 2px;
}

/* Dropdown Destinos */
.dropdown-holder {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown-holder:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: var(--primary-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-teal);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.header-cta-btn:hover {
  background: var(--primary-teal-hover);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================
   SIDE DRAWER (MOBILE)
   ========================================== */
.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.side-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.drawer-header-logo {
  height: 38px;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-body {
  padding: 20px;
  overflow-y: auto;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.drawer-nav-list a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.drawer-contact-info {
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.drawer-contact-info h5 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.drawer-contact-info p {
  margin-bottom: 6px;
}

.btn-drawer-wa {
  display: inline-block;
  margin-top: 12px;
  background: #25d366;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background-color: #111827;
}

.slide-track {
  height: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Hero overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.slide-content {
  max-width: 820px;
  color: #ffffff;
}

.slide-tagline {
  display: block;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #f3f4f6;
  margin-bottom: 6px;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.slide-subtitle {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 24px;
  font-weight: 400;
}

.slide-actions {
  display: flex;
  justify-content: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-teal);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-hero:hover {
  background: var(--primary-teal-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Flechas de navegación del Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 16px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: #ffffff;
  color: var(--primary-teal);
}

.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active, .dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.search-bar-section {
  max-width: 1140px;
  margin: -35px auto 40px auto;
  padding: 0 20px;
  position: relative;
  z-index: 50;
}

.search-bar-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 20px;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1fr;
  gap: 12px;
  align-items: center;
}

.search-input-col {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 14px;
}

.search-icon {
  color: var(--primary-teal);
  font-size: 15px;
}

.search-input, .search-select {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-dark);
}

.btn-search-submit {
  background: var(--primary-teal);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
  min-height: 42px;
}

.btn-search-submit:hover {
  background: var(--primary-teal-hover);
}

/* ==========================================
   ESTRUCTURA DE SECCIONES
   ========================================== */
.section-container {
  padding: 60px 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-gray {
  background-color: var(--bg-light);
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.heading-tagline {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.heading-title {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.heading-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   GRID Y TARJETAS DE TOURS
   ========================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.tour-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.tour-img-holder {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
}

.tour-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.tour-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.tour-meta i {
  color: var(--primary-teal);
  margin-right: 4px;
}

.btn-card-action {
  color: var(--primary-teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================
   BANNER TICKET
   ========================================== */
/* ==========================================
   BOOKING BANNER
   ========================================== */
.trust-banner {
  background: var(--primary-teal);
  color: #ffffff;
  padding: 60px 5%;
  text-align: center;
}

.trust-banner-container {
  max-width: 1140px;
  margin: 0 auto;
}

.trust-tagline {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.trust-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.trust-subtitle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 34px auto;
  line-height: 1.5;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 34px;
  text-align: left;
}

.trust-pillar-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px 18px;
  transition: var(--transition);
}

.trust-pillar-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.trust-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
}

.trust-pillar-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.trust-pillar-item p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.trust-actions {
  display: flex;
  justify-content: center;
}

.btn-trust-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-teal);
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-trust-cta:hover {
  background: var(--primary-teal-light);
  color: var(--primary-teal-hover);
  transform: translateY(-2px);
}

/* ==========================================
   PROMOCIONES MINIMALISTAS
   ========================================== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.promo-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.promo-img-holder {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-card:hover .promo-img {
  transform: scale(1.04);
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-teal);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.promo-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.promo-desc {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.promo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.promo-price-box {
  display: flex;
  flex-direction: column;
}

.promo-price-main {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-teal);
}

.promo-price-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-promo-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-promo-action:hover {
  background: #20ba5a;
  color: #ffffff;
}

/* ==========================================
   TESTIMONIOS
   ========================================== */
.testimonial-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 35px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: opacity 0.35s ease;
}

.testimonial-card.fade-out {
  opacity: 0;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-teal);
}

/* ==========================================
   CLIENTES
   ========================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.client-item {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.client-item:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

.client-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.client-item:hover .client-icon-badge {
  background: var(--primary-teal);
  color: #ffffff;
}

.client-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

/* ==========================================
   SOBRE NOSOTROS Y CONTACTO
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-features i {
  color: var(--primary-teal);
}

.about-location-card {
  background: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
}

.location-card-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-card-title i {
  color: var(--primary-teal);
}

.location-address, .location-contact {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-contact i {
  color: var(--primary-teal);
  width: 16px;
}

.btn-view-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-teal);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.btn-view-map:hover {
  background: var(--primary-teal-hover);
  color: #ffffff;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
  background: #112127;
  color: #9ca3af;
  padding: 50px 5% 20px 5%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 35px;
  max-width: 1280px;
  margin: 0 auto 40px auto;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
}

.footer-socials a:hover {
  background: var(--primary-teal);
}

.footer-heading {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-info-item {
  font-size: 13.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-info-item i {
  color: #5a9fa0;
  margin-top: 4px;
}

.footer-marcas-box {
  background: #ffffff;
  padding: 12px;
  border-radius: 6px;
  display: inline-block;
}

.footer-marcas {
  max-width: 160px;
  display: block;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 12.5px;
  color: #6b7280;
}

/* ==========================================
   WHATSAPP
   ========================================== */
.wa-floating-btn-holder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.wa-floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 8px 16px 8px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.wa-floating-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.wa-btn-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.wa-btn-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.wa-main-icon {
  font-size: 20px;
}

/* ==========================================
   MODAL DETALLE DEL TOUR
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  border-radius: var(--card-radius);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.modal-banner-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.modal-body {
  padding: 24px;
}

.modal-meta-row {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.modal-meta-row i {
  color: var(--primary-teal);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 18px;
}

.modal-section-h {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}

.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.modal-list i {
  color: var(--primary-teal);
  margin-top: 3px;
}

.btn-modal-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
}

.btn-modal-wa:hover {
  background: #20ba5a;
  color: #ffffff;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  .nav-menu, .header-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .slide-title {
    font-size: 36px;
  }
  .slide-tagline {
    font-size: 22px;
  }
  .ticket-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .top-bar-left {
    display: none;
  }
  .top-bar {
    justify-content: flex-end;
  }
  .hero-slider {
    height: 480px;
  }
  .slide-title {
    font-size: 28px;
  }
  .slide-tagline {
    font-size: 18px;
  }
  .slide-subtitle {
    font-size: 15px;
  }
  .search-bar-section {
    margin-top: -20px;
  }
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .ticket-flyers-row {
    flex-direction: column;
    align-items: center;
  }
  .wa-btn-text {
    display: none;
  }
  .wa-floating-btn {
    padding: 8px;
    border-radius: 50%;
  }
}
