header{
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: visible;
    background-color: #fff;
    position: fixed;
    z-index: 3;
}

header a h1{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    margin: 15px 0;
}

.container_menu{
    display: flex;
    justify-content: space-around;
    width: 35%;
    overflow: visible;
}

header ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header ul li{
    list-style-type: none;
    height: 100%;
    display: flex;
    align-items: center;
}

header ul li a{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    padding: 6px 25px;
    border-radius: 15px;
    transition: all 0.5s;
}

header ul li a:hover{
    background-color: #E8E8E8;
}

a.btn_comecar{
    color: #FFFFFF;
    background-color: #336DD9;
    padding: 6px 35px;
    margin: 0 60px;
    border-radius: 15px;
}

a.btn_comecar:hover{
    background-color: #2956AA;
}

.container_info_user{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.container_perfil{
    display: flex;
    align-items: center;
}

.abreviacao_user{
    height: 26px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #35DE3A;
    font-size: 'Inter';
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    margin-right: 5px;
}

.detalhes_usuario{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 15px 60px;
    border: 1px solid #7B7B7B;
    border-radius: 15px;
    z-index: 1;
    white-space: nowrap;
}

.detalhes_usuario.ativo{
    display: block;
}

.nome_usuario{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.email_usuario{
    text-transform: uppercase;
    font-size: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.detalhes_usuario a{
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    color: #777777;
    cursor: pointer;
}