/* #region Colores personalizados */
.text-zamberlan-blue {
   color: var(--zamberlan-blue);
   }
.bg-zamberlan-blue {
    background-color: var(--zamberlan-blue);        
}
/* #endregion */

/* #region Dropdown y menú hover */
.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;
}
/* #endregion */

/* #region Slider */
.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;
}
/* #endregion */

/* #region Animaciones */
@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;
}
/* #endregion */

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

/* #region Tipografías */
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}
/* #endregion */

/* #region Efectos de texto */
.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;
}
/* #endregion */

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

/* #region Separador visual */
.separador {
    width: 60px;
    height: 4px;
    background-color: #8fb3e8; /* o el color que uses */
    border: none;
    margin: auto;
}
/* #endregion */

/* #region Estilos del boletín */
.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;
}
/* #endregion */

:root {
  --zamberlan-blue: #0073e6;
  --zamberlan-celeste: #00c0ff;
}

section {
  background: linear-gradient(to bottom right, var(--zamberlan-blue), var(--zamberlan-celeste));
}






