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

.hero {
  width: 100vw;
  max-width: 150rem;
  margin: 0 auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/contacto/Fondo-Farmacovigilancia.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 38rem 0;
  position: relative;
}

.farmacovigilancia-description {
  text-align: center;
}

.farmacovigilancia-text {
  display: inline-block;
  color: #e6eef8;
  font-size: 5rem;
  text-align: center;
  font-weight: 300;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.farmacovigilancia-text-gradient {
  display: inline-block;
  color: #e6eef8;
  font-size: 7rem;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  text-transform: uppercase;
  background: linear-gradient(to right, #0055b8, rgba(255, 255, 255, 0.05));
  padding: 1.8rem 3.2rem;
}

/*********************************************************************************/
/* SECCION INFORMACION */
/*********************************************************************************/

.información {
  width: 100vw;
  max-width: 150rem;
  margin: 0 auto;
  background-image: url(../img/contacto/Logo-Pharmedic.png);
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 0;
  position: relative;
  background-color: #fff;
}

.informacion-container {
  text-align: center;
}

.informacion-text {
  padding: 0rem 30rem;
  color: #76777a;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.informacion-text span {
  font-weight: bold;
}

.informacion-container p:last-child {
  /* reseteando el margen de la ultima imagen para que no tome el valor negativo */
  margin: 0;
}

/*********************************************************************************/
/* SECCION FORM */
/*********************************************************************************/

.cta {
  background-color: #e6eaf4;
  width: 100vw;
  max-width: 150rem;
  margin: 0 auto;
  background-image: url(../img/contacto/Telaraña.png);
  background-size: cover;
  background-position: center;
  padding: 15rem 0;
  position: relative;
}

.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;
}
