header, nav {
    width: 100%;
    height: 22vh;
    background-color: black;
    
}
nav{
    display: flex;
}

.logo-nav{
    background-color: aquamarine;
    width: 20vw;
    height: 130px;
    margin-left: 5vw;
    margin-right: 1vw;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.logo-nav >img{
    width: 100%;
    height: 148px;
    
}

.navegacao{
    width: 100%;
    margin-top: 4vh;
    margin-bottom: 2vh;
}

ul{
    margin-top: 2.4vh;
}

.links-header{
    list-style: none;
    display: flex;
    justify-content: center;
}

.navegacao >ul>li{
    padding: 10px;
    margin: auto 15px;
}

.navegacao >ul>li:hover{
    border-radius: 10px;
    background-color: rgb(48, 48, 48);
    transition-duration: 0.5s;
}

.navegacao >ul>li>a{
    font-size: 1.4rem;
    color: rgb(163, 163, 163);
    text-decoration: none;
    
}

.navegacao >ul>li>a:hover{
    color: #F21667;
    /*color: white;*/
    transition-duration: 0.5s;
    
}
