﻿/* Estilos para el menú activo */
/*.navmenu a.active:not(.home-link) {
    background: rgba(20, 157, 221, 0.2);
    color: #ffffff;*/ /* Letras en blanco */
    /*border-left: 3px solid #149ddd;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(20, 157, 221, 0.5); 
}*/

.dropdown.dropdown-active > a {
    color: #ffffff; /* Letras en blanco también para dropdown activo */
    text-shadow: 0 0 8px rgba(20, 157, 221, 0.4);
}

.dropdown.dropdown-active > a .toggle-dropdown {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.dropdown > a .toggle-dropdown {
    transition: transform 0.3s ease;
}

/* Transiciones suaves */
.dropdown > ul {
    display: none;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.dropdown.dropdown-active > ul {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
}


/*.navmenu a:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    transition: all 0.2s ease;
}*/

