.contato {
    background-color: #181617;
    background: url(/img/bg-contato.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}
.contato-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    color: #fff;
}

.contato-content {
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
    padding-top: 30px;
    padding-bottom: 30px;
}

.contato-items a + a {
    margin-top: 10px;
}
.contato-content div:nth-child(1) {
    margin-top: 30px;
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.contato-content div:nth-child(1) span {
    display: block;
    content: "";
    height: 1px;
    width: 100px;
    background-color: #E3312D;
}

.mapouter {
    height:500px;
    max-width:100%;
}
.mapouter iframe{
    height:500px;
    width:500px;
}

.contato-items a {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    grid-gap: 10px;
}



@media only screen and (min-width:315px) and (max-width:854px) {
    .contato-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .contato-img {
        grid-row-start: 2;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width:0px) and (max-width:314px) {
    .contato-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .contato-img {
        grid-row-start: 2;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .contato-content div:nth-child(1) span {
        width: 50px;
    }
    .contato-items a p {
        font-size: .9rem;
    }
}