ul li a{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-active{
    background: #00EAE5;
    color: black;
    border-radius: 7px;
}

.active:hover{
    color: black !important;
}

/* ACCESO OFICINA VIRTUAL */

.button-9-phone{
    transition: all 300ms;
}

.button-9-phone-copy{
    transition: all 300ms;
}

.button-9-phone:hover, .button-9-phone-copy:hover{
    color:black;
}

.navbar-wrapper-2{
    margin-top: 20px;
    justify-content: space-around !important;
}
.logo-office-container{
    width: 100% !important;
    justify-content: center !important;
}
.logo-office{
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    justify-content: space-between !important;
}

/* DROPDOWN DE AGENTES */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Cambiado de hover a clase activa */
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #eee;
}

/* Cambiado de hover a clase activa */
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
    margin: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-dropdown-link:hover {
    background-color: #00EAE5;
    color: black;
    padding-left: 25px;
}

/* RESPONSIVE PARA DROPDOWN */
@media (max-width: 991px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        margin-left: 20px;
        display: none;
    }

    /* Cambiado de hover a clase activa */
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-link {
        font-size: 16px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        padding: 10px 0;
        color: white;
    }

    .nav-dropdown-link:hover {
        background: #00EAE5;
        color: black;
        border-radius: 7px;
        padding-left: 15px;
    }

    .dropdown-arrow {
        color: white;
    }
}

/* @media(max-width: 571px){
    .w-button{
        padding: 5px !important;
    }
}
@media(max-width: 551px){
    .w-button{
        padding: 2px !important;
    }
} */
