h2 {
    font-size: 3.5rem;
}

p {
    font-size: 1.7rem;
}

/* IMAGEN - BANNER CONTACTENOS */

.contenedor-contactenos-banner {
    height: 500px;
    background-image: url(../img/contactenos/Contáctenos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenedor-banner-titulo,
.contenedor-banner-descripcion {
    color: #fff;
    font-weight: bold;
}

/* FORMULARIO - CONTACTENOS */

.formulario-contactenos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.formulario-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.formulario-grupo {
    display: flex;
    flex-direction: column;
}

.formulario-boton {
    width: 20%;
    margin-top: 20px;
    border: 2px solid rgba(0, 0, 0, .7);
    border-radius: 10px;
    font-weight: bold;
    background-color: transparent;
    color: rgba(0, 0, 0, .7);
    
}

.mapita {
    width: 430px;
    height: 430px;
}

.direccion {
    font-size: 1.2rem;
}

.formulario-redes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.separacion-bloque {
    height: 2px;
    border: 1px solid;
}

.parrafo-confianza p {
    text-align: center;
    font-size: 1.2rem;
}

.parrafo-confianza p span {
    font-weight: bold;
}

.redes {
    display: flex;
    gap: 10px;
}

.redes img {
    width: 20px;
    height: 20px;
    transition: 1s;
}

.redes img:hover {
    transform: rotate(360deg);
}

/* MEDIA 1024 */

@media (max-width: 1024px) {
    .contenedor-contactenos-banner {
        height: 70vh;
    }

    .contenedor-banner-titulo {
        font-size: 2.3em;
        font-weight: 600;
    }

    .contenedor-banner-descripcion {
        font-size: 1.5em;
        font-weight: 600;
    }

    .formulario-contactenos {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .formulario-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .mapita {
        width: 80%;
        height: 40vh;
    }

    .direccion {
        font-size: 1.5em;
        text-align: center;
    }

    .redes {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .redes img {
        width: 30px;
        height: 30px;
    }

    .grupo-boton {
        align-items: center;
    }

    .formulario-boton {
        width: 25%;
        margin-top: 20px;
        border: 2px solid rgba(0, 0, 0, .7);
        border-radius: 10px;
        font-weight: bold;
        background-color: transparent;
        color: rgba(0, 0, 0, .7);

    }

    .content-mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .boton-enviar{
        display: flex;
        align-items: center; /* Alineación vertical centrada */
        justify-content: center; /* Alineación horizontal centrada */
        
    }
    
}

/* MEDIA 768 */

@media (max-width: 768px) {
    .contenedor-contactenos-banner {
        height: 55vh;
    }

    .contenedor-banner-titulo {
        font-size: 2.3em;
        font-weight: 600;
    }

    .contenedor-banner-descripcion {
        font-size: 1.5em;
        font-weight: 600;
    }

    .formulario-contactenos {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .formulario-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .mapita {
        width: 80%;
        height: 250px;
    }

    .direccion {
        font-size: 1.2em;
        text-align: center;
    }

    .redes {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .redes img {
        width: 30px;
        height: 30px;
    }

    .grupo-boton {
        align-items: center;
    }

    .formulario-boton {
        width: 25%;
        margin-top: 20px;
        border: 2px solid rgba(0, 0, 0, .7);
        border-radius: 10px;
        font-weight: bold;
        background-color: transparent;
        color: rgba(0, 0, 0, .7);
        
    }

    .content-mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* MEDIA 425 */

@media (max-width: 425px) {
    .contenedor-contactenos-banner {
        height: 38vh;
    }

    .contenedor-banner-titulo {
        font-size: 2em;
        font-weight: 600;
    }

    .contenedor-banner-descripcion {
        font-size: 1.4em;
        font-weight: 600;
    }

    .formulario-contactenos {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .formulario-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mapita {
        width: 99%;
        height: 250px;
    }

    .direccion {
        font-size: 1em;
        text-align: center;
    }

    .redes {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .redes img {
        width: 30px;
        height: 30px;
    }

    .grupo-boton {
        align-items: center;
    }

    .formulario-boton {
        width: 25%;
        margin-top: 20px;
        border: 2px solid rgba(0, 0, 0, .7);
        border-radius: 10px;
        font-weight: bold;
        background-color: transparent;
        color: rgba(0, 0, 0, .7);
    }

    .content-mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* MEDIA >=375 */

@media (max-width: 375px) {
    .contenedor-contactenos-banner {
        height: 30vh;
    }

    .contenedor-banner-titulo {
        font-size: 1.5em;
        font-weight: 500;
    }

    .contenedor-banner-descripcion {
        font-size: 1em;
        font-weight: 500;
    }

    .formulario-contactenos {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .formulario-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mapita {
        width: 99%;
        height: 250px;
    }

    .direccion {
        font-size: 1em;
        text-align: center;
    }

    .redes {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .redes img {
        width: 30px;
        height: 30px;
    }

    .grupo-boton {
        align-items: center;
        display: flex;
    }

    .formulario-boton {
        width: 25%;
        margin-top: 20px;
        border: 2px solid rgba(0, 0, 0, .7);
        border-radius: 10px;
        font-weight: bold;
        background-color: transparent;
        color: rgba(0, 0, 0, .7);
    }

    .content-mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}