#topo {
    position: absolute;
    z-index: 99;
    width: 100%;
}

.menu-wrapper {
    display: flex;
    justify-self: center;
    width: 90%;
}

/* BACKGROUND AZUL COM BORDA AMARELA DO MENU PRINCIPAL */
.back {
    background: var(--cyan);
    border-left: 1.5rem solid var(--yellow);
    display: flex;
    flex: 1;
    padding: 0 2rem;
}

.disabled {
    display: none;
}

/* LOGO */
#topo img {
    max-width: 100%;
}

/* ÍCONES */
#topo i {
    font-size: 1.5rem;
}

#menu {
    justify-content: flex-end;
}

.navbar {
    margin: 0 1rem;
    flex: 1;
}

.nav-item {
    display: flex;
    justify-content: center;
}

.nav-link {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    align-self: center;
    margin: 0 1rem;
    padding: 15px;
}

#menu a {
    text-decoration: none;
    color: white;
}

/* SELECAO BOLSISTAS AO LADO COM COR DIFERENTE */
#selecaoBolsistas {
    background-color: var(--blue);
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    white-space: nowrap;
}

/* DROPDOWN */
.dropdown a {
    text-decoration: none;
    color: #ffff !important;
}

.dropdown li {
    font-size: 16px;
    color: #ffffff !important;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown li a {
    color: #ffffff !important;
}

.dropdown li:hover {
    cursor: pointer;
}

.dropdown-menu {
    background-color: var(--blue);
    box-shadow: none;
    border: none;
    list-style: none;
}

.dropdown-menu a {
    color: #ffffff !important;
}

.dropdown-menu:after {
    text-decoration: none;
}

#ulEdital {
    margin-right: 6vw;
}

.bolsistas-label {
    font-weight: bold;
    font-size: 1.2rem;
    color: rgb(255, 238, 0);
    text-transform: uppercase;
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #topo {
        position: relative;
    }

    .menu-wrapper {
        flex-direction: column;
        width: 100%;
    }

    #selecaoBolsistas {
        justify-content: center;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    #selecaoBolsistas {
        display: none;
    }

    .disabled {
        display: grid;
    }

    .dropdown-menu {
        position: static;
        background-color: transparent;
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-item.dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-toggle.nav-link {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        align-items: center;
        text-align: center;
    }

    .dropdown-menu li {
        width: 100%;
    }

}