/*
Theme Name: DreamTour
Theme URI: https://dreamtourviaggi.it
Author: DreamTour Team
Author URI: https://dreamtourviaggi.it
Description: Un tema moderno para viajes de grupo inspirado en WeRoad, con diseño limpio y funcional
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dreamtour
Tags: travel, tours, modern, responsive, customizable
*/

/* ===================================
   VARIABLES CSS
   =================================== */
:root {
  /* Colores Principales */
  --color-primary: #003284;
  --color-primary-light: #1aabe7;
  --color-primary-lighter: #46c7f0;
  --color-secondary: #082a5b;
  --color-accent: #1ba4ce;
  --color-white: #ffffff;
  
  /* Colores de Texto */
  --color-text-dark: #1a1a1a;
  --color-text-medium: #666666;
  --color-text-light: #999999;
  
  /* Tipografía - Poppins */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-h1: 34px;
  --font-h2: 22px;
  --font-h3: 18px;
  --font-body: 14px;
  --font-description: 14px;
  
  /* Espaciado */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Transiciones */
  --transition: all 0.3s ease;
}

/* ===================================
   ANIMACIONES
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

body {
  font-family: var(--font-family);
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TIPOGRAFÍA
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-dark);
}

h1 {
  font-size: var(--font-h1);
  font-weight: 900; /* Poppins Black */
}

h2 {
  font-size: var(--font-h2);
  font-weight: 700; /* Poppins Bold */
}

h3 {
  font-size: var(--font-h3);
  font-weight: 600; /* Poppins SemiBold */
}

p {
  font-size: var(--font-body);
  font-weight: 400; /* Poppins Regular */
  margin-bottom: var(--spacing-sm);
}

.description, .text-light {
  font-size: var(--font-description);
  font-weight: 300; /* Poppins Light */
  color: var(--color-text-medium);
}

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

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* ===================================
   LAYOUT PRINCIPAL
   =================================== */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-full {
  width: 100%;
  padding: 0 var(--spacing-md);
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.site-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--color-primary-light);
}

/* ===================================
   NAVEGACIÓN
   =================================== */
.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-menu {
  display: inline-flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
  align-items: center;
  flex-direction: row;

}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-size: var(--font-body);
  font-weight: 600;
  color: var(--color-text-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: var(--transition);
  display: block;
  width: 120px;
}

.nav-menu a:hover {
  color: var(--color-primary-light);
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===================================
   BOTONES
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: var(--font-body);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 50, 132, 0.3);
}

.btn-secondary {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 171, 231, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  font-weight: 700;
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 50, 132, 0.7) 0%, rgba(0, 168, 150, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  position: relative;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Slideshow Controls */
.hero-slideshow-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.hero-prev,
.hero-next {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  pointer-events: all;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-prev .dashicons,
.hero-next .dashicons {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

/* Slideshow Dots */
.hero-slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover,
.hero-dot.active {
  background: white;
  transform: scale(1.2);
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===================================
   CARDS DE TOURS
   =================================== */

/* Tour Filters */
.tour-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1 1 220px;
  min-width: 180px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--color-primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 171, 231, 0.1);
}

/* Reset button styling */
#filter-reset {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 10px 20px;
  font-weight: 600;
  min-width: 120px;
}

#filter-reset:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.filter-group:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#filter-reset {
  height: fit-content;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.tour-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card.tour-concluded {
  opacity: 0.8;
  cursor: not-allowed;
}

.tour-card.tour-concluded:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.tour-card-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.tour-edit-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tour-edit-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 50, 132, 0.3);
}

.tour-edit-btn svg {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.tour-edit-btn:hover svg {
  color: white;
}

.tour-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

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

.tour-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.tour-concluded-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 39%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.tour-concluded-label {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.tour-card-content {
  padding: var(--spacing-md);
}

.tour-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 12px;
  color: var(--color-text-medium);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.tour-description {
  font-size: var(--font-description);
  font-weight: 300;
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid #e0e0e0;
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-item-adult {
  font-size: 20px;
  font-weight: 700;
}

.price-item-adult .price-label {
  color: var(--color-text-medium);
  font-size: 14px;
  font-weight: 600;
}

.price-item-adult .price-value {
  color: var(--color-primary);
}

.price-item-child {
  font-size: 15px;
  font-weight: 600;
}

.price-item-child .price-label {
  color: var(--color-text-medium);
  font-size: 12px;
  font-weight: 500;
}

.price-item-child .price-value {
  color: var(--color-primary);
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-text-medium);
}

/* ===================================
   SECCIONES DE CONTENIDO
   =================================== */
.content-section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-medium);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-lighter));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-white);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.feature-description {
  font-size: var(--font-description);
  font-weight: 300;
  color: var(--color-text-medium);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  font-size: 18px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-primary-lighter);
}

/* Footer Logo */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
  max-width: 160px;
  height: auto;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-company-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-info {
  margin-top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact-info p {
  margin: 0 0 var(--spacing-sm) 0;
}

.footer-contact-info strong {
  color: var(--color-white);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--color-primary-lighter);
  text-decoration: underline;
}

/* Header Branding & Logo */
.site-branding {
  width: 100%;

}

.header-logo {
  max-height: 120px;
  width: auto;
  display: block;
}

.site-logo {
  display: flex;
  align-items: center;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-primary-lighter);
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Search Form */
.search-form {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.search-form label {
  flex: 1;
  margin: 0;
}

.search-field {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.search-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 50, 132, 0.1);
}

.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.search-submit:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 50, 132, 0.3);
}

.search-submit svg {
  width: 20px;
  height: 20px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Mobile Menu Close Button - Hidden by default */
.mobile-menu-close {
  display: none;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 968px) {
  :root {
    --font-h1: 28px;
    --font-h2: 20px;
    --font-h3: 16px;
  }
  
  .main-navigation {
    position: relative;
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
  
  /* Mobile Menu Modal */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1999;
    overflow-y: auto;
    transition: right 0.3s ease;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Mobile Menu Close Button */
  .mobile-menu-close {
    display: block;
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-primary);
    transition: color 0.2s ease;
    z-index: 1000;
  }
  
  .mobile-menu-close:hover {
    color: var(--color-primary-light);
  }
  
  .mobile-menu-close svg {
    display: block;
    width: 28px;
    height: 28px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-search,
  .header-cta {
    display: none;
  }
  
  .header-reserved-area {
    margin-left: auto;
    margin-right: var(--spacing-sm);
  }
  
  .tours-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .tour-card-image {
    height: 300px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
  }
  
  .hero-slideshow-dots {
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    padding: 0 var(--spacing-sm);
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-card-image {
    height: 280px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-section {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-section:last-child {
    border-bottom: none;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo-img {
    max-width: 140px;
  }
  
  .footer-contact-info {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-section ul {
    padding: 0;
  }
  
  .footer-bottom {
    font-size: 12px;
    padding-top: var(--spacing-sm);
  }
  
  .hero-section {
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .hero-cta .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
    padding: 4px;
  }
  
  .hero-slideshow-dots {
    bottom: 15px;
    gap: 8px;
  }
  
  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

/* ===================================
   UTILIDADES
   =================================== */
.text-center {
  text-align: center;
}

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

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-light { background-color: #f8f9fa; }

.color-white { color: var(--color-white); }
.color-primary { color: var(--color-primary); }

/* ===================================
   LANGUAGE SWITCHER
   =================================== */
.language-switcher {
  position: relative;
  display: inline-block;
  margin: 0 var(--spacing-sm);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.language-toggle:hover {
  background-color: #f8f9fa;
  border-color: var(--color-primary-light);
}

.language-toggle span {
  text-transform: uppercase;
}

.language-toggle svg {
  width: 12px;
  height: 12px;
  transition: var(--transition);
}

.language-switcher.active .language-toggle svg {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

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

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background-color: #f8f9fa;
  color: var(--color-primary);
}

.language-option.active {
  background-color: var(--color-primary-lighter);
  color: var(--color-white);
  font-weight: 600;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: var(--color-white);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 126px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===================================
   NO TOURS MESSAGE
   =================================== */
#no-tours-message {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

#no-tours-message p {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-medium);
}

