/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM (60-30-10 RULE)
=========================================== */
:root {
  /* 60% Neutral & Backgrounds */
  --bg-primary: #FDFBF7;
  /* Arena claro / Blanco cálido */
  --bg-card: #FFFFFF;
  /* Blanco puro para tarjetas y modales */
  --bg-secondary: #FAF7F2;
  /* Arena suave para secciones contrastantes (Tours / Catálogo) */
  --border-light: #E8E2D8;

  /* 30% Brand & Structure */
  --color-primary: #C85A32;
  /* Terracota / Barro oaxaqueño */
  --color-primary-dark: #A54320;
  --color-primary-light: #F9ECE6;
  --text-main: #2B231D;
  /* Café carbón profundo para títulos y texto */
  --text-muted: #665A52;
  --text-light: #8C7E74;

  /* Secondary Accents */
  --color-accent: #E0A93B;
  /* Ocre / Flor de cempasúchil */
  --color-accent-light: #FFF8EB;

  /* 10% Conversion Focal Points */
  --color-whatsapp: #25D366;
  /* Verde oficial WhatsApp */
  --color-whatsapp-hover: #1EBE5A;
  --color-whatsapp-dark: #128C7E;
  --color-white: #FFFFFF;

  /* Fonts & Shadows */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(43, 35, 29, 0.05);
  --shadow-md: 0 4px 16px rgba(43, 35, 29, 0.08);
  --shadow-lg: 0 10px 30px rgba(43, 35, 29, 0.12);
  --shadow-wa: 0 4px 20px rgba(37, 211, 102, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}

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

/* Reset & Global Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
}

button,
input,
select,
textarea,
p,
span,
li,
a,
label,
strong,
b {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hero-title span,
.hero-subtitle,
.highlight-text,
.btn span,
.btn-search span,
.btn-whatsapp-header span,
.destino-content p,
.destino-name,
.destino-count {
  background-color: transparent !important;
  background: transparent !important;
}


/* Tipografía de Títulos y Encabezados (Playfair Display) */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-logo,
.logo-text,
.section-title,
.section-subtitle,
.section-description,
.hero-title,
.hero-stamp-badge,
.hero-badge,
.trust-text strong,
.trust-text span,
.destino-name,
.destino-count,
.destino-tag,
#modal-region-badge,
#modal-micro-badges span,
#modal-cta-btn,
#destinoModal .mt-3.pt-3 p,
.destino-tours-count,
.step-number,
.step-title,
.step-desc,
.btn-steps-cta,
.footer-heading,
.location-building-name,
.modal-title,
.social-card h3,
.social-info h4,
.faq-trigger,
.accordion-header,
.quote-watermark,
.tour-category,
.tour-modality,
.tour-summary,
.tour-features li,
.tour-price-box,
.price-label,
.price-value,
.price-per,
.badge,
.badge-glass,
.badge-priority,
.badge-duration {
  font-family: 'Playfair Display', serif !important;
  font-variant-numeric: lining-nums tabular-nums !important;
  font-feature-settings: "lnum" 1, "tnum" 1 !important;
  line-height: 1.25;
}

/* Animación Avanzada de Botón CTA (Gradiente Fluido + Radar de Pulsación + Rebote Elástico) */
@keyframes ctaGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes ctaPulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 90, 50, 0.55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(200, 90, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 90, 50, 0);
  }
}

#modal-cta-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #C85A32 0%, #E26E45 50%, #9E3E1C 100%) !important;
  background-size: 200% 200% !important;
  animation: ctaGradientMove 4s ease infinite, ctaPulseRing 2.5s infinite !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

#modal-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease-in-out;
  pointer-events: none;
}

#modal-cta-btn:hover::before {
  left: 140%;
}

#modal-cta-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 14px 28px -5px rgba(200, 90, 50, 0.5) !important;
}

#modal-cta-btn:active {
  transform: translateY(0) scale(0.96) !important;
}

#modal-cta-btn .cta-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#modal-cta-btn:hover .cta-arrow {
  transform: translateX(7px) scale(1.3);
}

/* Animación Exclusiva para Botón 'Explorar Tours y Rutas' (Levitación 3D + Aura Pulsante + Destello de Luz + Impulso Cohete) */
@keyframes stepsBtnLevitatePulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px -4px rgba(200, 90, 50, 0.35), 0 0 0 0 rgba(226, 110, 69, 0.4);
  }

  50% {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 20px 40px -4px rgba(200, 90, 50, 0.55), 0 0 0 8px rgba(226, 110, 69, 0);
  }
}

/* Nueva Animación al pasar el cursor (Hover Halo Aura Pulsante + Elevación 3D) */
@keyframes stepsBtnHoverPulse {

  0%,
  100% {
    box-shadow: 0 16px 36px -4px rgba(200, 90, 50, 0.65), 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 22px rgba(226, 110, 69, 0.5), inset 0 1.5px 1px rgba(255, 255, 255, 0.6);
  }

  50% {
    box-shadow: 0 24px 48px -4px rgba(200, 90, 50, 0.85), 0 0 0 6px rgba(255, 255, 255, 0.75), 0 0 38px rgba(240, 126, 85, 0.85), inset 0 1.5px 1px rgba(255, 255, 255, 0.8);
  }
}

.btn-steps-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #C85A32 0%, #E26E45 50%, #B84A22 100%);
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
  animation: stepsBtnLevitatePulse 3.2s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 1;
}

/* Hover con animación exclusiva de Aura Halo Neón + Elevación 3D */
.btn-steps-cta:hover {
  animation: stepsBtnHoverPulse 1.8s ease-in-out infinite !important;
  transform: translateY(-6px) scale(1.07) !important;
  background: linear-gradient(135deg, #E26E45 0%, #F07E55 50%, #C85A32 100%);
}

.btn-steps-cta,
.btn-steps-cta span,
.btn-steps-cta:hover span,
.btn-steps-cta:visited span,
.btn-steps-cta:visited {
  color: #ffffff !important;
}

.btn-steps-cta:active {
  transform: translateY(-1px) scale(0.97) !important;
  box-shadow: 0 6px 16px -2px rgba(200, 90, 50, 0.4) !important;
}

.btn-steps-cta svg {
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-steps-cta:hover svg {
  transform: translateX(8px) scale(1.15);
}

/* Tipografía de Elementos UI y Botones (Plus Jakarta Sans) */
.btn-search,
.trust-text strong,
.trust-text span,
.filter-label,
.trigger-label,
.item-title {
  font-family: var(--font-body) !important;
}

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

ul {
  list-style: none;
}

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

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

.text-center {
  text-align: center;
}

.margin-top-lg {
  margin-top: 40px;
}

/* Section Header Typography */
.section-header {
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  display: inline-block;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-description {
  font-family: 'Playfair Display', serif !important;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================
   BUTTONS SYSTEM
=========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

/* Botón Atención Rápida estilizado con clases Tailwind */

/* Animación Exclusiva de Radar & Rebotador Elástico para Botón 'Apartar por WhatsApp' */
@keyframes waCardRadarPulse {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55), 0 0 0 6px rgba(37, 211, 102, 0);
  }
}

@keyframes waIconElasticSpin {
  0% {
    transform: scale(1) rotate(0deg);
  }

  30% {
    transform: scale(1.35) rotate(-18deg);
  }

  60% {
    transform: scale(1.15) rotate(12deg);
  }

  100% {
    transform: scale(1.22) rotate(0deg);
  }
}

.btn-whatsapp-card {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
  color: #FFFFFF !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  animation: waCardRadarPulse 2.8s ease-in-out infinite;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.btn-whatsapp-card span {
  color: #FFFFFF !important;
  font-weight: 700;
}

.btn-whatsapp-card svg {
  fill: #FFFFFF !important;
  color: #FFFFFF !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-whatsapp-card:hover {
  background: linear-gradient(135deg, #1EBE5A 0%, #128C7E 100%);
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
}

.btn-whatsapp-card:hover svg {
  animation: waIconElasticSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.btn-whatsapp-card:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp-submit {
  width: 100%;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  padding: 16px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-wa);

}

.btn-whatsapp-submit:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-search {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
}

.btn-search:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================
   1. HEADER / NAVBAR
=========================================== */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(43, 35, 29, 0.05);
  border-bottom: 1px solid #EAE5DE;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navbar-header.scrolled {
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(43, 35, 29, 0.08);
  border-bottom-color: #EAE5DE;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-header.scrolled .navbar-container {
  height: 60px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.accent-text,
.brand-logo .accent-text {
  color: #C85A32 !important;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.navbar-header.scrolled .brand-logo-icon {
  width: 34px;
  height: 34px;
}

.brand-logo:hover .brand-logo-icon {
  transform: rotate(15deg) scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(200, 90, 50, 0.35));
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
}

/* Animación de Botón Atención Rápida */
.btn-whatsapp-header,
.btn-whatsapp-header span {
  font-family: 'Playfair Display', serif !important;
}

.btn-whatsapp-header {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
  background-color: #1EBE5A !important;
}

.btn-whatsapp-header:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp-header:hover .whatsapp-icon-shake {
  animation: wa-shake 0.45s ease-in-out infinite alternate;
}

@keyframes wa-shake {
  0% {
    transform: rotate(0deg) scale(1);
  }

  30% {
    transform: rotate(-14deg) scale(1.2);
  }

  70% {
    transform: rotate(14deg) scale(1.2);
  }

  100% {
    transform: rotate(0deg) scale(1.1);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 32px;
}

.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  box-shadow: 0 2px 6px rgba(200, 90, 50, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100000;
  position: relative;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
    height: calc(100dvh - 80px) !important;
    margin: 0 !important;
    background-color: rgba(253, 251, 247, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid var(--border-light);
    padding: 36px 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease !important;
    z-index: 99998 !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-menu ul {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .nav-menu .nav-link {
    font-size: 1.15rem !important;
    padding: 10px 20px !important;
    letter-spacing: 0.08em !important;
    color: #2B231D !important;
  }
}

/* ==========================================
   2. HERO SECTION
=========================================== */
.hero-section {
  position: relative;
  background-color: #FDFBF7;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, rgba(253, 251, 247, 0) 100%),
    linear-gradient(180deg, rgba(253, 251, 247, 0.65) 0%, rgba(253, 251, 247, 0.72) 55%, rgba(253, 251, 247, 0.88) 100%),
    url('./images/hero_agave_bg.jpg');
  background-position: center 45%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 140px !important;
  padding-bottom: 120px;
  margin-top: 0 !important;
  scroll-margin-top: 80px;
  overflow: visible;
}

.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-light);
  border: 1px solid rgba(224, 169, 59, 0.4);
  color: #926600;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Sello Postal / Timbre de Viaje Tradicional */
.hero-stamp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px double rgba(200, 90, 50, 0.65);
  color: #C85A32;
  font-family: var(--font-body) !important;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(43, 35, 29, 0.12);
  margin-bottom: 16px;
  position: relative;
}

.hero-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 16px auto;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(253, 251, 247, 0.9);
}

.hero-title span,
.hero-title .highlight-text {
  font-family: var(--font-heading) !important;
  color: #C85A32;
  position: relative;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 16px auto 32px auto;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

/* Filtro Rápido Visual (Cápsula Flotante Premium) */
.search-filter-card {
  position: relative;
  z-index: 50;
  overflow: visible;
  width: 100%;
  max-width: 1180px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 9999px;
  padding: 10px 12px 10px 28px;
  box-shadow: 0 16px 48px rgba(43, 35, 29, 0.12);
  border: 1px solid rgba(234, 229, 222, 0.9);
  margin: 0 auto 36px auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.search-filter-card:hover {
  box-shadow: 0 20px 56px rgba(43, 35, 29, 0.16);
  border-color: rgba(200, 90, 50, 0.35);
}

.filter-grid {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.filter-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 4px 18px;
  position: relative;
  justify-content: center;
}

.filter-divider {
  width: 1px;
  height: 38px;
  background-color: #EAE5DE;
  flex-shrink: 0;
}

.filter-label,
.filter-label span {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.775rem;
  font-weight: 700;
  color: #665A52;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.filter-icon {
  flex-shrink: 0;
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter-select {
  width: 100%;
  padding: 2px 22px 2px 0;
  border: none;
  background: transparent;
  color: #2B231D;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.select-chevron {
  position: absolute;
  right: 2px;
  pointer-events: none;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.filter-select:focus+.select-chevron {
  transform: rotate(180deg);
  stroke: #C85A32;
}

/* Custom Dropdown Component */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-trigger {
  width: 100%;
  padding: 2px 22px 2px 0;
  border: none;
  background: transparent;
  color: #2B231D;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.custom-dropdown-trigger .trigger-label {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-dropdown-trigger[aria-expanded="true"] .select-chevron {
  transform: rotate(180deg);
  stroke: #C85A32;
}

/* Floating Menu Container (Configuración compartida 3 dropdowns) */
.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  width: max-content;
  max-width: 320px;
  max-height: 220px;
  overflow-y: auto !important;
  overflow-x: hidden;
  z-index: 9999 !important;
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #EBE6E0;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease;
}

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

/* Custom Scrollbar Limpio */
.custom-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: #E5E0DA;
  border-radius: 9999px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #C85A32;
}

/* Dropdown Items */
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background-color: #F7F4EE;
}

.dropdown-item:hover .item-title {
  color: #C85A32;
}

.dropdown-item.selected {
  background-color: #F9ECE6;
}

.dropdown-item.selected .item-title {
  color: #C85A32;
  font-weight: 800;
}

.item-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2B231D;
  transition: color 0.15s ease;
}

.item-badge {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.75rem;
  font-weight: 600;
  color: #78716C;
  background-color: rgba(120, 113, 108, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.dropdown-item:hover .item-badge,
.dropdown-item.selected .item-badge {
  background-color: rgba(200, 90, 50, 0.12);
  color: #C85A32;
}

.filter-action-group {
  flex-shrink: 0;
  padding-left: 8px;
  display: flex;
  align-items: center;
  height: 100%;
}

.btn-search {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background-color: #C85A32 !important;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 9999px !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(200, 90, 50, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
}

.btn-search::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #E05326, #9E3716);
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: inherit;
}

.search-btn-icon,
.btn-search span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-search:hover::before {
  left: 0;
}

.btn-search:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 28px rgba(200, 90, 50, 0.55) !important;
}

.btn-search:hover .search-btn-icon {
  animation: search-lupa-bounce 0.5s ease-in-out infinite alternate;
}

.btn-search:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 3px 10px rgba(200, 90, 50, 0.3) !important;
}

@keyframes search-lupa-bounce {
  0% {
    transform: rotate(0deg) scale(1.1);
  }

  50% {
    transform: rotate(18deg) scale(1.28) translateY(-1px);
  }

  100% {
    transform: rotate(-10deg) scale(1.18);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .search-filter-card {
    border-radius: 24px;
    padding: 16px 20px;
  }

  .filter-grid {
    flex-wrap: wrap;
    gap: 12px;
  }

  .filter-group {
    flex: 1 1 45%;
    padding: 6px 10px;
  }

  .filter-divider {
    display: none;
  }

  .filter-action-group {
    flex: 1 1 100%;
    padding-left: 0;
    margin-top: 4px;
  }

  .btn-search {
    width: 100%;
    border-radius: 14px;
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .filter-group {
    flex: 1 1 100%;
    border-bottom: 1px solid #EAE5DE;
    padding-bottom: 10px;
  }

  .filter-group:last-of-type {
    border-bottom: none;
  }
}

/* Insignias de Confianza (Trust Badges Optimizado) */
.trust-badges-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #EFEAE4;
  padding: 12px 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(43, 35, 29, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 35, 29, 0.1);
  border-color: rgba(200, 90, 50, 0.35);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  background-color: #F5EBE1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(200, 90, 50, 0.1);
}

.trust-text strong {
  display: block;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C1917;
  line-height: 1.25;
}

.trust-text span {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.8rem;
  color: #78716C;
  line-height: 1.3;
}

/* ==========================================
   3. CÓMO FUNCIONA LA RESERVA (TIMELINE SECUENCIAL)
=========================================== */
.steps-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #FAF5EE 0%, #F6F1EA 60%, #EBE4D9 100%);
  overflow: hidden;
}

/* Detalle Ambiental de Marca (Brújula / Rosa de los Vientos de Fondo) */
.steps-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 680px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='95' fill='none' stroke='%23C85A32' stroke-width='2' stroke-dasharray='6 4'/%3E%3Ccircle cx='100' cy='100' r='88' fill='none' stroke='%23E0A93B' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='100' r='72' fill='none' stroke='%23C85A32' stroke-width='1.5' stroke-dasharray='4 3'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23E0A93B' stroke-width='1.2'/%3E%3Cpolygon points='100,8 110,90 192,100 110,110 100,192 90,110 8,100 90,90' fill='%23C85A32' stroke='%23C85A32' stroke-width='0.5'/%3E%3Cpolygon points='100,30 107,93 170,100 107,107 100,170 93,107 30,100 93,93' fill='%23E0A93B' stroke='%23E0A93B' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='4' fill='%23C85A32'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.steps-wrapper {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 50px auto;
}

/* Línea Conectora de Pasos (Desktop Timeline Flow) */
.steps-connecting-line {
  display: block;
  position: absolute;
  top: 70px;
  /* Alineado exactamente al centro vertical de los iconos de 64px */
  left: 16.5%;
  /* Empieza exactamente en el centro del icono 01 */
  right: 16.5%;
  /* Termina exactamente en el centro del icono 03 */
  height: 2px;
  border-top: 2px dashed #E5DDD5;
  z-index: 1;
}

@media (max-width: 992px) {
  .steps-connecting-line {
    display: none;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.step-card {
  position: relative;
  background-color: #FFFFFF;
  padding: 38px 30px;
  border-radius: 20px;
  border: 1px solid #F0EAE1;
  box-shadow: 0 4px 16px rgba(43, 35, 29, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(43, 35, 29, 0.12);
  border-color: rgba(200, 90, 50, 0.35);
}

/* Número de Fondo / Marca de Agua */
.step-number {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(200, 90, 50, 0.09);
  line-height: 1;
  transition: transform 0.35s ease, color 0.35s ease;
  user-select: none;
}

.step-card:hover .step-number {
  transform: scale(1.08);
  color: rgba(200, 90, 50, 0.22);
}

/* Iconos circulares suaves por tipo */
.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.step-icon-compass {
  background-color: #FBEFEA;
}

.step-icon-whatsapp {
  background-color: #E8F8EE;
}

.step-icon-lock {
  background-color: #FDF3E3;
}

.step-card:hover .step-icon-wrapper {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2B231D;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Botón CTA Final */
.steps-cta-wrapper {
  margin-top: 52px;
}

/* Estilos del botón principal definidos de forma exclusiva en la sección superior con animación de levitación, aura pulsante y destello */

/* ==========================================
   4. CATÁLOGO DE TOURS DESTACADOS
=========================================== */
.destinos-section,
.tours-section {
  position: relative;
  overflow: hidden;
  background-color: #F7F3ED !important;
  /* Arena cálido con suficiente contraste frente a las tarjetas blancas */
  background-image:
    radial-gradient(at 15% 15%, rgba(200, 90, 50, 0.08) 0px, transparent 50%),
    radial-gradient(at 85% 85%, rgba(180, 140, 100, 0.12) 0px, transparent 55%) !important;
  background-size: 100% 100%, 100% 100% !important;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.destinos-section .container,
.tours-section .container {
  position: relative;
  z-index: 1;
}

/* Halos de Luz Ambiental (Orb Glows / Mesh Gradient) */
.tours-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glow-top-left {
  top: -60px;
  left: -60px;
  width: 450px;
  height: 450px;
  background: #C85A32;
  opacity: 0.12;
  filter: blur(120px);
  -webkit-filter: blur(120px);
}

.glow-bottom-right {
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: #E2D4C3;
  opacity: 0.25;
  filter: blur(140px);
  -webkit-filter: blur(140px);
}

.tours-section .section-header {
  margin-bottom: 44px;
}

/* Envoltorio relativo general */
.carousel-wrapper,
.tours-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
  overflow: visible;
}

.tours-carousel-track {
  overflow: hidden;
  border-radius: 20px;
  padding: 12px 6px 36px 6px;
  margin: -12px -6px -36px -6px;
}

/* Contenedor del carrusel */
.carousel-container-scroll,
.tours-carousel {
  display: flex !important;
  gap: 1.5rem !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 1rem 0 2.5rem 0 !important;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  transition: -webkit-mask-image 0.25s ease, mask-image 0.25s ease;
}

/* Quitar desvanecido en el extremo izquierdo (Inicio) */
.carousel-container-scroll.at-start,
.tours-carousel.at-start {
  -webkit-mask-image: linear-gradient(to right,
      black 0%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      black 0%,
      black 92%,
      transparent 100%);
}

/* Quitar desvanecido en el extremo derecho (Final) */
.carousel-container-scroll.at-end,
.tours-carousel.at-end {
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 100%);
}

/* Quitar ambos desvanecidos cuando no hay scroll */
.carousel-container-scroll.at-start.at-end,
.tours-carousel.at-start.at-end {
  -webkit-mask-image: none;
  mask-image: none;
}

.carousel-container-scroll::-webkit-scrollbar,
.tours-carousel::-webkit-scrollbar {
  display: none !important;
}

/* Tarjetas: 3 completas + fracción de la siguiente */
.tour-card-item,
.tour-card {
  flex: 0 0 calc((100% - 3rem) / 3.25) !important;
  min-width: 320px !important;
  background-color: #FFFFFF;
  box-shadow: 0 15px 35px -5px rgba(43, 35, 29, 0.1), 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(230, 220, 210, 0.8);
}

/* Botones de navegación */
.carousel-nav-btn,
.carousel-btn,
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #4A4036;
  border: 1px solid #E5E0DA;
  box-shadow: 0 4px 16px rgba(43, 35, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.carousel-nav-btn.is-hidden,
.carousel-btn.hidden-btn,
.carousel-arrow.hidden-btn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-50%) scale(0.85);
}

.prev-arrow {
  left: -24px !important;
}

.next-arrow {
  right: -24px !important;
}

.carousel-arrow:hover {
  background-color: #FFFFFF;
  color: #C85A32;
  border-color: #C85A32;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(200, 90, 50, 0.2);
}

[data-theme="dark"] .carousel-arrow {
  background-color: #1E1814;
  color: #E5DDD5;
  border-color: #332A23;
}

[data-theme="dark"] .carousel-arrow:hover {
  background-color: #261E18;
  color: #E0A93B;
  border-color: #E0A93B;
}

@media (max-width: 1240px) {
  .tours-carousel-wrapper {
    max-width: 100%;
  }

  .prev-arrow {
    left: -12px !important;
  }

  .next-arrow {
    right: -12px !important;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: none !important;
  }
}

.tours-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 6px 36px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Oculta scrollbar en Firefox */
  -ms-overflow-style: none;
  /* Oculta scrollbar en IE/Edge */
}

/* Oculta scrollbar en Chrome, Safari y Opera */
.tours-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Indicadores de Carrusel Modernos (Dots de Paginación) */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E5E0DA;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.carousel-dot:hover {
  background-color: rgba(200, 90, 50, 0.5);
}

.carousel-dot.active {
  width: 24px;
  height: 8px;
  border-radius: 9999px;
  background-color: #C85A32;
  box-shadow: 0 2px 6px rgba(200, 90, 50, 0.35);
}

/* Dark Mode para Carousel Dots */
[data-theme="dark"] .carousel-dot {
  background-color: #3A3028;
}

[data-theme="dark"] .carousel-dot:hover {
  background-color: rgba(232, 122, 82, 0.5);
}

[data-theme="dark"] .carousel-dot.active {
  background-color: #C85A32;
  box-shadow: 0 2px 8px rgba(200, 90, 50, 0.5);
}

.tour-card {
  position: relative;
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: start;
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EAE5DE;
  box-shadow: 0 4px 14px rgba(43, 35, 29, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(43, 35, 29, 0.12);
  border-color: rgba(230, 220, 210, 0.9);
}

@media (max-width: 768px) {
  .tour-card {
    flex: 0 0 310px;
    max-width: 310px;
  }
}

.tour-image-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-image {
  transform: scale(1.08);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.badge {
  font-family: 'Playfair Display', Georgia, serif !important;
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
  line-height: 1.4;
  user-select: none;
}

/* Badge Estándar: Cristal Esmerilado (Glassmorphism) */
.badge-glass,
.badge-popular {
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.90);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #2B231D;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Badge Prioritario: Terracota de Marca ("Más Vendido" / "Experiencia Top") */
.badge-priority {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #C85A32 0%, #D9683D 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 3px 10px rgba(200, 90, 50, 0.35);
  font-weight: 700;
}

.badge-priority svg {
  flex-shrink: 0;
}

/* Badge de Duración (Inferior Derecha) */
.badge-duration {
  bottom: 12px;
  right: 12px;
  background: rgba(27, 21, 17, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

[data-theme="dark"] .badge-glass,
[data-theme="dark"] .badge-popular {
  background: rgba(30, 24, 20, 0.88);
  color: #F5ECE5;
  border-color: rgba(255, 255, 255, 0.12);
}

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

.tour-category {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.tour-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem;
  font-weight: 700 !important;
  margin-bottom: 8px;
  color: var(--text-main);
  line-height: 1.25;
}

/* Línea de Metadatos (Rating y Modalidad) */
.tour-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.tour-rating {
  font-weight: 700;
  color: #C85A32;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-meta-dot {
  color: #CBD5E1;
  font-size: 0.75rem;
}

.tour-modality {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 0.82rem;
  font-weight: 600;
  color: #52473E;
  background-color: #F8F6F2;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #EAE5DE;
}

[data-theme="dark"] .tour-modality {
  color: #CBD5E1;
  background-color: #261E18;
  border-color: #382D24;
}

.tour-summary {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-features {
  margin-bottom: 20px;
  border-top: 1px dashed #EAE5DE;
  padding-top: 14px;
}

.tour-features li {
  font-family: 'Playfair Display', Georgia, serif !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.tour-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid #EAE5DE;
  padding-top: 18px;
}

.tour-price-box {
  font-family: 'Playfair Display', Georgia, serif !important;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-label {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 0.85rem;
  color: var(--text-light);
}

.price-value {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
}

.price-value .currency {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-per {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================
   5. TESTIMONIOS Y RESEÑAS DE GOOGLE NATIVAS BOUTIQUE
=========================================== */
.reviews-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.google-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.rating-number {
  font-weight: 800;
  color: var(--text-main);
}

.stars-row {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contenedor exterior con máscara de desvanecimiento lateral */
.reviews-carousel-wrapper {
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  padding: 1.5rem 0 2.5rem !important;
}

/* Pista que contiene las tarjetas duplicadas */
#reviews-container,
.reviews-carousel,
.reviews-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: max-content !important;
  animation: scrollReviews 120s linear infinite !important;
  will-change: transform !important;
  user-select: none;
}

/* Pausa instantánea al pasar el mouse por encima */
#reviews-container:hover,
.reviews-carousel:hover,
.reviews-track:hover {
  animation-play-state: paused !important;
}

/* Animación de desplazamiento continuo hacia la izquierda */
@keyframes scrollReviews {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
    /* Se desplaza exactamente la mitad (set 1) */
  }
}

#reviews-container .review-card,
.reviews-carousel .review-card,
.review-card {
  flex: 0 0 320px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  margin-right: 1.5rem !important;
  box-sizing: border-box !important;
  height: 340px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
  border: 1px solid #EFEAE3 !important;
  box-shadow: 0 8px 24px -4px rgba(45, 30, 20, 0.05) !important;
  border-radius: 18px !important;
  position: relative !important;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Comilla decorativa sutil en el fondo de las tarjetas */
.quote-watermark {
  position: absolute !important;
  right: 16px !important;
  bottom: 12px !important;
  font-size: 3.75rem !important;
  font-family: var(--font-heading) !important;
  color: #F5EFE9 !important;
  user-select: none !important;
  pointer-events: none !important;
  line-height: 1 !important;
  z-index: 0 !important;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-top {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-card-bottom {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
}

.review-card svg {
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
}

.google-icon-small {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.reviews-nav-btn,
#reviews-prev,
#reviews-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none !important;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid #e7e5e4;
  color: #44403c;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav-btn svg {
  pointer-events: none !important;
  /* El click lo recibe el botón padre */
}

.reviews-nav-btn:hover {
  background-color: #fafaf9;
  color: #1c1917;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.reviews-nav-btn.prev-btn {
  left: -12px;
}

.reviews-nav-btn.next-btn {
  right: -12px;
}

@media (max-width: 768px) {
  .reviews-nav-btn.prev-btn {
    left: -4px;
  }

  .reviews-nav-btn.next-btn {
    right: -4px;
  }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -5px rgba(43, 35, 29, 0.09);
  border-color: rgba(200, 90, 50, 0.25);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EA4335;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-avatar.avatar-blue {
  background-color: #4285F4;
}

.reviewer-avatar.avatar-green {
  background-color: #34A853;
}

.reviewer-avatar.avatar-purple {
  background-color: #9C27B0;
}

.reviewer-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #2B231D;
  line-height: 1.2;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
}

.review-time {
  font-size: 0.775rem;
  color: #8C7E74;
}

.google-icon-small {
  flex-shrink: 0;
}

.review-stars-gold {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1.05rem;
  line-height: 1;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #4A4036;
  font-size: 0.925rem;
  line-height: 1.5;
  margin: 0;
}

.review-photos-grid {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.review-photo-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #EAE5DE;
}



/* ==========================================
   6. AUTORIDAD Y PREGUNTAS FRECUENTES (FAQ)
=========================================== */
.faq-section {
  background-color: var(--bg-secondary);
}

.authority-banner {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .authority-banner {
    grid-template-columns: 1fr;
  }
}

.authority-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.auth-icon {
  font-size: 1.8rem;
}

.authority-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.authority-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Acordeón */
.accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================
   7. FOOTER
=========================================== */
.main-footer {
  background-color: #2B231D;
  color: #E2DAD5;
  padding-top: 70px;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .main-footer {
    padding-bottom: 64px;
  }
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  color: var(--bg-primary);
}

.footer-about {
  font-size: 0.9rem;
  color: #B3A79F;
  margin-bottom: 20px;
}

.footer-rnt {
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
}

.footer-rnt span {
  display: block;
  color: #9E9289;
}

.footer-rnt strong {
  color: #FFFFFF;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: #B3A79F;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #B3A79F;
  margin-bottom: 14px;
}

.footer-contact-info svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.85rem;
  color: #8C8077;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================
   MODAL DE RESERVA INTERACTIVO
=========================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-box {
  background-color: var(--bg-card);
  border-radius: 1.5rem;
  width: 92% !important;
  max-width: 56rem !important;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  position: relative;
  padding: 0 !important;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 16px 28px;
  border-bottom: 1px solid var(--border-light);
}

.modal-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-title {
  font-size: 1.35rem;
  margin-top: 4px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-form {
  padding: 24px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-group input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-primary);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: var(--color-primary-light);
  border: 1px solid rgba(200, 90, 50, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: var(--text-muted);
}

.modal-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================
   BOTÓN FLOTANTE GLOBAL DE WHATSAPP
=========================================== */
.whatsapp-floating-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatHeartbeat 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes floatHeartbeat {

  0%,
  86%,
  100% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.08);
  }

  94% {
    transform: scale(1.02);
  }
}

.whatsapp-tooltip {
  background-color: var(--bg-card);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

@keyframes floatTooltip {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 576px) {
  .whatsapp-tooltip {
    display: none;
  }
}

.tooltip-title {
  font-weight: 700;
}

.tooltip-sub {
  font-size: 0.75rem;
  color: var(--color-whatsapp-dark);
}

.whatsapp-floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-whatsapp-hover);
}

.ping-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: pulsePing 2s infinite ease-out;
}

@keyframes pulsePing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ==========================================
   SECCIÓN DESTINOS DESTACADOS (PREMIUM EDITORIAL)
=========================================== */
.destinos-section {
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtítulo Flanqueado por Líneas Terracota */
.subtitle-flanked-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.sub-flank-line {
  width: 32px;
  height: 2px;
  background-color: #C85A32;
  opacity: 0.65;
  border-radius: 2px;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .destinos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .destinos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.destino-card {
  position: relative;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-color: #FFFFFF;
  border: 1px solid #EAE5DE;
  box-shadow: 0 4px 20px rgba(43, 35, 29, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(43, 35, 29, 0.18);
  border-color: rgba(200, 90, 50, 0.5);
}

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

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

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  transition: background 0.3s ease;
}

.destino-card:hover .destino-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(200, 90, 50, 0.3) 55%, transparent 100%);
}

/* Píldora de Estado Esquina Superior Izquierda (Glassmorphism) */
.destino-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 13px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}

/* Micro-Contador Visual de Tours Esquina Superior Derecha */
.destino-tours-count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 13px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.destino-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 24px 20px !important;
  color: #FFFFFF !important;
  z-index: 10 !important;
}

.destino-name {
  font-family: var(--font-heading) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 4px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.destino-count {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
  background-color: transparent !important;
  background: transparent !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

/* ==========================================
   SECTION DIVIDERS & TRANSITION EFFECTS
=========================================== */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.glow-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0 0;
  padding: 0 20px;
}

.divider-line {
  width: 100%;
  max-width: 1000px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 50, 0.4) 50%, transparent 100%);
}

.divider-badge {
  position: absolute;
  background-color: var(--bg-primary);
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 0 12px;
}

/* ==========================================
   SCROLL REVEAL FADE ANIMATIONS
=========================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   SECCIÓN UBICACIÓN Y MAPA
=========================================== */
.location-section {
  background-color: #FAF8F5 !important;
  padding: 5rem 1.5rem;
  position: relative;
}

.location-card,
.location-info-card,
.location-map-wrapper {
  background: #FFFFFF;
  border: 1px solid #EFEAE3;
  border-radius: 24px;
  box-shadow: 0 10px 30px -4px rgba(45, 35, 20, 0.04);
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-info-card {
  grid-column: span 5 / span 5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .location-info-card {
    grid-column: span 12 / span 12;
  }
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #C85A32;
  background-color: #FBF7F0;
  border: 1px solid #F3ECE1;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  width: fit-content;
}

.location-building-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 24px;
  line-height: 1.25;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.location-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background-color: #FAF8F5;
  border: 1px solid #EFEAE3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C85A32;
  flex-shrink: 0;
}

.location-details-list strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #1C1917;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.location-details-list p {
  font-size: 13.5px;
  color: #57534E;
  line-height: 1.55;
  margin: 0;
}

.location-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.location-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #C85A32;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  width: auto;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(200, 90, 50, 0.25);
}

.location-actions a:hover {
  background-color: #B04C27;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 90, 50, 0.38);
  color: #ffffff;
}

.location-map-wrapper {
  grid-column: span 7 / span 7;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #EFEAE3;
  box-shadow: 0 10px 30px -4px rgba(45, 35, 20, 0.04);
  width: 100%;
  height: 100%;
  min-height: 460px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .location-map-wrapper {
    grid-column: span 12 / span 12;
  }
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS (BI-DIRECTIONAL)
=========================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================
   SECCIÓN REDES SOCIALES
=========================================== */
.social-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-card);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.social-facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
}

.social-instagram:hover {
  border-color: #E4405F;
  color: #E4405F;
}

.social-tiktok:hover {
  border-color: #111111;
  color: #111111;
}

.social-whatsapp:hover {
  border-color: var(--color-whatsapp);
  color: var(--color-whatsapp-dark);
}

.social-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.social-facebook .social-icon-wrapper {
  background-color: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.social-instagram .social-icon-wrapper {
  background-color: rgba(228, 64, 95, 0.1);
  color: #E4405F;
}

.social-tiktok .social-icon-wrapper {
  background-color: rgba(0, 0, 0, 0.08);
  color: #111111;
}

.social-whatsapp .social-icon-wrapper {
  background-color: rgba(37, 211, 102, 0.12);
  color: var(--color-whatsapp);
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
}

.social-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.social-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-action {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-card:hover .social-action {
  opacity: 1;
  transform: translateX(4px);
}

/* Footer Social Links */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  color: #FFFFFF;
}



/* ==========================================
   MODAL DE RESERVA INTERACTIVO WHATSAPP
=========================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 14, 11, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: 1.5rem;
  width: 92%;
  max-width: 56rem;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.modal-box::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

#modalTourHighlights,
#modalTourHighlights li,
#modalTourHighlights span,
#bookingModal [data-i18n="modal_left_note"],
#bookingModal #whatsappBookingForm,
#bookingModal #whatsappBookingForm *,
#bookingModal #whatsappBookingForm input,
#bookingModal #whatsappBookingForm button,
#bookingModal #whatsappBookingForm label,
#bookingModal #whatsappBookingForm span,
#bookingModal #whatsappBookingForm strong,
#bookingModal #whatsappBookingForm input::placeholder {
  font-family: var(--font-heading), 'Playfair Display', Georgia, serif !important;
}

.modal-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #F0EAE1;
}

.modal-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C85A32;
}

.modal-price-badge {
  font-family: 'Playfair Display', serif !important;
  background: #FBF4EF;
  color: #C85A32;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 90, 50, 0.15);
}

.modal-tour-info {
  display: flex;
  align-items: center;
  gap: 14px;
  /* gap-3.5 */
}

.modal-tour-thumb-wrapper {
  width: 48px;
  /* w-12 */
  height: 48px;
  /* h-12 */
  border-radius: 12px;
  /* rounded-xl */
  overflow: hidden;
  border: 1px solid #E7E5E4;
  /* border-stone-200 */
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modal-tour-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 700;
  /* font-bold */
  color: #1C1917;
  /* text-stone-900 */
  line-height: 1.375;
  /* leading-snug */
  margin: 0;
}

.modal-close-btn {
  background: #F4F0EB;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B5E55;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  background: #E5DDD3;
  color: #1F1915;
  transform: scale(1.05);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.modal-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4A3E36;
}

.form-label-icon {
  flex-shrink: 0;
}

.date-input-wrapper {
  position: relative;
  width: 100%;
}

.date-input-wrapper input {
  padding-right: 38px !important;
  cursor: pointer;
}

.date-input-icon {
  position: absolute;
  right: 12px;
  /* right-3 */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #A8A29E;
  transition: color 0.2s ease;
}

.date-input-wrapper:hover .date-input-icon {
  color: #C85A32;
}

.modal-form input[type="text"],
.modal-form input[type="date"] {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #E2D9D0;
  background-color: #FAFAFA;
  font-size: 0.875rem;
  color: #1F1915;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.modal-form input[type="text"]:focus,
.modal-form input[type="date"]:focus {
  outline: none;
  border-color: #C85A32;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.12);
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Stepper Control (+/-) */
.stepper-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F4F0;
  border: 1px solid #E2D9D0;
  border-radius: 8px;
  padding: 3px;
  height: 38px;
}

.stepper-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  color: #1F1915;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  user-select: none;
}

.stepper-btn:hover {
  background: #C85A32;
  color: #FFFFFF;
}

.stepper-btn:active {
  transform: scale(0.92);
}

.stepper-input {
  width: 36px;
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1F1915;
  padding: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* Hide webkit arrows on number input */
.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-input[type=number] {
  -moz-appearance: textfield;
}

/* Trust Note */
.modal-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background-color: #F0FDF4;
  border: 1px solid #DCFCE7;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #166534;
}

.modal-trust-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-trust-note strong {
  color: #15803D;
  font-weight: 700;
}

/* WhatsApp Submit Button */
.btn-whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  /* rounded-xl */
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 28px -4px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-submit:active {
  transform: scale(0.99);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* Dark Mode Rules for Modal */
[data-theme="dark"] .modal-box {
  background-color: #1E1814;
  border: 1px solid #332A23;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .modal-header {
  border-bottom-color: #2E251E;
}

[data-theme="dark"] .modal-price-badge {
  background: #351C13;
  color: #E87A52;
  border-color: rgba(232, 122, 82, 0.2);
}

[data-theme="dark"] .modal-title {
  color: #F5ECE5;
}

[data-theme="dark"] .modal-close-btn {
  background: #2B231D;
  color: #A39589;
}

[data-theme="dark"] .modal-close-btn:hover {
  background: #3A3028;
  color: #F5ECE5;
}

[data-theme="dark"] .modal-form label {
  color: #D4C7BC;
}

[data-theme="dark"] .modal-form input[type="text"],
[data-theme="dark"] .modal-form input[type="date"] {
  background-color: #14100D;
  border-color: #332A23;
  color: #F5ECE5;
}

[data-theme="dark"] .modal-form input[type="text"]:focus,
[data-theme="dark"] .modal-form input[type="date"]:focus {
  border-color: #E87A52;
  box-shadow: 0 0 0 3px rgba(232, 122, 82, 0.15);
}

[data-theme="dark"] .stepper-control {
  background: #14100D;
  border-color: #332A23;
}

[data-theme="dark"] .stepper-btn {
  background: #2B231D;
  color: #F5ECE5;
}

[data-theme="dark"] .stepper-btn:hover {
  background: #C85A32;
  color: #FFFFFF;
}

[data-theme="dark"] .stepper-input {
  color: #F5ECE5 !important;
}

[data-theme="dark"] .modal-trust-note {
  background-color: #062C18;
  border-color: #0E4D2B;
  color: #86EFAC;
}

[data-theme="dark"] .modal-trust-note strong {
  color: #4ADE80;
}

/* ==========================================
   FLATPICKR CUSTOM BRAND STYLING & Z-INDEX
=========================================== */
/* ==========================================
   FLATPICKR CUSTOM BRAND STYLING & Z-INDEX
=========================================== */
/* ==========================================
   FLATPICKR CUSTOM BRAND STYLING & Z-INDEX
=========================================== */
/* --- CONTENEDOR GENERAL DEL CALENDARIO --- */
.flatpickr-calendar {
  width: 320px !important;
  background: #FFFFFF !important;
  border-radius: 1.25rem !important;
  border: 1px solid #EBE6E0 !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
  padding: 10px 12px 14px !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  z-index: 99999 !important;
}

/* Ocultar flechitas triangulares decorativas de la librería */
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  display: none !important;
}

/* --- CABECERA (MES, AÑO Y FLECHAS) --- */
.flatpickr-months {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  padding: 4px 6px 12px !important;
  border-bottom: 1px solid #F6F1EA !important;
}

/* Flechas izquierda y derecha */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  color: #C85A32 !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background-color: #F6F1EA !important;
  color: #9E3E1B !important;
}

/* Título central (Mes + Año) */
.flatpickr-current-month {
  position: static !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #2B231D !important;
}

/* Nombre del mes en texto puro */
.flatpickr-current-month span.cur-month {
  font-weight: 700 !important;
  color: #2B231D !important;
  margin-left: 0 !important;
}

/* Input del año integrado y limpio */
.flatpickr-current-month .numInputWrapper {
  width: 52px !important;
  display: inline-flex !important;
}

.flatpickr-current-month input.cur-year {
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  color: #2B231D !important;
  font-size: 1rem !important;
  padding: 2px 4px !important;
  cursor: pointer !important;
  outline: none !important;
  -moz-appearance: textfield !important;
  appearance: none !important;
}

.flatpickr-current-month input.cur-year:hover,
.flatpickr-current-month input.cur-year:focus {
  background-color: #F6F1EA !important;
  color: #C85A32 !important;
}

/* Ocultar spinners nativos del año */
.flatpickr-current-month .numInputWrapper span {
  display: none !important;
}

.flatpickr-current-month input.cur-year::-webkit-inner-spin-button,
.flatpickr-current-month input.cur-year::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* --- DÍAS DE LA SEMANA --- */
.flatpickr-weekdays {
  margin-top: 8px !important;
}

span.flatpickr-weekday {
  color: #8C827A !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
}

/* --- CUADRÍCULA DE DÍAS --- */
.flatpickr-day {
  border-radius: 9999px !important;
  font-weight: 500 !important;
  color: #2B231D !important;
  border: 1px solid transparent !important;
  height: 36px !important;
  line-height: 36px !important;
  margin: 2px 0 !important;
}

/* Hover de días */
.flatpickr-day:hover {
  background: #F6F1EA !important;
  border-color: #E5DDD5 !important;
  color: #C85A32 !important;
}

/* Día de hoy */
.flatpickr-day.today {
  border-color: #C85A32 !important;
  color: #C85A32 !important;
  background: transparent !important;
}

/* Día seleccionado */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #C85A32 !important;
  border-color: #C85A32 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 8px -2px rgba(200, 90, 50, 0.4) !important;
}

/* Días deshabilitados (fechas pasadas) */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #D1CAC3 !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

.flatpickr-rcontainer,
.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-days {
  width: 100% !important;
}

.flatpickr-weekdays {
  height: 28px !important;
  border-bottom: 1px solid #F4F0EB !important;
  margin-bottom: 6px !important;
}

span.flatpickr-weekday {
  color: #9C8E84 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
}

.flatpickr-day {
  border-radius: 50% !important;
  border: none !important;
  color: #3A3028 !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  max-width: 38px !important;
  height: 36px !important;
  line-height: 36px !important;
  margin: 2px 0 !important;
  transition: all 0.2s ease !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: #F7F4EE !important;
  color: #C85A32 !important;
}

.flatpickr-day.today {
  border: 1px solid #C85A32 !important;
  color: #C85A32 !important;
  background: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #C85A32 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(200, 90, 50, 0.35) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #D6CFCA !important;
  background: transparent !important;
  cursor: not-allowed !important;
}

/* Dark Mode para Flatpickr */
[data-theme="dark"] .flatpickr-calendar {
  background: #1E1814 !important;
  border-color: #332A23 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .flatpickr-current-month,
[data-theme="dark"] .flatpickr-current-month span.cur-month,
[data-theme="dark"] .flatpickr-current-month input.cur-year,
[data-theme="dark"] span.flatpickr-weekday {
  color: #F5ECE5 !important;
  fill: #F5ECE5 !important;
}

[data-theme="dark"] .flatpickr-months .flatpickr-prev-month,
[data-theme="dark"] .flatpickr-months .flatpickr-next-month {
  color: #E87A52 !important;
  fill: #E87A52 !important;
}

[data-theme="dark"] .flatpickr-months .flatpickr-prev-month:hover,
[data-theme="dark"] .flatpickr-months .flatpickr-next-month:hover {
  background: #2B231D !important;
}

[data-theme="dark"] .flatpickr-day {
  color: #F5ECE5 !important;
}

[data-theme="dark"] .flatpickr-day:hover,
[data-theme="dark"] .flatpickr-day:focus {
  background: #2B231D !important;
  color: #E87A52 !important;
}

[data-theme="dark"] .flatpickr-day.flatpickr-disabled,
[data-theme="dark"] .flatpickr-day.flatpickr-disabled:hover {
  color: #4A3E36 !important;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-section {
  background-color: #FAF8F5 !important;
  /* Tono arena / lino boutique */
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.review-card {
  background: #FFFFFF !important;
  border: 1px solid #EFE8DE !important;
  box-shadow: 0 10px 25px -4px rgba(45, 35, 20, 0.04) !important;
}

#reviews-container .review-card {
  flex: 0 0 310px !important;
  min-width: 310px !important;
  max-width: 310px !important;
  height: 340px !important;
}

/* Navegación carrusel de reseñas despegada */
.reviews-carousel-wrapper {
  position: relative !important;
  padding: 0 1.25rem !important;
}

.reviews-nav-btn,
#reviews-prev,
#reviews-next {
  display: none !important;
}

/* Botón inferior Google Maps Boutique */
.btn-gmaps-boutique {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background-color: #FFF7ED !important;
  border: 1.5px solid #C85A32 !important;
  color: #C85A32 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 12px 26px !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  transition: all 0.25s ease-in-out !important;
  box-shadow: 0 2px 8px rgba(200, 90, 50, 0.08) !important;
}

.btn-gmaps-boutique:hover {
  background-color: #C85A32 !important;
  color: #FFFFFF !important;
  border-color: #C85A32 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(200, 90, 50, 0.28) !important;
}

.btn-gmaps-boutique svg {
  stroke: currentColor !important;
  transition: stroke 0.25s ease-in-out !important;
}

/* ==========================================
   REVIEWS SECTION - DARK MODE OVERRIDES
=========================================== */
[data-theme="dark"] .reviews-section {
  background-color: #14100D !important;
}

[data-theme="dark"] .review-card,
[data-theme="dark"] #reviews-container .review-card {
  background-color: #1E1814 !important;
  border-color: #332A23 !important;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .quote-watermark {
  color: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .review-card h4 {
  color: #F5ECE5 !important;
}

[data-theme="dark"] .review-card p {
  color: #D6CFCA !important;
}

[data-theme="dark"] .review-card p[style*="78716C"] {
  color: #A3968C !important;
}

[data-theme="dark"] .review-card div[style*="border-top"],
[data-theme="dark"] .review-card div[style*="F5F5F4"] {
  border-top-color: #332A23 !important;
}

[data-theme="dark"] .review-card img {
  border-color: #382E26 !important;
}

[data-theme="dark"] .reviews-nav-btn,
[data-theme="dark"] #reviews-prev,
[data-theme="dark"] #reviews-next {
  background-color: #241E19 !important;
  border-color: #382E26 !important;
  color: #F5ECE5 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .reviews-nav-btn:hover,
[data-theme="dark"] #reviews-prev:hover,
[data-theme="dark"] #reviews-next:hover {
  background-color: #381E15 !important;
  color: #E87A52 !important;
  border-color: #E87A52 !important;
  box-shadow: 0 6px 16px rgba(232, 122, 82, 0.25) !important;
}

[data-theme="dark"] .btn-gmaps-boutique {
  background-color: #2B1D16 !important;
  border-color: #E87A52 !important;
  color: #E87A52 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .btn-gmaps-boutique:hover {
  background-color: #C85A32 !important;
  border-color: #C85A32 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 16px rgba(200, 90, 50, 0.35) !important;
}

/* ==========================================
   AUTHORITY BANNER & FAQ ACCORDION BOUTIQUE
=========================================== */
.authority-banner {
  background-color: #FFFFFF !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 1px solid #EFEAE3 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03) !important;
  margin-bottom: 3.5rem !important;
  max-width: 64rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.auth-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0.75rem !important;
  background-color: #FAF8F5 !important;
  border: 1px solid #EFEAE3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #C85A32 !important;
  flex-shrink: 0 !important;
}

.accordion-wrapper {
  max-width: 64rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.accordion-item {
  padding: 1.5rem 2rem !important;
  border-radius: 1rem !important;
  background-color: #FFFFFF !important;
  border: 1px solid #EFEAE3 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.2s ease-in-out !important;
}

.accordion-item:hover,
.faq-card:hover {
  border-color: #DFD7CC !important;
  box-shadow: 0 8px 24px rgba(45, 35, 20, 0.06) !important;
  transform: translateY(-2px) !important;
}

.accordion-header {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  text-align: left !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  outline: none !important;
}

.accordion-header span {
  color: #1C1917 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1.375 !important;
}

@media (min-width: 768px) {
  .accordion-header span {
    font-size: 1.125rem !important;
  }
}

.faq-icon,
.accordion-icon {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 9999px !important;
  background-color: #FAF8F5 !important;
  border: 1px solid #EFEAE3 !important;
  color: #C85A32 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 300ms ease !important;
  flex-shrink: 0 !important;
}

.faq-icon svg,
.accordion-icon svg {
  stroke: #C85A32 !important;
  color: #C85A32 !important;
}

.faq-card.is-open .faq-icon,
.faq-item.is-open .faq-icon,
.accordion-item.is-open .accordion-icon,
.accordion-item.active .faq-icon,
.accordion-item.active .accordion-icon {
  transform: rotate(45deg) !important;
}

.faq-answer-collapse,
.faq-content-wrapper,
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease !important;
  will-change: max-height, opacity;
}

.faq-answer p,
.faq-content p,
.accordion-content p {
  color: #3F3C38 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  max-width: 48rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid #F3ECE1 !important;
  margin-top: 1rem !important;
}

/* ==========================================
   SOCIAL MEDIA SECTION BOUTIQUE
=========================================== */
.social-section {
  background-color: #FAF8F5 !important;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tarjeta base con transición suave */
.social-card {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms ease;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: #DFD7CC;
  box-shadow: 0 16px 32px -8px rgba(45, 35, 20, 0.08);
}

/* Contenedor del icono */
.social-card .icon-box {
  transition: background-color 250ms ease,
    border-color 250ms ease,
    transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card:hover .icon-box {
  background-color: #C85A32 !important;
  border-color: #C85A32 !important;
  transform: scale(1.08);
}

/* Icono SVG interior */
.social-card .icon-box svg {
  transition: stroke 250ms ease;
}

.social-card:hover .icon-box svg {
  stroke: #FFFFFF !important;
}

/* Botón / Pastilla inferior */
.social-card .action-pill {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  transition: background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease;
}

.social-card:hover .action-pill {
  background-color: #C85A32 !important;
  border-color: #C85A32 !important;
  color: #FFFFFF !important;
}

/* Flechita del botón */
.social-card .action-arrow {
  display: inline-block;
  color: inherit !important;
  transition: transform 250ms ease, color 250ms ease !important;
}

.social-card:hover .action-arrow,
.social-card:hover .action-pill .action-arrow {
  transform: translateX(3px);
  color: #FFFFFF !important;
}

/* ==========================================
   DESTINO BOUTIQUE MODAL STYLES
=========================================== */
.destino-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(28, 25, 23, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  padding-top: 96px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms ease !important;
}

@media (min-width: 768px) {
  .destino-modal-backdrop {
    padding: 1.5rem !important;
    padding-top: 100px !important;
  }
}

.destino-modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#destinoModal>div {
  background-color: #ffffff;
  border-radius: 1.5rem;
  max-width: 48rem !important;
  width: 94% !important;
  padding: 1.5rem !important;
  position: relative;
  max-height: calc(100vh - 120px) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid #EFEAE3;
  transform: scale(0.95) translateY(10px);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}

@media (min-width: 768px) {
  #destinoModal>div {
    padding: 1.75rem !important;
  }
}

.destino-modal-backdrop.active>div {
  transform: scale(1) translateY(0);
}

#modal-foto-principal {
  max-height: 100% !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  display: block !important;
  position: relative;
  z-index: 10;
  transition: opacity 0.25s ease-in-out, transform 0.3s ease;
}

#modal-foto-principal-bg,
#modal-foto-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px);
  opacity: 0.55;
  transform: scale(1.25);
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}

#modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.625rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  #modal-thumbnails {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

#modal-thumbnails img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 4rem !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 0.75rem;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  #modal-thumbnails img {
    height: 4rem !important;
  }
}

.destino-cta-btn:active {
  transform: translateY(0);
}

/* ==========================================
   TOUR CARDS HOVER PREVIEW & GALLERY BADGE
=========================================== */
.tour-image-wrapper {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  height: 14rem;
  width: 100%;
}

@media (min-width: 768px) {
  .tour-image-wrapper {
    height: 15rem;
  }
}

.tour-primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 300ms ease;
}

.tour-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease, transform 500ms ease;
  pointer-events: none;
}

.tour-image-wrapper:hover .tour-hover-img {
  opacity: 1;
  transform: scale(1.04);
}

.tour-image-wrapper:hover .tour-primary-img {
  transform: scale(1.04);
}

.tour-gallery-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: rgba(28, 25, 23, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 10;
  cursor: pointer;
  transition: all 200ms ease;
}

.tour-gallery-badge:hover {
  background-color: #C85A32;
  border-color: #C85A32;
  transform: scale(1.05);
}

.filter-reset-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.filter-reset-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #FAF7F2;
  border: 1px solid #C85A32;
  color: #C85A32;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: 0 2px 6px rgba(200, 90, 50, 0.1);
}

.filter-reset-chip:hover {
  background-color: #C85A32;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 90, 50, 0.25);
}

/* ==========================================
   TRADUCCIÓN E IDIOMAS (ES / EN)
=========================================== */
/* Interruptor de idioma deslizable (Pill Switch) */
#langToggleBtn {
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

#langSlider {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

/* ==========================================
   ANIMACIÓN EXCLUSIVA: BOTÓN WHATSAPP MODAL
   (Opción 4: Impulso Flotante con Ondas Concéntricas / Dynamic Neon Pulse Ring)
=========================================== */
.btn-whatsapp-submit {
  position: relative;
  overflow: hidden;
  color: #FFFFFF !important;
  /* Degradado líquido esmeralda preferido por el usuario */
  background: linear-gradient(135deg, #25D366 0%, #128C7E 35%, #25D366 70%, #1EBE5A 100%) !important;
  background-size: 260% 260% !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 1rem !important;
  animation: emeraldLiquidFlow 6s ease infinite !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.2) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease !important;
  z-index: 1;
}

.btn-whatsapp-submit *,
.btn-whatsapp-submit span,
.btn-whatsapp-submit svg,
#whatsappBookingForm .btn-whatsapp-submit,
#whatsappBookingForm .btn-whatsapp-submit *,
#whatsappBookingForm .btn-whatsapp-submit span {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

/* Haz de brillo diagonal dinámico */
.btn-whatsapp-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  animation: diagonalNeonSweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

/* Anillo de pulso neón concéntrico en hover */
.btn-whatsapp-submit::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.btn-whatsapp-submit:hover {
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp-submit:hover::after {
  opacity: 1;
  animation: neonRingExpand 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.btn-whatsapp-submit:active {
  transform: translateY(1px) scale(0.975) !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.45) !important;
}

.btn-whatsapp-submit .btn-wa-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.btn-whatsapp-submit:hover .btn-wa-icon {
  transform: scale(1.25) rotate(-8deg) !important;
}

/* Keyframes: 1. Degradado Líquido Esmeralda */
@keyframes emeraldLiquidFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Keyframes: 2. Barrido Diagonal de Brillo */
@keyframes diagonalNeonSweep {
  0% {
    left: -100%;
  }

  30%,
  100% {
    left: 200%;
  }
}

/* Keyframes: 3. Expansión de Anillo Neón */
@keyframes neonRingExpand {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.12, 1.3);
    opacity: 0;
  }
}

/* ==========================================
   BOTÓN GOOGLE MAPS - ANIMACIÓN SWEEP OSCURO + ALTO CONTRASTE
=========================================== */
.btn-gmaps-boutique {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #C85A32 !important;
  color: #FFFFFF !important;
  padding: 12px 28px;
  border-radius: 9999px !important;
  border: 1.5px solid #C85A32 !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 15px;
  font-weight: 700 !important;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(200, 90, 50, 0.25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease !important;
}

.btn-gmaps-boutique::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #A84320, #8A3315);
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: inherit;
}

.btn-gmaps-boutique svg,
.btn-gmaps-boutique span {
  position: relative;
  z-index: 2;
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-gmaps-boutique span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.02em;
}

.btn-gmaps-boutique svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  flex-shrink: 0;
}

.btn-gmaps-boutique:hover::before {
  left: 0;
}

.btn-gmaps-boutique:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 28px rgba(200, 90, 50, 0.4) !important;
  border-color: #C85A32 !important;
  color: #FFFFFF !important;
}

.btn-gmaps-boutique:hover span {
  color: #FFFFFF !important;
}

.btn-gmaps-boutique:hover svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  animation: gmaps-icon-bounce 0.5s ease-in-out infinite alternate;
}

.btn-gmaps-boutique:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 3px 10px rgba(200, 90, 50, 0.25) !important;
}

@keyframes gmaps-icon-bounce {
  0% {
    transform: translate(0, 0) scale(1.05);
  }

  50% {
    transform: translate(3px, -3px) scale(1.2) rotate(6deg);
  }

  100% {
    transform: translate(2px, -2px) scale(1.12) rotate(-4deg);
  }
}

/* ==========================================
   TIPOGRAFÍA Y DIFERENCIACIÓN DE COLOR EN DETALLES DE UBICACIÓN
=========================================== */
.location-badge {
  color: #C85A32 !important;
  background-color: #FBF7F0 !important;
  border: 1px solid #E0D4C3 !important;
}

.location-badge span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #1C1917 !important;
  letter-spacing: 0.05em !important;
}

.location-building-name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  color: #1C1917 !important;
}

.location-details-list strong {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  color: #C85A32 !important;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.location-details-list p {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  color: #4A4543 !important;
  font-size: 0.9rem;
  line-height: 1.5;
}

.location-actions a,
.location-actions a span,
.btn-gmaps-boutique,
.btn-gmaps-boutique span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

.location-actions a svg,
.btn-gmaps-boutique svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* Animación de Resplandor de Cristal (Shine Sweep) + Rebote de Ícono */
.location-actions a {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  border: 1.5px solid #C85A32 !important;
  background-color: #C85A32 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease !important;
}

/* Haz de Luz Brillante Diagonal */
.location-actions a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.location-actions a svg,
.location-actions a span {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.location-actions a:hover::before {
  left: 150%;
}

.location-actions a:hover {
  transform: translateY(-4px) scale(1.05) !important;
  background-color: #B04C27 !important;
  border-color: #E06B43 !important;
  box-shadow: 0 0 0 4px rgba(200, 90, 50, 0.25), 0 12px 30px rgba(200, 90, 50, 0.45) !important;
}

.location-actions a:hover svg {
  animation: gmaps-icon-bounce 0.5s ease-in-out infinite alternate !important;
}

.location-actions a:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 3px 10px rgba(200, 90, 50, 0.25) !important;
}

/* ==========================================
   TIPOGRAFÍA EN BANNER DE CREDENCIALES / AUTORIDAD
=========================================== */
.authority-item h4 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #1C1917 !important;
}

.authority-item p {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  color: #57534E !important;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================
   TIPOGRAFÍA EN PREGUNTAS Y RESPUESTAS (FAQ)
=========================================== */
.accordion-header span,
.faq-trigger span,
.faq-card button span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #1C1917 !important;
}

.accordion-content p,
.faq-content-inner p,
.faq-card p {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  color: #4A4543 !important;
  line-height: 1.6;
}

/* Tipografía Playfair Display en Micro-CTA Final de Soporte */
.faq-support-cta,
.faq-support-cta span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}

.faq-support-cta>span {
  color: #1C1917 !important;
}

[data-i18n="faq_wa_cta"] {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #C85A32 !important;
}

/* ==========================================
   FLECHAS DE BOTONES EN COMUNIDAD Y NOVEDADES
=========================================== */
.social-card .action-arrow {
  color: #FFFFFF !important;
  transition: color 250ms ease, transform 250ms ease !important;
}

.social-card:hover .action-arrow,
.social-card:hover .action-pill .action-arrow {
  color: #FFFFFF !important;
  transform: translateX(4px);
}

.social-card .action-pill,
.social-card .action-pill span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

/* ==========================================
   TIPOGRAFÍA PLAYFAIR DISPLAY Y ALTO CONTRASTE EN TODO EL FOOTER
=========================================== */
.main-footer,
.footer-heading,
.footer-about,
.footer-contact-info li,
.footer-contact-info span,
.footer-links a,
.footer-bottom,
.footer-bottom p,
.footer-bottom span {
  font-family: 'Playfair Display', serif !important;
}

.footer-heading {
  font-weight: 700 !important;
  color: #FFFFFF !important;
  font-size: 1.15rem !important;
}

.footer-about {
  font-weight: 400 !important;
  color: #D6CFC9 !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

.footer-contact-info li,
.footer-contact-info span {
  font-weight: 400 !important;
  color: #E2DAD5 !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.footer-contact-info svg {
  color: #C85A32 !important;
  stroke: #C85A32 !important;
}

.footer-links a {
  font-weight: 400 !important;
  color: #D6CFC9 !important;
}

.footer-links a:hover {
  color: #C85A32 !important;
}

/* Tipografía Idéntica para el Logo (Hernandez Tours) */
.brand-logo,
.brand-logo .logo-text,
.brand-logo .accent-text,
.footer-logo,
.footer-logo .logo-text,
.footer-logo .accent-text {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}

/* Tipografía Original Sans-Serif Exclusiva para Nombres de Reseñas */
.review-card h4,
.reviewer-name {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
}

/* ==========================================
   ANIMACIONES HOVER BOTONES REDES SOCIALES
=========================================== */
.action-pill {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 3px 10px rgba(200, 90, 50, 0.2);
}

.social-card:hover .action-pill,
.action-pill:hover {
  background-color: #B34B26 !important;
  border-color: #B34B26 !important;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 20px rgba(200, 90, 50, 0.4) !important;
}

.action-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-card:hover .action-arrow,
.action-pill:hover .action-arrow {
  transform: translateX(5px);
}

/* ==========================================
   RESET FLUIDO & OPTIMIZACIÓN RESPONSIVA MÓVIL
   (Pantallas 360px - 768px)
=========================================== */

/* Prevención global de desbordamiento horizontal */
html {
  box-sizing: border-box;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

body {
  box-sizing: border-box;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Recursos multimedia fluidos */
img, svg, video, iframe, canvas {
  max-width: 100% !important;
  height: auto;
}

/* Protección de contenedores principales */
.container, .hero-container, .tours-carousel-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ------------------------------------------
   MEDIA QUERY: SMARTPHONES Y TABLETS (< 768px)
------------------------------------------- */
@media (max-width: 768px) {
  /* Evitar sangrado de desplazamiento lateral */
  body {
    padding-left: 0;
    padding-right: 0;
  }

  /* Espaciado de secciones optimizado */
  .destinos-section,
  .tours-section,
  .steps-section,
  .reviews-section,
  .faq-section {
    padding-top: 3.5rem !important;
    padding-bottom: 4rem !important;
  }

  /* Tarjetas de Tours en Carrusel */
  .tour-card-item,
  .tour-card {
    flex: 0 0 calc(100vw - 52px) !important;
    min-width: 270px !important;
    max-width: 100% !important;
  }

  /* Línea conectora de la sección de pasos */
  .steps-connecting-line {
    display: none !important;
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .step-card {
    padding: 28px 20px !important;
  }

  /* Sección Ubicación: Apilado a 1 columna */
  .location-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .location-map-wrapper,
  .location-map-wrapper iframe {
    min-height: 280px !important;
    height: 320px !important;
  }

  /* Banner de Autoridad */
  .authority-banner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }

  /* Reseñas: Apilamiento fluido de tarjetas */
  .review-card {
    flex: 0 0 calc(100vw - 56px) !important;
    min-width: 260px !important;
    max-width: calc(100vw - 56px) !important;
  }

  /* Ergonomía y desplazamiento en Modales */
  .modal-box,
  #bookingModal > div,
  #destinoModal > div,
  .destino-modal-backdrop > div {
    width: 95% !important;
    max-width: 100% !important;
    max-height: calc(100dvh - 24px) !important;
    margin: 12px auto !important;
    padding: 16px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px !important;
  }

  /* Pie de página */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Botón Flotante de WhatsApp */
  .whatsapp-floating-wrapper {
    bottom: 16px !important;
    right: 16px !important;
  }

  .whatsapp-tooltip {
    display: none !important;
  }
}

/* ------------------------------------------
   MEDIA QUERY: SMARTPHONES ESTRECHOS (< 480px)
------------------------------------------- */
@media (max-width: 480px) {
  .brand-logo-icon {
    width: 32px !important;
    height: 32px !important;
  }

  .brand-logo span {
    font-size: 1rem !important;
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.22 !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .tour-card-item,
  .tour-card {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 260px !important;
  }

  .tour-body {
    padding: 18px 16px !important;
  }

  .review-card {
    flex: 0 0 calc(100vw - 44px) !important;
    min-width: 250px !important;
    max-width: calc(100vw - 44px) !important;
  }

  .btn-steps-cta {
    padding: 1rem 1.75rem !important;
    font-size: 0.92rem !important;
    width: 100% !important;
    justify-content: center !important;
  }
}