/*Marcar página atual com destaque "rounded"*/
.navbar .nav-link.active-menu {
    background-color: #ffc107; /* amarelo Bootstrap */
    color: #212529 !important; /* texto escuro */
    border-radius: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}
/* Estilo para itens normais (não ativos) */
.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover */
.navbar .nav-link:hover {
    color: blue!important;
}
