﻿nav {
    height: 50px;
    border-bottom: 1px solid lightgray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(0.25turn, #035E73, #001E4D, #01062B);
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-family: var(--fonte);
    position: relative;
}

.nav-logo {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav li {
    list-style: none;
}

nav ul a {
    color: white;
    font-weight: 100;
    font-size: 1em;
}

/* Painel de usuário */
.nav-nome-usuario {
    color: white;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer
}

.nav-painel-usuario {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    width: 150px;
    margin-top: 10px;
    background-color: lightgray;
    border-radius: 3px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    z-index: 3;
}

/* [PAINEL USUARIO] - Ópções */
.nav-painel-usuario-opcoes {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-painel-usuario-opcao {
    display: flex;
    gap: 10px;
}

.nav-painel-usuario-opcao a {
    color: black;
    text-decoration: none;
    display: flex;
    justify-content:space-between;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 100;
    font-size: 0.9em;
}

.nav-painel-usuario-opcao a:hover {
    color: gray;
    transition: 0.5s;
}

/* Opção de configurações */
.nav-painel-usuario-opcao form button {
    color: black;
    text-decoration: none;
    display: flex;
    justify-content:space-between;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 300;
    font-size: 0.9em;
    width: 130px;
    border: none;
    background: none;
    cursor: pointer
}

.nav-painel-usuario-opcao form button:hover {
    color: gray;
    transition: 0.5s;
}

@media (max-width: 650px) {
}

@media (min-width: 651px) {

}

/* Button menu responsivo */
.nav-icon-menu i {
    font-size: 1.8em;
    cursor: pointer;
    color: lightgray;
}

/* Imagem de perfil do usuário */
.nav-img-perfil {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-img-perfil img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    text-align: center;
}