/* Estilos para el menú móvil */

/* Contenedor principal del menú */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Menú móvil */
.mobile-menu {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

/* Lista del menú */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Elementos del menú */
.mobile-menu li {
    margin: 15px 0;
    text-align: center;
}

/* Enlaces del menú */
.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #1e3c72;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #f0f4ff;
    transform: translateX(5px);
}

/* Botón de cierre */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Botón del menú hamburguesa */
.mobile-menu-button {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mostrar solo en móviles */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .mobile-menu-container.active {
        display: flex;
    }
}
