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

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

.section-botones {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.boton-contacto:link,
.boton-contacto:visited {
  animation: myAnim 2s ease 0s 1 normal forwards;
  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 1.6rem;
  border-radius: 9px;
  border: 3px solid #fff;
  text-align: center;

  /* 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: #fff;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
}

@keyframes myAnim {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
