.page-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-contacto {
    width: 100%;
    text-align: center;
    margin: 2rem 0;
    padding: 20px 0 0 0;
}

.intro-contacto {
    width: 80%;
    max-width: 800px;
    text-align: center;
    margin-bottom: 3rem;
}

.mensajes {
    padding:0;
}

.form-map {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/*FORMULARIO*/
form p {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

form p label {
    margin-bottom: .5rem;
}

form p input , textarea{
    font: 1rem "Poppins","sans-serif";
}

.form-contacto {
    max-width: 390px;
    width: 40%;
    padding-top: 0;
}

.correcto {
    color: var(--verde);
}

/*INFO*/
.info-contacto {
    width: 40%;
    background: var(--azul);
    height: fit-content;
    max-width: 400px;
    border-radius: 1rem;
}

.map iframe {
    width: 100%;
    border: 2px solid var(--amarillo);
}

.info p {
    color: var(--blanco);
    padding-left: 1rem;
}

.map, .info {
    margin: 1rem;
}

@media (max-width:1050px) {
    .form-map {
        width: 95%;
        flex-direction: column;
        align-items: center;
    }

    .form-contacto {
        width: 95%;
        margin-top: 2rem;
    }

    .info-contacto {
        width: 95%;
    }
}

@media (max-width:800px) {
    .form-map {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:450px) {
    section {
        padding: 0;
    }
} 