/*CSS EXCLUSIVO PARA COLOCAR ANIMACIONES Y GALERÍAS*/

/*pulse title*/
.pulse-title {
  display: inline-block;
  animation: pulseScale 2s ease-in-out infinite;
}

/* Animación de crecer y volver al tamaño normal */
@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* crece un poquito */
  }
  100% {
    transform: scale(1);
  }
}


/*flecha de botón*/
.moving-arrow {
  display: inline-block;
  animation: move-right 1.5s infinite linear;
}

@keyframes move-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px); /* Ajusta la distancia de movimiento */
  }
  100% {
    transform: translateX(0);
  }
}
/*moving arrow*/


@media (max-width: 425px){

}



@media (max-width: 768px){

 
}