.localizacao{
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 50px;
}

.list_localizacao{
    display: flex;
    justify-content: center;
    column-gap: 4%;
    font-size: 1.2rem;
    color: var(--cor-marrom);
    font-family: 'm-regular';
}


.img_localizacao{
    width: 100%;
}

.border_marrom{
    width: 100%;
    border-bottom: 10px solid var(--cor-marrom);
}


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

    .list_localizacao {
        display: flex;
        flex-direction: column;
        justify-content: center;
        column-gap: 4%;
        font-size: 1rem;
        color: var(--cor-marrom);
        font-family: 'm-regular';
        flex-direction: column;
    }

    .img_localizacao {
        width: 100%;
        height: 258px;
    }

}