.mapouter {
    position: relative;
    text-align: right;
    justify-self: end;
}
.mapouter iframe {
    height: 410px;
    width: 590px;
}
.contato-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
}
.contato {
    background: url(/img/fundocontato.webp)no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 50px 10px;
    margin-top: 50px;
}
.contato-grid {
    display: grid;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
}
.contato-info div > p {
    font-weight: 500;
    margin-bottom: 5px;
}
.contato-info a{
    display: flex;
    grid-gap: 10px;
    transition: .3s;
    max-width: fit-content;
}
.contato-info a:hover {
    color: #FDCF1A;
    text-shadow: 0px 0px 4px #000;
}
.contato-info div:last-child div {
    display: flex;
    grid-gap: 10px;
}
.contato-info {
    display: grid;
    grid-gap: 35px;
}

@media only screen and (min-width:441px) and (max-width:890px) {

    .contato-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        align-items: center;
        justify-items: center;
    }

    .contato-info a {
        max-width: none;
    }

    .mapouter {
        justify-self: center;
    }
    
}
@media only screen and (min-width:0px) and (max-width:440px) {

    .contato-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        align-items: center;
        justify-items: center;
        text-align: center;
    }

    .mapouter {
        justify-self: center;
    }

    .contato-info a {
        justify-content: center;
        max-width: none;
    }
    .contato-info a p{
        display: none;
    }

    .contato-info div:last-child div {
        justify-content: center;
    }
    
}