/*wp-content/themes/cellca/css/componentes/formulario-hablemos.css */
.formulario-hablemos-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    gap: 50px;
    font-family: Helvetica;
    max-width: 900px;
    margin: 0 auto;
}
.contenedor-contenido-hablemos {
display: flex;
flex-direction: column;
gap: 20px;
}
.formulario-hablemos-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: 4;
    
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 24px;
    gap: 30px;
}

.contenedor-icono-form-hablemos {
    grid-column: 1/5;
    display: flex;
    align-items: flex-start;
}
.apartado-formulario-hablemos {
grid-column: 1/3;
grid-row: 2;

}

.info-formulario-hablemos {
grid-column: 1/3;
grid-row: 3;
}
.formulario-hablemos-body {
 grid-column: 3/5;
 grid-row: 2/4;
}

.formulario-hablemos-header .contenedor-icono-form-hablemos p {
    color: #0178B3;
    font-family: Helvetica;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 140% */
}

.icono-contenedor-flecha-hablemos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, #0070B2 0%, #00A6BD 100%);
}

.flecha-atras-img-hablemos {
    width: 8px;
    height: 8px;
    stroke-width: 2px;
    stroke: #FFF;
}

.formulario-hablemos-body {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.formulario-hablemos-contacto {
    flex: 1;
    margin-right: 40px;
    color: #000;
}

.formulario-hablemos-header h3 {
    color: #0070B2;
    margin: 0;
    font-family: Helvetica;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px; /* 240.909% */
}

.formulario-hablemos-header p {
    margin: 0;
}

.formulario-hablemos-header h2 {
    color: #0070B2;
    font-family: Helvetica;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    margin-bottom: 30px;
}

.formulario-hablemos-header p {
    color: #1D1D1F;
    font-family: "Helvetica";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
    margin-bottom: 10px;
}

.negrita-formulario-hablemos {
    color: #1D1D1F;
    font-family: Helvetica;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.formulario-hablemos-form {
    flex: 2;
    padding: 20px;
    border-radius: 8px;
}

.formulario-hablemos-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.formulario-hablemos-form input,
.formulario-hablemos-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
}

.formulario-hablemos-form input[type="file"] {
    padding: 3px;
}

.formulario-hablemos-form button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    background: #0070B2;
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    font-size: 16px;
}

.formulario-hablemos-form button .icono {
    margin-right: 5px;
}



@media only screen and (max-width: 768px) {
   

    .formulario-hablemos-body {
        grid-row: 3;
        grid-column: 1/5;
        
    }

    .info-formulario-hablemos{
        grid-row: 4;
        grid-column: 1/5;
    }

    .apartado-formulario-hablemos {
        grid-row: 2;
        grid-column: 1/5;
    }
}