#header {
    background-color: rgb(0, 146, 90);
}

.container-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10em;
}

.box-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
}

.ul-home a { 
    padding: .4em;
    list-style: none;
    color: whitesmoke;
    text-decoration: none;
    margin: .1em;
    
}

.titulo-cabecalho {
    font-size: 3em;
    color: whitesmoke;
}


.foto {
    width: 40px;
}

.foto2 {
    width: 36px;
}

@media screen and (max-width: 768px) {
    #header {
        height: 200px;
        width: auto;
    }
    .container-header {
        display: flex;
        flex-direction: column;
        height: 195px;
        width: auto;
    }
    
    .box-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        width: 30px;
    }
    
    .nav-home{
        width: auto;
    }

    .ul-home{
        width: 360px;
        text-align: center;
        padding: 5px;
    }


    .foto {
        display: none;
    }
    
    .foto2 {
        display: none;
    }
    
}

@media screen and (max-width: 600px) {
    #header {
        height: 200px;
        width: auto;
    }
    .container-header {
        display: flex;
        flex-direction: column;
        height: 195px;
        width: auto;
    }
    
    .box-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        width: 30px;
    }
    
    .nav-home{
        width: auto;
    }

    .ul-home{
        width: auto;
        text-align: center;
    }


    .foto {
        display: none;
    }
    
    .foto2 {
        display: none;
    }
    
} 