/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 19 2025 | 21:11:38 */
/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Animated Gradient efecto barrido de derecha a izquierda */
.animated-gradient {
  background: linear-gradient(120deg, #155dfc 0%, #000 50%, #155dfc 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientSweep 4s linear infinite;
}
@keyframes gradientSweep {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Motion 
.bricks-is-frontend .motion {
  visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .bricks-is-frontend .motion {
    visibility: visible;
    opacity: 1;
    will-change: auto;
  }
}*/