.megamenu {
    border: unset;
    border-radius: unset;

    background-color: var(--cor-green-dark);
}

.navbar .megamenu {
    padding: 1rem;
}

.has-megamenu .list-group .list-group-item {
    border: none;
    background: none;
}

.has-megamenu .list-group a.list-group-item {
    border: none;
    background: none;
    color: var(--cor-white);
}

.navbar-nav>li>a {
    color: var(--cor-white);
    transition: color 0.2s ease-in-out;
}

.has-megamenu .dropdown-menu a {
    color: var(--cor-white);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.has-megamenu .list-group a.list-group-item:hover,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.has-megamenu .dropdown-menu a:hover,
.has-megamenu .dropdown-menu a:focus {
    color: var(--cor-yellow);
}

@media all and (min-width: 992px) {
    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }

}

@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}