:root {
    --laranja: #B77922;
}

body {
    margin: 0;
    box-sizing: border-box;
}

body * {
    font-family: 'roboto', sans-serif;
    font-size: 14px;

}
.imgHeader{
    width: 100px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}



#navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    /* estilo */
    background-color: #D7D7D7;
    padding: 10px 50px;
}

#nav-buttons {
    display:flex;
    flex-direction: row;
}

.enter {
    width: 18px;
    height: 18px;
    background-image: url('/img/enter1.svg');
    background-size: cover;
    display: inline-block;
    margin-right: 10px;
}

.nav-btn {
    background-color: var(--laranja);
    border: none;
    color: white;
    width: 10vw;
    height: 7vh;
    transition: all 0.2s

}
.nav-btn:hover{
    background-color: white;
    color: var(--laranja);
    text-decoration: none;
}

.nav-btn:hover .enter {
    background-image: url('/img/enter2.svg');
}

#dropdown {
    text-align: center;
}
#btn-nav-entrar {
    text-decoration: none;
}
#btn-nav-entrar button {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    #navbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    
        /* estilo */
        background-color: #D7D7D7;
        padding: 10px 10px;
    }
    .imgHeader{
        width: 70px;
        height: 70px;
        justify-content: space-between;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
    }
    #nav-logo {
        /*display:none;*/
        width:100vh;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        text-align: center;
    }
    #nav-buttons {
        width:100vw;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        text-align: center;
        flex-grow: 1
    }
    .nav-btn {
        width: 16.5vw;
        font-size: 10px;
    }
    .enter{
        display: none;
    }
    
}
