/*CONTENEDOR DEL CONTACTO Y EL FORMULARIO FLOTANTE */
.rootHeader{
    position: relative;
    width: 100%; /*ocupa todo el ancho*/
    margin:0 auto;
}

/*===CONTACTO===*/
.heroBanner{
    width: 100%; /*ocupa todo el ancho*/
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -0.2rem;
    height: 650px;
    overflow: hidden;
}

/*foto de contacto*/
.heroBanner picture img{
    position: absolute;
    top:0;
    left: 0;
    opacity: 0.60;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2); /*aumenta el zoom*/
    z-index: 1;
}

/*textos*/
.heroInfo {
    position: absolute;
    top: 35%; /*bajar el texto*/
    left: 10%;
    transform: translateY(-50%);
    text-align: center;
    padding-top: 120px;
    z-index: 10; /*para que quede por encima de la foto*/
}

.heroInfo h1{
    color: #23adc5;
}

.heroInfo h2{
    color: #252a64;
}

/*===FORMULARIO FLOTANTE===*/
.c2c_hero_desktop{
    width: 100%;
    top: 0;
    right: 0;
    position: absolute;
    height: 100%;
}

.c2c_stickyContainer{
    display: flex; 
    justify-content: flex-end; /*pegado a la derecha*/
    width: 94%;
    right: 0;
}

.c2c_stickyElement{
    position: sticky;
    top: 6.5rem;
    z-index: 20;
    margin-top: 100px;
}

.form_c2c_hero {
    background: white;
    padding: 2rem; /*margen interior*/
    width: 100%; 
    max-width: 520px;
    border-radius: 12px; /*esquinas rendondeadas*/
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
}

.formTitle{
    text-align: center;
    margin-bottom: 1.5rem;
}

/*estilo de los campos de texto*/
.formField{
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.formField input, .formField textarea{
    width: 100%;
    padding: 14px 14px;
    border: none;
    font-size: 1rem;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.formField textarea{
    height: 120px;
    resize: none;
}

.formField label{
    display: none; /*no mostrar la información de las labels*/
}

/*botón de enviar*/
.formSubmit input[type="submit"]{
    width: 100%;
    background: #23adc5;
    color: white;
    padding: 14px;
    border-radius: 35px;
    font-size: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    border:3px solid #23adc5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.formSubmit input:hover{
    background: #252a64;
    border: 3px solid white;
}

/*or*/ 
.or { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin: 1.5rem 0; 
} 

.or hr { 
    flex: 1; 
    border: none; 
    border-top: 1px solid #ccc; 
} 


/*botón de book a meeting*/
.openModal{
    background: #eeb900;
    color:#252a64;
    padding: 14px;
    text-transform: uppercase;
    border-radius: 35px;
    font-weight: 600;
    text-align: center;
    border:3px solid #e8cf76;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.openModal:hover{
    background: #252a64;
    border: 3px solid white;
    color: white;
}


