.container-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 150px;
    background-color: #561A1A;
    padding-left: 40px;
    padding-right: 40px;
}

.container-nav{}

.nav-desktop{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 50px;
}

.nav-mobile{
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: red;
    padding: 10px;
}

.container-nav nav a{
    padding: 5px;
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
}

.container-nav nav a:hover{
    border-bottom: 1px solid #FFFFFF;
}


@media screen and (max-width: 600px){
    .container-header{
        flex-direction: column-reverse;
    }

    .nav-desktop{
        display: none;
    }

    .container-nav{
        width: 100%;
    }

    .nav-mobile{
        display: flex;
    }
}