.text-zamberlan-blue {
   color: var(--zamberlan-blue);
   }
.bg-zamberlan-blue {
    background-color: var(--zamberlan-blue);        
}
.hover-menu:hover .dropdown-menu {
    display: block;
}
.hover-menu:focus-within .dropdown-menu {
    display: block;
}
.hover-menu .dropdown-menu {
    z-index: 100;
}
.dropdown-menu {
    display: none;
    z-index: 100;
}

.slider-bg {
  background-size: cover;          /* cubre todo el contenedor */
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  transition: background-image 1s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translate(0, 0); }
  20%, 60% { transform: translate(-2px, 2px); }
  40%, 80% { transform: translate(2px, -2px); }
}

.shake-box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

:root {
  --zamberlan-blue: #1e40af; /* o el color que quieras */
}



.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}


.text-neon-outline {
  color: #000; /* Texto negro */
  text-shadow:
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #39ff14,
    0 0 40px #0f0,
    0 0 80px #0f0;
}

/* --- Menú hamburguesa móvil --- */
/* Los estilos del menú móvil se manejan en stylesHeader.css para mantener consistencia */

.separador {
    width: 60px;
    height: 4px;
    background-color: #e88fb6; /* o el color que uses */
    border: none;
    margin: auto;
}

.boletin {
    color: white;
}

.boletin h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.boletin p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

@media (min-width: 640px) {
    .boletin form {
        flex-direction: row;
        align-items: center;
    }
}

.boletin input[type="email"] {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #1f2937;
    color: white;
}

.boletin input::placeholder {
    color: #9ca3af;
}

.boletin button {
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boletin button:hover {
    background-color: #1d4ed8;
}

/* Ajuste de tamaño para videos de viajes en la sección nosotros */
.viaje-video-container {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
}
.viaje-video-container iframe,
.viaje-video-container video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  object-fit: cover;
}

@media (max-width: 767px) {
  .viaje-video-container {
    max-width: 100vw;
    min-width: 0;
  }
}

