#footer {
    width: 100%;
    background-color: rgb(1, 133, 81);
}

.container-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10em;
}

.box-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
}

.box-nav p {
    color: white
}

.titulo-cabecalho {
    font-size: 3em;
    color: whitesmoke;
}


.foto {
    width: 40px;
}

.foto2 {
    width: 36px;
}

@media screen and (max-width: 600px) { */
    #footer {
        width: auto;
    }
    
    .container-footer {
        display: flex;
        flex-direction: column;
    }
    
    .box-nav p {
        display: flex;
        flex-direction: column;
        width: 360px;
    }

    .titulo-cabecalho p {
        
        color: whitesmoke;
    }
}

@media screen and (max-width: 400px) {
    #footer {
        width: auto;
    }
    
    .container-footer {
        display: flex;
        flex-direction: column;
    }
    
    .box-nav p {
        display: flex;
        flex-direction: column;
        width: 300px;
    }

    .titulo-cabecalho p {
        
        color: whitesmoke;
    }
}