@media(max-width: 1280px) {

    .cabecalho {
        padding: 30px;
    }

    .home {
        flex-direction: column;
        align-items: center;
        margin: 30px 0;
        gap: 30px;
    }
    
    .home .informacoes {
        max-width: 100%;
        text-align: center;
        align-items: center; 
        margin: 10px auto;
    }

    .projetos .container-projetos {
        padding: 0 30px;
    }
}

@media(max-width: 425px) {

    .home .informacoes h1{
        font-size: 30px;
    }

    .home .informacoes p {
        font-size: 16;
    }

    .home .container-foto .foto {
        max-width: 320px;
        max-height: 320px;
    }

    .home .container-foto img{
        max-width: 320px;
        max-height: 320px;
    }

    .projetos {
        padding: 30px;
    }

    .projetos .projeto img {
        width: 100%;
        height: 100%;
    }
    
}