.empreendimentos{
    display: grid;
    grid-template-columns: repeat(3,20%);
    column-gap: 50px;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.empreendimentos .item .title{
    background-color: var(--cor-azul);
    color: white;
    font-family: 'm-semibold';
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.empreendimentos .item img{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

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

    .empreendimentos{
        display: grid;
        grid-template-columns: repeat(1,80%);
        justify-content: center;
        margin-top: 80px;
        margin-bottom: 80px;
    }

}