.hero-info{
    right: 0;
    /* background-color: white; */
    /* color: var(--azulO); */
    text-align: right;
    border-radius: 500px 0 0 500px;
}
.hero-info h1{
    text-align: right;
}
.mapa-contacto iframe{
    height: 100%;
    width: 100%;
}
.contacto-wrapper{
    max-width: 1650px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem;
}
.introduccion-contacto{
    max-width: 1200px;
    margin: 0 auto;
}
.introduccion-contacto h2{
    text-align: center;
    padding: 1rem;
    color: var(--azulO);
}
.introduccion-contacto p{
    margin-bottom: 1rem;
    text-align: center;
}
.formulario-contacto{
    width: 50%;
}
.formulario-contacto form{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
}
.formulario-contacto label{
    color: var(--azulO);
}
.contacto-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
    gap: 1.5rem;
}
.input-format{
    line-height: 1.2rem;
    border-radius: 30px;
    border: 1.5px solid var(--azulO);
    padding: 0.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
}
.textarea{
    resize: none;
    padding: 1.5rem 1rem;
    min-height: 140px;
}
.btn-envio{
    mask-image: url(../img/btn-mask.webp);
    -webkit-mask-image: url(../img/btn-mask.webp);
    background: var(--azulO);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    padding: 1.5rem 10% 2.2rem;
    color: white;
    font-weight: bold;
    min-width: 340px;
    box-sizing: border-box;
    transition: 250ms;
    width: fit-content;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    left: 0;
}
.btn-envio:hover{
    left: 0.5rem;
}
.img-formulario{
    width: 45%;
    text-align: center;
}
.img-formulario img{
    width: 45vw;
    max-width: min(100%,650px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: solid 1px var(--azulO);
}
.datos-contacto-ico{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
    gap: 3rem;
    padding: 2rem 0 1rem;
}
.dato-c{
    width: 40%;
    max-width: 450px;
    min-width: min(280px, 100%);
    color: var(--azulO);
}
.dato-c a{
    color: inherit;
}
.dato-c img{
    margin-bottom: 1.5rem;
    width: 40px;
    height: 40px;
}

@media (max-device-width: 900px){
    .contacto-div{
        display: block;
        padding: 2rem 0;
    }
    .formulario-contacto{
        width: 100%;
    }
    .img-formulario{
        width: 100%;
        margin-bottom: 2rem;
    }
    .img-formulario img{
        width: clamp(300px, 85vw, 500px);
    }
}
@media (max-device-width: 600px){
    .img-formulario img{
        width: 95%;
        max-width: 450px;
    }
    .contacto-wrapper{
        padding: 5rem 1rem 3rem;
    }
    .btn-envio{
        max-width: 340px;
        min-width: 0;
        width: 100%;
    }
    .hero-info h1{
        text-align: center;
    }
    .hero-info{
        color: white;
        background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(0,134,166,0.75) 42%);
        border-radius: 0;
    }
}