/* ===== RESET LISTA ===== */


/* remove underline global */
.navbar a {
    text-decoration: none;
}

/* ===== LINKS ===== */
.navbar .nav-link {
    color: #333;
    padding: 6px 5px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
    text-decoration: none; /* garante */
}

/* hover e ativo */
.navbar .nav-link.active,
.navbar .nav-link:hover {
    background: #992c00;
    color: #fff;
}

/* ===== LANGUAGE ===== */
.lang-switch a {
    text-decoration: none; /* remove underline nas bandeiras */
}
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon {
    background-image: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/list.svg");
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .navbar ul {
        flex-direction: column;
        align-items: flex-start; /* melhor alinhamento */
    }

    .lang-switch {
        justify-content: flex-start;
    }
}
/* ===== NAVBAR ===== */
