/*********************************************************************************/
/* SECCION HERO */
/*********************************************************************************/
.section-hero {
  background-color: #e6eef8;
}

.hero {
  width: 100vw;
  max-width: 150rem;
  margin: 0 auto;
  background-image: url(../img/servicio-al-cliente/recepcionista.webp);
  background-size: cover;
  background-position: center;
  padding: 30rem 0;
  position: relative;
}

.servicio-cliente-description {
  text-align: center;
}

.servicio-cliente-text {
  color: #e6eef8;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  padding: 0 30rem;
}

.servicio-cliente-text span {
  font-weight: bold;
}

/*********************************************************************************/
/* SECCION FORM */
/*********************************************************************************/
.section-for {
  background-color: #e6eef8;
}

.cta {
  width: 100vw;
  max-width: 150rem;
  margin: 0 auto;
  background-image: url(../img/inicio/Fondo.webp);
  background-size: cover;
  background-position: center;
  padding: 15rem 0;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
  padding: 0 16rem;
}

.cta-form label {
  display: block; /* PARA QUE OCUPE TODO EL ESPACIO Y HAGA SALTO DE LINEA */
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #2a365c;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit; /* HEREDANDO LA FONT-FAMILY DE LA PAGINA, YA QUE LOS INPUTS NO OCUPAN DICHA FUENTE */
  color: inherit; /* HERERANDO EL COLOR DEL ELEMENTO PADRE QUE ES CTA-TEXT-BOX */
  border: none;
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

/* SELECIONANDO EL PSEUDO ELEMENTO PLACEHOLDER   */
.cta-form input::placeholder {
  color: #aaa;
}

/* CAMBIANDO EL COLOR DEL FOCUS EN EL FORMULARIO */
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.4rem rgba(82, 77, 74, 0.5);
}

.col-boton-form {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-form {
  display: inline-block; /* para que pueda tomar el padding especificado y ocupe solamente el espacio necesario*/
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: 3px solid #aaa;

  /* PARA EL .BTN DEL FORMULARIO NADA MAS */
  cursor: pointer;

  /* PONERLO SIEMPRE EN EL ESTADO ORIGINAL DEL BOTON EN ESTE CASO*/
  transition: all 0.3s;
  background-color: none;
  color: #555;
}
