/* ---------- RESET ---------- */
* { margin:0; padding:0; box-sizing:border-box; }
html,body { height:100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, "Helvetica Neue", Arial;
  background: #ffffff;
  color:#000000;
  overflow-x:hidden;
}

/* ---------- LOGO SUPERPUESTO ---------- */
.logo-superpuesto {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999999;
  pointer-events: none; /* Esto podría interferir, vamos a cambiarlo */
}

.logo-superpuesto a {
  pointer-events: auto; /* Permitir clicks en el enlace */
  display: block;
  cursor: pointer;
}

.logo-superpuesto img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  margin-top: -18px;
  transition: transform 0.3s ease; /* Opcional: agregar efecto hover */
}

/* Efecto hover opcional */
.logo-superpuesto a:hover img {
  transform: scale(1.05);
}

/* ---------- TOP BAR (Idioma, Clima, Redes) ---------- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(128, 168, 255, 0.377);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px;
}
.top-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- BOTONES DE CONTACTO ---------- */
.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color:#ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.whatsapp-btn {
  background: linear-gradient(180deg, rgba(37,211,102,0.9), rgba(37,211,102,0.7));
}

.email-btn {
  background: linear-gradient(180deg, rgba(66,133,244,0.9), rgba(66,133,244,0.7));
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.contact-btn svg {
  flex-shrink: 0;
}

/* ---------- MUTE BUTTON (en top bar) ---------- */
.mute-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(30,144,255,0.9), rgba(0,80,180,0.9));
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

.mute-btn.muted { 
  background: linear-gradient(180deg, rgba(200,30,30,0.9), rgba(140,20,20,0.9)); 
}

.mute-btn:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Indicadores de estado de mute */
.mute-btn.muted::after {
  content: "🔇";
  position: absolute;
  font-size: 12px;
  top: -5px;
  right: -5px;
}

.mute-btn:not(.muted)::after {
  content: "🔊";
  position: absolute;
  font-size: 12px;
  top: -5px;
  right: -5px;
}

/* ---------- WEATHER ROTATOR ---------- */
.weather-rotator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 12px;
  background: rgba(255, 181, 22, 0.623);
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 120px;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.weather-city { 
  font-weight: 700;
  font-size: 13px;
}

.weather-temp { 
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.9;
}

/* ---------- SOCIAL ICONS ---------- */
.socials { 
  display: flex;
  gap: 8px;
  align-items: center;
}

.social { 
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social svg { 
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: all 0.3s ease;
}

.social:hover { 
  transform: scale(1.12);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social:active { 
  transform: scale(.95);
}

/* Network colors on hover */
.social[data-network="facebook"]:hover { 
  background: #1877F2;
}

.social[data-network="instagram"]:hover { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social[data-network="youtube"]:hover { 
  background: #FF0000;
}

.social[data-network="facebook"]:hover svg,
.social[data-network="instagram"]:hover svg,
.social[data-network="youtube"]:hover svg { 
  fill: white;
  transform: scale(1.1);
}

/* Click animation */
.social.clicked { 
  animation: clickfade .6s forwards;
}

@keyframes clickfade { 
  0% { transform: scale(1); opacity:1 }
  100% { transform: scale(1.25); opacity:0 }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 28px;
  gap: 16px;
  z-index: 100;
  background: rgba(10,18,40,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.visible {
  transform: translateY(0);
  opacity: 1;
}

/* left logo */
.nav-left .logo img { 
  width: 120px;
  display: block;
 
}

/* center menu */
.nav-center { 
  flex: 1;
  display: flex;
  justify-content: right;
}

.menu { 
  display: flex;
  list-style: none;
}

.menu li {
  width: 160px;
  text-align: center;
  position: relative;
  margin-left: -1px;
}

.menu li a {
  display: block;
  padding: 12px 8px 6px 8px;
  width: 100%;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.336);
  border-left: 1px solid rgba(180,180,180,0.45);
  border-right: 1px solid rgba(180,180,180,0.45);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.menu li a .desc {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 400;
}

.menu li a:hover { 
  background: rgba(255,255,255,0.06);
}

/* submenu image drop */
.submenu-container { 
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .45s ease;
  pointer-events: none;
  z-index: 1101;
}

.menu li:hover .submenu-container { 
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu-container img { 
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* submenus column */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 150px;
  background: rgba(0,0,0,0.95);
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateX(14px);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1102;
}

.menu li:hover .submenu { 
  opacity: 1;
  transform: translateX(0);
}

/* Permitir hover en submenus */
.submenu-container:hover,
.submenu:hover {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* redes submenu to left */
.submenu-container.left { 
  left: auto;
  right: 0;
}

.submenu.left { 
  left: auto;
  right: 100%;
  transform: translateX(-14px);
}

.menu li:hover .submenu.left { 
  opacity: 1;
  transform: translateX(0);
}

/* ---------- SELECTOR DE IDIOMAS ---------- */


.language-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  }

.language-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.flag-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(10,18,40,0.95);
  backdrop-filter: blur(15px);
  border-radius: 8px;
 
  min-width: 140px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 90002;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.language-option:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.language-option .flag-icon {
  width: 18px;
  height: 18px;
}

/* ---------- HERO ---------- */
.hero { 
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: block;
  }

/* media items */
#hero-media-container video, #hero-media-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

#hero-media-container .active { 
  opacity: 1;
  z-index: 1;
}

/* overlay only left 33% */
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 33%;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0));
  z-index: 2;
}

/* hero text area restricted to left side */
.hero-text {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 30%;
  color: #cce6ff;
}

.hero-text h1 { 
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.hero-text p { 
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.4;
}

.btn-hero {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: 28px;
  background: #ff8a00;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

.btn-hero:hover { 
  transform: translateY(-3px);
}

/* ---------- PROMO IFRAME MEJORADO PARA MÓVILES ---------- */
.promo-iframe-container {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.promo-iframe-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
  overflow: hidden;
  scrolling: "no";
}

/* Mejoras específicas para móviles */
@media (max-width: 1000px) {
  .promo-iframe-container {
    height: auto;
    overflow: visible;
  }
  
  .promo-iframe-container iframe {
    height: 1000px; /* Más alto en tablets */
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto; /* Permitir scroll vertical */
  }
}

@media (max-width: 768px) {
  .promo-iframe-container iframe {
    height: 900px; /* Aún más alto en móviles medianos */
    transform: none; /* Eliminar transformaciones que puedan causar problemas */
  }
}

@media (max-width: 600px) {
  .promo-iframe-container {
    padding: 0;
    margin: 0;
  }
  
  .promo-iframe-container iframe {
    height: 1500px; /* Muy alto para móviles pequeños */
    width: 100%;
    min-height: 800px; /* Altura mínima garantizada */
    overflow-y: auto; /* Scroll vertical siempre disponible */
    -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
  }
}

@media (max-width: 400px) {
  .promo-iframe-container iframe {
    height: 1550px; /* Máxima altura para móviles muy pequeños */
    min-height: 850px;
  }
}

/* Asegurar que el iframe sea interactivo en todos los dispositivos */
.promo-iframe-container iframe {
  pointer-events: auto;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #cce6ff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff8a00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 3px solid #ff8a00;
}

.feature-icon {
  font-size: 1.2rem;
}

/* ---------- PACKAGES SECTION ---------- */
.packages-section {
  padding: 80px 20px;
  background: #ffffff;
}

.packages-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff8a00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

/* ---------- PACKAGE CARD MEJORADO ---------- */
.package-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255,138,0,0.2);
  border-color: rgba(255,138,0,0.3);
}

/* Badge de descuento */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}

/* Image Carousel */
.package-carousel {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.carousel-images {
  position: relative;
  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ff8a00;
  transform: scale(1.2);
}

/* Card Content */
.card-content {
  padding: 25px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.package-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  flex: 1;
  color: #2d3436;
}

.package-duration {
  font-size: 0.9rem;
  color: #636e72;
  margin-bottom: 10px;
}

.price-container {
  text-align: right;
}

.original-price {
  font-size: 1rem;
  color: #636e72;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff8a00;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.7;
  display: block;
}

.package-description {
  color: #000000;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Includes Section */
.package-includes {
  margin-bottom: 20px;
}

.includes-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 8px;
}

.includes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.include-item {
  background: rgb(1, 2, 70);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #636e72;
  flex-wrap: wrap;
}

.payment-icons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.payment-icon {
  width: auto;
  min-width: 24px;
  height: 16px;
  background: #f1f2f6;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #2d3436;
  padding: 2px 6px;
  white-space: nowrap;
}

/* Features */
.package-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
 font-weight: 600;
  color: #000000;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255,138,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Botones del card */
.package-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-whatsapp {
  flex: 1;
  padding: 12px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-reserve-card {
  flex: 1;
  padding: 12px;
  background: linear-gradient(45deg, #ff8a00, #ffcc00);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-reserve-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,138,0,0.4);
}

/* ---------- CLIENT VIDEOS SECTION ---------- */
.client-videos-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a1429 0%, #1a2a4a 100%);
  color: white;
  overflow: hidden;
}

.client-videos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff8a00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cover Flow Container */
.coverflow-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
  perspective: 1200px;
  overflow: visible;
}

.coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.coverflow-item {
  position: absolute;
  width: 280px;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
  background: #000;
  border: 3px solid transparent;
}

/* Efecto de reflexión */
.coverflow-item::after {
  content: '';
  position: absolute;
  bottom: -70%;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
  transform: scaleY(-1);
  opacity: 0.3;
  pointer-events: none;
  border-radius: 15px;
}

.coverflow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.coverflow-item .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  padding: 15px 15px 12px;
  color: white;
  transform: translateZ(20px);
  transition: all 0.3s ease;
}

.coverflow-item .video-info h4 {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.coverflow-item .video-info p {
  margin: 0;
  font-size: 0.7rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Video Player en el item principal */
.coverflow-item .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: none;
  border-radius: 15px;
}

.coverflow-item.active .video-player {
  display: block;
}

.coverflow-item .video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Estados de los videos en el cover flow */
.coverflow-item[data-position="-4"] { 
  transform: translateX(-700px) rotateY(70deg) scale(0.5); 
  z-index: 1; 
  opacity: 0.3;
  filter: blur(3px);
}

.coverflow-item[data-position="-3"] { 
  transform: translateX(-500px) rotateY(50deg) scale(0.6); 
  z-index: 2; 
  opacity: 0.4;
  filter: blur(2px);
}

.coverflow-item[data-position="-2"] { 
  transform: translateX(-300px) rotateY(30deg) scale(0.7); 
  z-index: 3; 
  opacity: 0.5;
  filter: blur(1px);
}

.coverflow-item[data-position="-1"] { 
  transform: translateX(-150px) rotateY(15deg) scale(0.85); 
  z-index: 4; 
  opacity: 0.7;
}

.coverflow-item[data-position="0"] { 
  transform: translateX(0) rotateY(0deg) scale(1); 
  z-index: 5; 
  opacity: 1;
  border-color: #ff8a00;
  box-shadow: 0 30px 60px rgba(255,138,0,0.4);
}

.coverflow-item[data-position="1"] { 
  transform: translateX(150px) rotateY(-15deg) scale(0.85); 
  z-index: 4; 
  opacity: 0.7;
}

.coverflow-item[data-position="2"] { 
  transform: translateX(300px) rotateY(-30deg) scale(0.7); 
  z-index: 3; 
  opacity: 0.5;
  filter: blur(1px);
}

.coverflow-item[data-position="3"] { 
  transform: translateX(500px) rotateY(-50deg) scale(0.6); 
  z-index: 2; 
  opacity: 0.4;
  filter: blur(2px);
}

.coverflow-item[data-position="4"] { 
  transform: translateX(700px) rotateY(-70deg) scale(0.5); 
  z-index: 1; 
  opacity: 0.3;
  filter: blur(3px);
}

/* Estados de transición para el efecto de movimiento */
.coverflow-item.moving {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cover Flow Controls */
.coverflow-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.coverflow-prev,
.coverflow-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 226, 193, 0.322);
  color: rgba(53, 32, 32, 0.781);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 157, 28, 0.507);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.coverflow-prev:hover,
.coverflow-next:hover {
  background: #ff8a00;
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(255,138,0,0.5);
}

.coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.coverflow-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coverflow-dot.active {
  background: #ff8a00;
  transform: scale(1.4);
  border-color: white;
  box-shadow: 0 0 15px rgba(255,138,0,0.6);
}

.coverflow-dot:hover {
  background: rgba(255,138,0,0.7);
  transform: scale(1.2);
}

/* Auto-play indicator - ELIMINADO */
.auto-play-indicator {
  display: none !important;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Loading spinner */
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid #ff8a00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 7;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- MODALES MEJORADOS ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(145deg, #2d3f52, #0f1a25);
  margin: 5% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  border: 1px solid rgba(255,138,0,0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #ff8a00;
  z-index: 2001;
}

.close-modal:hover {
  color: #ffcc00;
}

.modal-header {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  color: #f39a14;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #faa23e;
}

.modal-package-info {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  
}

.package-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.package-info-label {
  color: rgba(255,255,255,0.7);
}

.package-info-value {
  color: white;
  font-weight: 500;
}

.modal-package-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff8a00;
  text-align: center;
  margin: 15px 0;
}

.form-group {
  margin-bottom: 20px;
  
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fff;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff8a00;
  background: rgba(255,255,255,0.15);
}

.people-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #f3c806;
}

.people-group {
  flex: 1;
}

.people-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.counter-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: rgba(255,138,0,0.3);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.counter-btn:hover {
  background: rgba(255,138,0,0.5);
}

.counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.counter-value {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
  color: white;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option {
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option.selected {
  border-color: #ff8a00;
  background: rgba(255,138,0,0.1);
}

.payment-percent {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff8a00;
}

.payment-amount {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

.total-price {
  background: rgba(255,138,0,0.1);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,138,0,0.3);
}

.total-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
  color: white;
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8a00;
}

.modal-buttons {
  display: flex;
  gap: 12px;
}

.btn-modal {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cancel {
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn-cancel:hover {
  background: rgba(255,255,255,0.2);
}

.btn-send {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-reserve-modal {
  background: linear-gradient(45deg, #ff8a00, #ffcc00);
  color: #000000;
}

.btn-reserve-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,138,0,0.4);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.video-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.video-modal-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-video-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-video-modal:hover {
  background: rgba(255,138,0,0.9);
}

/* ---------- FOOTER MEJORADO ---------- */
.footer {
  background: linear-gradient(135deg, #0a1429 0%, #1a2a4a 100%);
  color: #ddd;
  padding: 36px 0 0;
  margin-top: 20px;
  border-top: 4px solid #ff8a00;
  width: 100%;
}

.footer .container { 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; /* Más espacio entre columnas */
  max-width: 1400px; /* Ancho máximo más grande */
  margin: 0 auto;
  padding: 0 40px; /* Más padding lateral */
  width: 100%;
  box-sizing: border-box;
}

.footer-col { 
  padding: 12px;
  width: 100%;
}

/* Resto de estilos igual... */


.footer h3, .footer h4 { 
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer h3::after, .footer h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff8a00;
}

.footer a { 
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover { 
  color: #ff8a00;
}
/* ---------- SECCIÓN CLIMA ---------- */
.weather-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-selector select {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgb(255, 123, 0);
  font-size: 14px;
  margin-bottom: 15px;
}

.weather-selector select:focus {
  outline: none;
  border-color: #ff8a00;
}

.weather-display {
  display: flex;
  align-items: center;
  gap: 15px;
}

.weather-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.weather-animation {
  width: 60px;
  height: 60px;
  position: relative;
}

/* Animaciones para diferentes condiciones climáticas */
.weather-animation.sunny::before {
  content: '☀️';
  font-size: 50px;
  animation: sunny 3s infinite alternate;
}

.weather-animation.cloudy::before {
  content: '☁️';
  font-size: 50px;
  animation: cloudy 4s infinite ease-in-out;
}

.weather-animation.rainy::before {
  content: '🌧️';
  font-size: 50px;
  animation: rainy 2s infinite;
}

.weather-animation.stormy::before {
  content: '⛈️';
  font-size: 50px;
  animation: stormy 3s infinite;
}

.weather-animation.snowy::before {
  content: '❄️';
  font-size: 50px;
  animation: snowy 4s infinite;
}

@keyframes sunny {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes cloudy {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes rainy {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes stormy {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes snowy {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.weather-info {
  flex: 1;
}

.city-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.temperature {
  font-size: 24px;
  font-weight: 700;
  color: #ff8a00;
  margin-bottom: 5px;
}

.weather-description {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.detail-label {
  opacity: 0.7;
}

.detail-value {
  font-weight: 500;
}

/* ---------- SECCIÓN MAPA ---------- */
.map-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info {
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
}

.map-info p {
  margin: 5px 0;
  font-size: 14px;
}

.map-info p:first-child {
  font-weight: 700;
  color: #ff8a00;
}

/* ---------- SECCIÓN CONTACTOS Y REDES ---------- */
.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details a {
  font-size: 14px;
}

.footer-socials h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook {
  background: linear-gradient(135deg, #1877F2, #0d5fbf);
  color: white;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584);
  color: white;
}

.social-btn.youtube {
  background: linear-gradient(135deg, #FF0000, #cc0000);
  color: white;
}

.social-btn.tiktok {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}

.social-btn svg {
  flex-shrink: 0;
}

/* ---------- FOOTER BOTTOM INDEPENDIENTE ---------- */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100vw; /* Viewport width completo */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 60px; /* Padding generoso */
  width: 100%;
  max-width: 100%; /* Sin límite máximo */
  box-sizing: border-box;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
  min-width: 200px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #ff8a00;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {

    .language-btn {
    width: 28px;
    height: 28px;
    margin-right: 50px;
  }
  
  .flag-icon {
    width: 26px;
    height: 26px;
  }
  
  .language-dropdown {
    right: 50px;
  }


  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer-col.footer-map {
    grid-column: 1 / -1;
  }
  
  .social-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-text { 
    max-width: 45%;
    left: 6%;
  }
  
  .nav-center { 
    display: none;
  }
  
  .top-bar-content { 
    gap: 12px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .coverflow-container {
    height: 350px;
  }
  
  .coverflow-item {
    width: 220px;
    height: 260px;
  }
  
  .logo-superpuesto {
   margin-top: -10px;
    left: 15px;
  }
  
  .logo-superpuesto img {
    width: 140px;
  }
  
  .package-buttons {
    flex-direction: column;
  }
  
  .people-selector {
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
  }
  
  .weather-display {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .social-buttons {
    grid-template-columns: 1fr 1fr;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .coverflow-container {
    height: 380px;
    max-width: 900px;
  }
  
  .coverflow-item {
    width: 200px;
    height: 260px;
  }
  
  .coverflow-item[data-position="-4"] { transform: translateX(-480px) rotateY(70deg) scale(0.5); }
  .coverflow-item[data-position="-3"] { transform: translateX(-340px) rotateY(50deg) scale(0.6); }
  .coverflow-item[data-position="-2"] { transform: translateX(-200px) rotateY(30deg) scale(0.7); }
  .coverflow-item[data-position="-1"] { transform: translateX(-100px) rotateY(15deg) scale(0.85); }
  .coverflow-item[data-position="0"] { transform: translateX(0) rotateY(0deg) scale(1); }
  .coverflow-item[data-position="1"] { transform: translateX(100px) rotateY(-15deg) scale(0.85); }
  .coverflow-item[data-position="2"] { transform: translateX(200px) rotateY(-30deg) scale(0.7); }
  .coverflow-item[data-position="3"] { transform: translateX(340px) rotateY(-50deg) scale(0.6); }
  .coverflow-item[data-position="4"] { transform: translateX(480px) rotateY(-70deg) scale(0.5); }
  
  .coverflow-controls {
    padding: 0 20px;
  }
  
  .coverflow-prev,
  .coverflow-next {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .coverflow-item .video-info h4 {
    font-size: 0.8rem;
  }
  
  .coverflow-item .video-info p {
    font-size: 0.6rem;
  }
}

@media (max-width: 600px) {

  
  .hero-text h1 { 
    font-size: 1.4rem;
  }
  
  .top-bar { 
    padding: 0 15px;
  }
  
  .weather-rotator { 
    display: none;
  }
  
  .nav-left .logo img { 
    width: 90px;
  }
  
  .footer .container { 
    flex-direction: column;
  }
  
  .top-bar-content { 
    gap: 8px;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .package-features {
    grid-template-columns: 1fr;
  }
  
  .coverflow-container {
    height: 320px;
  }
  
  .coverflow-item {
    width: 160px;
    height: 220px;
  }
  
  .coverflow-item[data-position="-4"] { transform: translateX(-380px) rotateY(70deg) scale(0.5); }
  .coverflow-item[data-position="-3"] { transform: translateX(-270px) rotateY(50deg) scale(0.6); }
  .coverflow-item[data-position="-2"] { transform: translateX(-160px) rotateY(30deg) scale(0.7); }
  .coverflow-item[data-position="-1"] { transform: translateX(-80px) rotateY(15deg) scale(0.85); }
  .coverflow-item[data-position="0"] { transform: translateX(0) rotateY(0deg) scale(1); }
  .coverflow-item[data-position="1"] { transform: translateX(80px) rotateY(-15deg) scale(0.85); }
  .coverflow-item[data-position="2"] { transform: translateX(160px) rotateY(-30deg) scale(0.7); }
  .coverflow-item[data-position="3"] { transform: translateX(270px) rotateY(-50deg) scale(0.6); }
  .coverflow-item[data-position="4"] { transform: translateX(380px) rotateY(-70deg) scale(0.5); }
  
  .coverflow-controls {
    display: none;
  }
  
  .coverflow-dots {
    margin-top: 40px;
  }
  
  .coverflow-item .video-info {
    padding: 10px 10px 8px;
  }
  
  .coverflow-item .video-info h4 {
    font-size: 0.75rem;
  }
  
  .coverflow-item .video-info p {
    font-size: 0.55rem;
  }
  
  .logo-superpuesto {
    top: 10px;
    left: 10px;
  }
  
  .logo-superpuesto img {
    width: 80px;
  }
  
  .contact-btn span {
    display: none;
  }
  
  .contact-btn {
    padding: 8px;
  }
  
  .contact-btn svg {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 15px 0;
  }
  
  .footer-col {
    padding: 5px;
  }
  
  .social-buttons {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .contact-btn {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
  
  .language-btn {
    width: 28px;
    height: 28px;
    margin-right: 30px;
  }
  
  .flag-icon {
    width: 16px;
    height: 16px;
  }
  
  .language-dropdown {
    right: 50px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .coverflow-item .video-play-icon {
    opacity: 1;
  }
  
  .hero {
    touch-action: pan-y;
  }
  
  #hero-media-container {
    cursor: pointer;
  }
}

/* ===== MODAL COOKIES ===== */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.cookie-modal-content {
  background: white;
  width: 90%;
  max-width: 420px;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  text-align: center;
}

/* Animación */
.animate-modal {
  animation: modalEnter 0.55s ease forwards;
}
@keyframes modalEnter {
  0% { opacity: 0; transform: translateY(40px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.cookie-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: 0.25s;
}

.cookie-btn.primary {
  background: #ff8a00;
  color: black;
}
.cookie-btn.primary:hover {
  background: #ffb347;
}

.cookie-btn.secondary {
  background: #ededed;
  color: #333;
}
.cookie-btn.secondary:hover {
  background: #e2e2e2;
}

/* Efecto blur para el contenido de la página */
#page-content.blurred {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
  position: relative;
}

/* Asegurar que las barras superiores tengan z-index más alto que el modal */
.top-bar, .navbar, .logo-superpuesto {
  z-index: 10001 !important;
}

/* Asegurar que los elementos interactivos de las barras funcionen */
.mute-btn, .socials, .menu li {
  position: relative;
  z-index: 10002 !important;
}

/* ---------- MENÚ MÓVIL ---------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 50px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  z-index: 10002;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 10001;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-header {
  padding: 20px;
  background: #ff8a00;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.mobile-nav-link:hover {
  background: #f8f8f8;
}

.mobile-nav-link i {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.mobile-nav-link .desc {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 4px;
}

.mobile-submenu {
  display: none;
  background: #f8f8f8;
  padding: 10px 0;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 20px 10px 56px;
  color: #555;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-submenu a:hover {
  background: #f0f0f0;
}

.mobile-nav-link.has-submenu::after {
  content: "›";
  margin-left: auto;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mobile-nav-link.has-submenu.active::after {
  transform: rotate(90deg);
}

/* Responsive para el menú móvil */
@media (max-width: 1000px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .mobile-menu-toggle {
    top: 45px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 400px) {
  .mobile-menu {
    width: 100%;
  }
}

body {
  overflow-y: auto !important;
  height: auto !important;
}