.projetos_grid{
    width: 80vw;
    margin: 30px auto;
    display: flex;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.projetos_arq{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.projetos_arq img{
    width: 90%;
    height: auto;
    border-radius: 5px;
}

.projetos_arq a{
    text-align: center;
    text-decoration: none;
    color: var(--cor-texto-preto);
    font-size: 18px;
} 


/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/

@media screen and (max-width: 950px){

    .projetos_grid{
        width: 80vw;
        margin: 30px auto;
        display: flex;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


}