.mapouter {
    height: 480px;
    max-width: 100%;
}
.mapouter iframe {
    width: 100%;
}
.contato {
    padding: 50px 10px;
    color: #fff;
    background-color: #131212;
}
.contato-title h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
}
.contato-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 490px));
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.contato-links {
    display: grid;
    gap: 15px;
}
.contato-links a {
    max-width: fit-content;
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    gap: 5px;
}
.contato-links a > span {
    font-size: 1.125rem;
}
.contato-links a:hover {
    color: #FECB00;
}
.redes {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.redes a:hover {
    transform: scale(1.1);
}

@media only screen and (min-width:405px) and (max-width:675px) {

    .contato-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
}

@media only screen and (min-width:0px) and (max-width:404px) {

    .contato-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .contato-links a {
        font-size: 1rem;
        gap: 5px;
    }
    .contato-links a > span {
        font-size: .9rem;
    }
    .contato-title h3 {
        font-size: 2.2rem;
    }
}