/* BARRA */

.bg_barra {
  width: 100%;
  height: 68px;
}

.bg_barra img {
  width: 100%;
  height: 100%;
}

/* SECCION CONTACTO */

.seccion_contacto {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 552px;
}

.contacto_informacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  height: 75%;
  gap: 65px;
}

.informacion_numeros {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.informacion_numeros img {
  width: 46px;
  height: 46px;
}

.numeros_alineacion {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.numeros_alineacion span {
  font-size: 20px;
  font-family: arial;
  color: #656565;
}

.informacion_redes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-left: 30px;
}

.informacion_redes a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: arial;
  font-size: 20px;
  color: #32375f;
  gap: 15px;
}

.informacion_redes a img {
  width: 20px;
  height: 20px;
}

.formulario_contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 75%;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 538px;
  height: 405px;
  border-radius: 16px;
  border: medium solid #e6e6e6;
  background: #fff;
}

.campos_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75%;
  gap: 14px;
}
.campos_form input {
  padding-left: 10px;
  width: 80%;
  height: 32px;
  border-style: none;
  border-radius: 5px;
  background: #e6e6e6;
}
.campos_form ::placeholder {
  color: #32375f;
  font-family: arial;
  font-size: 20px;
  font-style: italic;
}

.tel_email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  gap: 16px;
}

.boton_enviar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  height: 20%;
}

.boton_enviar button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 265px;
  height: 45px;

  border-radius: 12px;

  cursor: pointer;
  text-decoration: none;
  font-family: Arial;
  color: #e6e6e6;
  background: #32375f;
  font-size: 22px;
  font-weight: bold;
}

@media (min-width: 1025px) and (max-width: 1280px) {
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media (min-width: 481px) and (max-width: 767px) {
  .contacto_informacion {
    flex-direction: row;
    width: 100%;
  }
  .seccion_contacto {
    padding: 20px;
    height: auto;
    flex-direction: column;
    row-gap: 20px;
  }
  .numeros_alineacion {
    gap: 10px;
  }
  .numeros_alineacion span {
    font-size: 16px;
  }
  .informacion_redes a {
    font-size: 16px;
  }
  .informacion_redes {
    margin-left: 0px;
    gap: 10px;
  }
  .formulario_contacto {
    width: 100%;
  }
  .form {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 10px;
  }
  .campos_form input {
    width: 100%;
    padding-left: 0px;
    height: auto;
    padding: 5px 10px;
  }
  .campos_form input::placeholder {
    font-size: 14px;
  }
  .tel_email {
    width: 100%;
    flex-direction: column;
  }
  .boton_enviar button {
    font-size: 12px;
    width: auto;
    height: auto;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    border-style: none;
    margin-top: 20px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .contacto_informacion {
    flex-direction: column-reverse;
    width: 100%;
    gap: 20px;
  }
  .seccion_contacto {
    padding: 20px;
    height: auto;
    flex-direction: column;
    row-gap: 20px;
  }
  .numeros_alineacion {
    gap: 10px;
    flex-direction: row;
  }
  .numeros_alineacion span {
    padding: 0px 5px;
    font-size: 12px;
    border-right: 1px solid #32375f;
  }
  .numeros_alineacion span:last-child{
      border-right: none;
  }
  .informacion_redes a {
    font-size: 16px;
  }
  .informacion_redes {
    margin-left: 0px;
    gap: 10px;
  }
  .informacion_numeros {
    flex-direction: column;
  }
  .formulario_contacto {
    width: 100%;
  }
  .form {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 10px;
  }
  .campos_form input {
    width: 100%;
    padding-left: 0px;
    height: auto;
    padding: 5px 10px;
  }
  .campos_form input::placeholder {
    font-size: 14px;
  }
  .tel_email {
    width: 100%;
    flex-direction: column;
  }
  .boton_enviar button {
    font-size: 12px;
    width: auto;
    height: auto;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    border-style: none;
    margin-top: 20px;
  }
}

