/* ============================================
   NMtravel - Stylesheet Principal
   Agencia de Viajes & Asesoria Migratoria
   Costa Rica | Afiliado a Canatur
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@300;400;500;600;700;800&family=Damion&display=swap');

/* ============================================
   VARIABLES CSS - Paleta basada en el logo
   ============================================ */
:root {
  /* Azules (del globo terraqueo) */
  --primary-color: #0099FF;
  --primary-light: #00C6E4;
  --primary-dark: #2682BF;
  --primary-gradient: linear-gradient(135deg, #0099FF 0%, #00C6E4 50%, #2682BF 100%);
  --primary-gradient-hover: linear-gradient(135deg, #2682BF 0%, #0099FF 100%);

  /* Dorados (del swoosh y avion) */
  --secondary-color: #FFB400;
  --secondary-light: #FFE199;
  --secondary-dark: #BF8700;
  --secondary-gradient: linear-gradient(135deg, #FFB400 0%, #FFE199 100%);

  /* Textos */
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #ffffff;
  --text-muted: #7a7a8a;

  /* Fondos */
  --background-light: #f8f9fc;
  --background-white: #ffffff;
  --background-dark: #0d1b2a;
  --background-overlay: rgba(13, 27, 42, 0.7);

  /* UI */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-full: 50px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 8px 30px rgba(0, 153, 255, 0.15);
  --box-shadow-card: 0 2px 15px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografia */
  --font-primary: 'Sofia Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Damion', cursive;

  /* Espaciado */
  --section-padding: 80px 0;
  --container-width: 1200px;
}

/* ============================================
   DARK MODE - Estilo iOS Apple
   ============================================ */
[data-theme="dark"] {
  --text-dark: #f0f0f5;
  --text-medium: #b8b8cc;
  --text-light: #ffffff;
  --text-muted: #8888a0;
  --background-light: #1c1c2e;
  --background-white: #121220;
  --background-dark: #0a0a15;
  --background-overlay: rgba(10, 10, 21, 0.85);
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --box-shadow-hover: 0 8px 30px rgba(0, 153, 255, 0.2);
  --box-shadow-card: 0 2px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] body {
  background-color: var(--background-white);
  color: var(--text-dark);
}

[data-theme="dark"] .navbar {
  background: rgba(18, 18, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(18, 18, 32, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar-menu a {
  color: #d0d0e0 !important;
}

[data-theme="dark"] .navbar-menu a:hover,
[data-theme="dark"] .navbar-menu a.active {
  color: var(--primary-light) !important;
}

[data-theme="dark"] .bg-light {
  background-color: var(--background-light) !important;
}

[data-theme="dark"] .section-header h2 {
  color: var(--text-dark);
}

[data-theme="dark"] .section-header p {
  color: var(--text-medium);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .mvv-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .video-guide-card,
[data-theme="dark"] .faq-item {
  background: rgba(28, 28, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dark);
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .catalog-card h3,
[data-theme="dark"] .why-card h3,
[data-theme="dark"] .mvv-card h3,
[data-theme="dark"] .video-guide-info h3 {
  color: var(--text-dark);
}

[data-theme="dark"] .service-card p,
[data-theme="dark"] .catalog-card p,
[data-theme="dark"] .why-card p,
[data-theme="dark"] .mvv-card p,
[data-theme="dark"] .video-guide-info p,
[data-theme="dark"] .card-body p {
  color: var(--text-medium);
}

[data-theme="dark"] .card-body .benefits li {
  color: var(--text-medium);
}

[data-theme="dark"] .process-step {
  background: rgba(28, 28, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .process-step h3,
[data-theme="dark"] .process-step p {
  color: var(--text-dark);
}

[data-theme="dark"] .footer {
  background: #0a0a15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer a,
[data-theme="dark"] .footer li {
  color: var(--text-medium);
}

[data-theme="dark"] .faq-question {
  color: var(--text-dark);
}

[data-theme="dark"] .faq-answer {
  color: var(--text-medium);
}

[data-theme="dark"] .contact-form-wrapper,
[data-theme="dark"] .contact-info-wrapper {
  background: rgba(28, 28, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: rgba(18, 18, 32, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-dark) !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .popup-content {
  background: rgba(28, 28, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .popup-content h2,
[data-theme="dark"] .popup-content h3 {
  color: var(--text-dark);
}

[data-theme="dark"] .popup-content p {
  color: var(--text-medium);
}

/* Dark mode: override inline hardcoded backgrounds & text colors (visas, contacto, etc.) */
[data-theme="dark"] section[style*="background: linear-gradient"],
[data-theme="dark"] section[style*="background:linear-gradient"] {
  background: var(--background-light) !important;
}

[data-theme="dark"] span[style*="color: #333"] {
  color: var(--text-dark) !important;
}

[data-theme="dark"] p[style*="color: #555"],
[data-theme="dark"] p[style*="color: #888"] {
  color: var(--text-medium) !important;
}

[data-theme="dark"] p[style*="color: #BF8700"] {
  color: #FFD060 !important;
}

[data-theme="dark"] h2[style*="margin-bottom"],
[data-theme="dark"] h3[style*="color: var(--text-dark)"] {
  color: var(--text-dark);
}

[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info {
  background: rgba(28, 28, 46, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .contact-info h3,
[data-theme="dark"] .contact-info h4,
[data-theme="dark"] .contact-form h3 {
  color: var(--text-dark) !important;
}

[data-theme="dark"] .contact-info p,
[data-theme="dark"] .contact-info-item p,
[data-theme="dark"] p[style*="color: var(--text-medium)"] {
  color: var(--text-medium) !important;
}

[data-theme="dark"] .contact-info-item {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark"] label {
  color: var(--text-dark) !important;
}

[data-theme="dark"] .step-number {
  background: var(--primary-gradient);
  color: #fff;
}

[data-theme="dark"] .popup {
  background: rgba(28, 28, 46, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .popup h3 {
  color: var(--text-dark) !important;
}

[data-theme="dark"] .popup p {
  color: var(--text-medium) !important;
}

/* ============================================
   LIGHTBOX - Vista HD de imágenes
   ============================================ */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* ============================================
   VIDEO SHOWCASE - Videos Verticales (9:16)
   ============================================ */
.video-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.video-showcase-player {
  position: relative;
  background: #000;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.video-showcase-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-showcase-info {
  padding: 1.5rem 1.5rem 2rem;
}

.video-showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0 0.6rem;
}

.video-showcase-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}

[data-theme="dark"] .video-showcase-card {
  background: rgba(28, 28, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .video-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   DARK MODE TOGGLE - Liquid Glass iOS
   ============================================ */
.dark-mode-toggle {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.dark-mode-toggle:active {
  transform: scale(0.95);
}

.dark-mode-toggle .icon-sun,
.dark-mode-toggle .icon-moon {
  position: absolute;
  font-size: 1.35rem;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.dark-mode-toggle .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.dark-mode-toggle.active .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.dark-mode-toggle.active .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .dark-mode-toggle {
  background: rgba(28, 28, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .navbar-menu {
  background: rgba(18, 18, 32, 0.95);
}

[data-theme="dark"] .navbar-menu a {
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

/* Liquid Glass cards effect in dark mode */
[data-theme="dark"] .stat-item {
  background: rgba(28, 28, 46, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}

[data-theme="dark"] .destination-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .section-tag {
  background: rgba(0, 153, 255, 0.15);
  color: var(--primary-light);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--background-white);
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-primary);
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-padding);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-tag {
  display: inline-block;
  background: var(--secondary-gradient);
  color: var(--text-dark);
  padding: 6px 20px;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header h2 .accent {
  font-family: var(--font-accent);
  color: var(--secondary-color);
  font-weight: 400;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================
   BOTONES
   ============================================ */
/* ---- Botones Liquid Glass ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 120%;
}

/* Celeste — Liquid Glass */
.btn-primary {
  background: linear-gradient(135deg, rgba(0,153,255,0.75) 0%, rgba(0,198,228,0.65) 100%);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,153,255,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0,153,255,0.9) 0%, rgba(38,130,191,0.85) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,153,255,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Amarillo dorado — Liquid Glass */
.btn-secondary {
  background: linear-gradient(135deg, rgba(255,180,0,0.8) 0%, rgba(255,225,153,0.6) 100%);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(255,180,0,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255,180,0,0.95) 0%, rgba(191,135,0,0.85) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,180,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Outline — Liquid Glass transparente */
.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.92);
  color: var(--primary-dark);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* WhatsApp — Liquid Glass verde */
.btn-whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.8) 0%, rgba(18,140,126,0.7) 100%);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.95) 0%, rgba(18,140,126,0.9) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Dark mode: botones con glass más intenso */
[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, rgba(0,153,255,0.5) 0%, rgba(0,198,228,0.4) 100%);
  border: 1px solid rgba(0,153,255,0.35);
  box-shadow: 0 4px 16px rgba(0,153,255,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, rgba(0,153,255,0.7) 0%, rgba(0,198,228,0.6) 100%);
  box-shadow: 0 8px 28px rgba(0,153,255,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

[data-theme="dark"] .btn-secondary {
  background: linear-gradient(135deg, rgba(255,180,0,0.55) 0%, rgba(255,225,153,0.35) 100%);
  border: 1px solid rgba(255,180,0,0.35);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,180,0,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

[data-theme="dark"] .btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255,180,0,0.75) 0%, rgba(191,135,0,0.6) 100%);
  box-shadow: 0 8px 28px rgba(255,180,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

[data-theme="dark"] .btn-outline {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

[data-theme="dark"] .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .btn-whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.5) 0%, rgba(18,140,126,0.4) 100%);
  border: 1px solid rgba(37,211,102,0.3);
}

/* ============================================
   NAVEGACION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

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

.navbar-logo img {
  height: 55px;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 45px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-menu a {
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .navbar-menu a {
  color: var(--text-dark);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--secondary-color);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 60%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

/* hero-video removido - se usa slider HD */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.8) 0%,
    rgba(38, 130, 191, 0.5) 50%,
    rgba(0, 153, 255, 0.4) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content .hero-tag {
  display: inline-block;
  background: rgba(255, 180, 0, 0.2);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 8px 24px;
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .accent {
  font-family: var(--font-accent);
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 4rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero slider para imagenes de fondo */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.hero-slider .slide.active {
  opacity: 1;
}

/* Hero para paginas internas */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.85) 0%,
    rgba(38, 130, 191, 0.6) 100%
  );
}

.page-hero-content {
  text-align: center;
  color: var(--text-light);
  padding: 140px 20px 60px;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero-content h1 .accent {
  font-family: var(--font-accent);
  color: var(--secondary-color);
  font-weight: 400;
}

.page-hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

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

/* ============================================
   SERVICIOS DESTACADOS (Inicio)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow-card);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 198, 228, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--primary-gradient);
  transform: scale(1.1);
}

.service-card:hover .icon svg {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .card-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card .card-link:hover {
  color: var(--secondary-color);
  gap: 10px;
}

/* ============================================
   TARJETAS DE VISA / VIAJES
   ============================================ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.catalog-card {
  background: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow-card);
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.catalog-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.catalog-card .card-image .card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.catalog-card .card-image .card-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: var(--border-radius-full);
  font-size: 1rem;
  font-weight: 700;
}

.catalog-card .card-body {
  padding: 25px;
}

.catalog-card .card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.catalog-card .card-body p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.catalog-card .card-body .benefits {
  margin-bottom: 20px;
}

.catalog-card .card-body .benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.catalog-card .card-body .benefits li::before {
  content: '\2713';
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
}

.catalog-card .card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-card .card-actions .btn {
  flex: 1;
  min-width: 140px;
}

/* ============================================
   DESTINOS
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  group: true;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.destination-card .destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.9));
  color: var(--text-light);
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  padding-bottom: 40px;
}

.destination-card .destination-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.destination-card .destination-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.destination-card .destination-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.destination-card:hover .destination-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   POR QUE ELEGIRNOS
   ============================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.25);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   PROCESO / PASOS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials-section {
  background: var(--background-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--box-shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-card .author-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-card .author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION (llamada a la accion)
   ============================================ */
.cta-section {
  background: var(--primary-gradient);
  padding: 70px 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 180, 0, 0.08);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-section h2 .accent {
  font-family: var(--font-accent);
  color: var(--secondary-color);
  font-weight: 400;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-section .btn {
  margin: 0 8px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background-white);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  box-shadow: var(--box-shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 198, 228, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--primary-color);
}

.faq-item.active .faq-question .faq-icon {
  background: var(--primary-gradient);
  color: var(--text-light);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   FORMULARIO DE CONTACTO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8f0;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding: 20px 0;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f5;
}

.contact-info-item .info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 198, 228, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-info-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--background-dark);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 55px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.footer-column h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom .canatur-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ============================================
   BOTON FLOTANTE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

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

/* ============================================
   POPUPS
   ============================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.popup {
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  max-width: 480px;
  width: 90%;
  padding: 40px 35px;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  transition: var(--transition);
}

.popup-close:hover {
  background: #fee;
  color: #e74c3c;
}

.popup .popup-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.popup h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.popup p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.popup .popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup .popup-actions .btn {
  width: 100%;
}

/* ============================================
   ANIMACIONES SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SECCIONES ESPECIALES
   ============================================ */
/* Stats / Numeros */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

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

.stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item .stat-number .accent {
  font-family: var(--font-accent);
  color: var(--secondary-color);
}

.stat-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Background alternado */
.bg-light {
  background: var(--background-light);
}

.bg-dark {
  background: var(--background-dark);
  color: var(--text-light);
}

.bg-dark .section-header h2 {
  color: var(--text-light);
}

.bg-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Mision Vision Valores */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mvv-card {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--box-shadow-card);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.mvv-card:nth-child(2) {
  border-left-color: var(--secondary-color);
}

.mvv-card:nth-child(3) {
  border-left-color: var(--primary-light);
}

.mvv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.mvv-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Tarjetas con imagenes de flyer (proporcion vertical) */
.catalog-card.flyer-card .card-image {
  height: auto;
  max-height: 420px;
}

.catalog-card.flyer-card .card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--background-light);
}

/* Banner promocional destacado */
.promo-banner {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.promo-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Logo del navbar sobre fondo oscuro (hero) */
.navbar-logo img {
  filter: brightness(1);
}

/* Galeria de imagenes simple */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   VIDEO GUIDES
   ============================================ */
.video-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-guide-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

.video-guide-info {
  padding: 1.5rem;
}

.video-guide-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.video-guide-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content h1 .accent {
    font-size: 3.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .video-guides-grid {
    grid-template-columns: 1fr;
  }

  /* Navegacion Mobile */
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--background-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 5px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu a {
    color: var(--text-dark) !important;
    padding: 12px 0;
    width: 100%;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f5;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h1 .accent {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Page Hero */
  .page-hero {
    min-height: 35vh;
  }

  .page-hero-content {
    padding: 110px 20px 40px;
  }

  .page-hero-content h1 {
    font-size: 2.2rem;
  }

  /* Grids */
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Popup */
  .popup {
    padding: 30px 25px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.8rem;
  }

  /* Testimonials */
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h1 .accent {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .stat-item .stat-number {
    font-size: 2.2rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* ============================================
   LOADING ANIMATION (opcional)
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 153, 255, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   MISC
   ============================================ */
::selection {
  background: var(--primary-color);
  color: var(--text-light);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

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

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