.seccion-productos.animate-on-scroll,
.seccion-servicios.animate-on-scroll,
.contacto-seccion.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.texto-medio.animate-on-scroll {
  animation: fadeInUp 1s ease-out forwards;
}

.frase_itermedio.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.modulo-item {
  opacity: 0;
  transform: translateY(30px);
}

.seccion-servicios.animate-on-scroll .modulo-item {
  animation: fadeInUp 0.6s ease-out forwards;
}

.modulo-item:nth-child(1) {
  animation-delay: 0.1s;
}

.modulo-item:nth-child(2) {
  animation-delay: 0.2s;
}

.modulo-item:nth-child(3) {
  animation-delay: 0.3s;
}

.modulo-item:nth-child(4) {
  animation-delay: 0.4s;
}

.modulo-item:nth-child(5) {
  animation-delay: 0.5s;
}

.modulo-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.seccion-productos,
.seccion-servicios,
.contacto-seccion,
.texto-medio,
.frase_itermedio {
  opacity: 0;
}

.seccion-productos.animate-on-scroll,
.seccion-servicios.animate-on-scroll,
.contacto-seccion.animate-on-scroll,
.texto-medio.animate-on-scroll,
.frase_itermedio.animate-on-scroll {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
