/* Minimal subset inspired by animate.css v4 for hero text */

/* Duración base y comportamiento general */
.animate__animated {
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUpSoft {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpSoft {
  animation-name: fadeInUpSoft;
}

