:root {
    --color-blue-main: #015DAA;
    --color-gray-main: #CACACA;
    --color-blue-secondary: #578FBD;
    --color-gray-secondary: #5B5B5B;
}

.navbar{
    background-color: white;
    display: grid;
    width: 85%;
    padding: 1% 2%;
    gap: 1rem;
    justify-self: center;
    border-bottom: 1px solid #C7C7C7;
    /* margin: 0 auto; */
}

.nav-selects {
    display: flex;
    justify-content: left;
    justify-self: center;
    width: 100%;
}

.nav-selects .nome-titulo{ 
    text-decoration: none;
    color: var(--color-gray-secondary);
    font-size: 16px;
    margin-right: 50px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.div-titulo{
    display: flex;
    align-items: center;
}

.div-titulo .opcao{
    text-transform: uppercase;
}

.nav-selects select {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--color-gray-secondary);
    background: none;
    border: none;
    margin-left: 50px;
    appearance: none;
    cursor: pointer;
}

.nav-selects option {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: var(--color-blue-main);
}

.nav-selects select:focus {
    outline: none;
}

.div-titulo {
    position: relative; /* Garante que o dropdown-menu se posicione em relação ao pai */
}

.div-titulo .dropdown-menu {
    display: none; /* Oculta o menu por padrão */
    position: absolute;
    top: 100%; /* Faz o menu aparecer logo abaixo do título */
    left: 0;
    z-index: 1000;
}

.div-titulo:hover .dropdown-menu {
    display: block; /* Exibe o menu quando o mouse está sobre o pai */
}

.nome-titulo svg{
    width: 20px;
}

.menu-hamburguer.menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-right: 6%;
}

.linha {
    height: 3px;
    width: 25px ;
    margin-bottom: 5px;
    background-color: #fff;
}

@media (max-width: 768px){
    .navbar{
        display: none;
    }
    .menu-hamburguer.menu {
        display: flex;
    }
    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 300px;
        background-color: var(--color-blue-main);
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        z-index: 100;
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        transition: right 0.3s ease-in-out;
        margin-right: 0;
    }

    .menu-links.active {
        display: flex;
        right: 0;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 99;
    }
}