/*
Theme Name: Toozle
Theme URI: https://example.com/toozle
Author: Galaxia Digital
Author URI: https://example.com
Description: Theme base Toozle (Bootstrap 5.3.x). Arquitectura modular con carpeta /functions.
Version: 1.2.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toozle
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   VARIABLES CSS - COLORES TOOZLE CORPORATIVOS
   ============================================ */
:root {
  /* Colores primarios del logo */
  --color-primary: #0066A1;
  --color-primary-dark: #004d7a;
  --color-primary-light: #0088cc;

  /* Color secundario (hojas) */
  --color-secondary: #F4B942;
  --color-secondary-dark: #d99e2b;
  --color-secondary-light: #f7c96b;

  /* Colores de apoyo */
  --color-accent: #F4B942;
  --color-dark: #1a2b3c;
  --color-gray: #5a6b7c;
  --color-light: #f5f7fa;
  --color-white: #ffffff;

  /* Nuevo color celeste para la sección Why */
  --color-sky: #4A90D9;
  --color-sky-light: #6BA3E0;

  /* Tipografia y sombras */
  --font-family: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

.is-home {
  padding-top: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

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

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  transition: all 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.is-home #navbar {
  background: transparent;
  box-shadow: none;
}

#navbar.scrolled,
.is-home #navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.brand-text {
  font-size: 1.25rem;
  color: var(--color-dark);
}

.is-home .brand-text {
  color: var(--color-white);
}

#navbar.scrolled .brand-text {
  color: var(--color-dark);
}

.navbar-menu {
  display: none;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

#navbar .nav-link {
  font-weight: 500;
  color: var(--color-gray) !important;
}

.is-home #navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

#navbar.scrolled .nav-link {
  color: var(--color-gray) !important;
}

/* CAMBIO 1: Hover amarillo en inicio sobre hero */
.is-home #navbar .nav-link:hover {
  color: var(--color-secondary) !important;
}

#navbar.scrolled .nav-link:hover {
  color: var(--color-primary) !important;
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

#navbar .navbar-toggler-icon,
.is-home #navbar .navbar-toggler-icon,
#navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CAMBIO 5: Menú móvil con fondo sólido para mejor visibilidad */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 43, 60, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--color-secondary);
}

/* ============================================
   LOGOS (blanco/color)
   ============================================ */
.logo-white {
  display: block;
  height: 48px !important;
}

.logo-color {
  display: none;
  height: 48px !important;
}

#navbar.scrolled .logo-white,
.is-home #navbar.scrolled .logo-white {
  display: none;
}

#navbar.scrolled .logo-color {
  display: block;
}

body:not(.is-home) .logo-white {
  display: none;
}

body:not(.is-home) .logo-color {
  display: block;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.is-home .hero {
  padding-top: 0;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY HERO - Descomentar para aplicar overlay azul */

.hero-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(to bottom, rgba(0, 102, 161, 0.7), rgba(0, 102, 161, 0.5), transparent);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--color-white) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 185, 66, 0.2);
  backdrop-filter: blur(10px);
  color: var(--color-secondary) !important;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244, 185, 66, 0.4);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title span {
  color: var(--color-secondary);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
  border: none !important;
  color: var(--color-white) !important;
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero .btn-outline {
  background: transparent !important;
  color: var(--color-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(0, 102, 161, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(244, 185, 66, 0.2);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary) !important;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================
   SECTIONS GENERALES
   ============================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 102, 161, 0.1);
  color: var(--color-primary);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 102, 161, 0.2);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.destination-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 102, 161, 0.1);
}

.destination-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(0, 102, 161, 0.3);
}

.destination-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(244, 185, 66, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.destination-rating svg {
  width: 16px;
  height: 16px;
  color: var(--color-dark);
  fill: var(--color-dark);
}

.destination-content {
  padding: 1.25rem;
}

.destination-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.destination-location svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.destination-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.destination-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: 0.875rem;
}

.destination-duration svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.destination-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 102, 161, 0.1);
}

.service-card:hover {
  background: linear-gradient(135deg, rgba(0, 102, 161, 0.05), rgba(244, 185, 66, 0.05));
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 102, 161, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* ============================================
   WHY CHOOSE US - CAMBIO 4: Fondo celeste, texto e iconos blancos
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--color-sky), var(--color-primary));
  color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-content {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .why-content {
    padding-right: 3rem;
  }
}

/* Badge en celeste - texto blanco */
.why-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .why-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .why-title {
    font-size: 3rem;
  }
}

.why-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Iconos con fondo celeste claro y blanco */
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.why-feature-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.why-feature-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.why-image {
  position: relative;
}

.why-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  filter: blur(20px);
}

.why-image img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .why-image img {
    height: 500px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 102, 161, 0.1);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 102, 161, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  fill: var(--color-secondary);
}

.testimonial-text {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 3rem 0;
}

.cta-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-beach.jpg') center/cover;
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content {
    padding: 4rem 3rem;
  }
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--color-light);
  padding: 3rem 0;
}

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

.newsletter-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.newsletter-title svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.newsletter-text {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 60, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  color: var(--color-gray);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-dark);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: 1.5rem;
}

.modal-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.modal-description {
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.modal-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
}

.modal-duration svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modal-rating svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  fill: var(--color-secondary);
}

.modal-rating span {
  font-weight: 600;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   SCROLLBAR - CAMBIO 2: Solo azul, sin gradiente amarillo
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* ============================================
   UTILIDADES RESPONSIVE
   ============================================ */
@media (max-width: 639px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .show-mobile {
    display: none !important;
  }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu li a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .menu li a {
  color: var(--color-gray);
}

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

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--color-gray);
  text-align: center;
  margin-top: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
}

.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO MODIFICACIONES - FONDO CELESTE
   ============================================ */

/* Badge celeste con texto blanco */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: none;
}

.hero-badge i {
    color: var(--color-white);
}

/* Stat cards con fondo celeste */
.stat-card {
    background: var(--color-primary);
    backdrop-filter: none;
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    border: none;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PAGE HEADER - FONDO CELESTE DEGRADADO
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--color-sky), var(--color-primary));
  color: var(--color-white);
}

/* ============================================
   FOOTER - 3 COLUMNAS IGUALES
   ============================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

/* ============================================
   MENU MOBILE - FONDO AZUL
   ============================================ */
@media (max-width: 991.98px) {
  #toozleNavbar {
    background: linear-gradient(135deg, var(--color-sky), var(--color-primary));
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
  }
  
  #toozleNavbar .nav-link {
    color: var(--color-white) !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  #toozleNavbar .nav-link:hover {
    color: var(--color-secondary) !important;
  }
  
  #toozleNavbar .btn-primary {
    margin-top: 1rem;
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
  }
}
/* ============================================
   MENU MOBILE - TEXTO BLANCO
   ============================================ */
@media (max-width: 991.98px) {
  #toozleNavbar .navbar-nav .nav-link {
    color: #ffffff !important;
  }
}