.info {
    display: grid;
    grid-template-columns: 50%;
    justify-content: center;
    background-image: url(../image/info/info.png);
    text-align: center;
    padding: 50px 0px;
    color: white;
    margin-bottom: 30px;
}

.info_titulo {
    font-size: 1.7rem;
    font-family: 'normal';
}

.item_info_andar {
    font-family: 'light';
    display: grid;
    grid-template-columns: repeat(3, 30%);
    column-gap: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.item_info_andar b,
.item_info_terreno b {
    font-size: 1.5rem;
}


.item_info_andar p {
    border-left: 1px solid white;
}


.item_info_andar p:nth-child(1) {
    border-left: none;
}


.item_info_terreno {
    border-top: 1px solid white;
    text-transform: uppercase;
    font-family: 'light';
    padding-top: 30px;
}



@media only screen and (max-width: 782px) {
    .info {
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        background-image: none;
        background-color: var(--cor-amarelo) !important;
        text-align: center;
        padding: 50px 0px;
        color: white;
        margin-bottom: 30px;
    }

    .item_info_andar {
        font-family: 'light';
        display: grid;
        grid-template-columns: repeat(1, 80%);
        row-gap: 30px;
        column-gap: 20px;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

}