/* DROPDOWN - Ajustes gerais */
.dropdown-menu {
    background-color: #8fa47c; /* mesma cor do topo */
    padding: 10px 0;
    border-radius: 10px;
    min-width: 160px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Itens do dropdown */
.dropdown-menu a {
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    color: white !important;
    font-weight: 500;
    border-radius: 8px;
}

/* Hover */
.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.15);
}

/* DROPDOWN Ajustado */
.dropdown-menu {
    background-color: #8fa47c;
    padding: 10px 0;
    border-radius: 10px;
    min-width: 160px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.dropdown-menu a {
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    color: white !important;
    font-weight: 500;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.15);
}

/* MOBILE FIX */
#menu-btn {
    z-index: 9999;
}

#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu a {
    font-size: 18px;
}
