/******* Do not edit this file *******
Code Snippets Manager
Saved: Mar 30 2026 | 01:42:08 */
/* SVG en botones */
.button svg {
  transition: all 0.6s ease;
}
.button:hover svg {
  transform: translateX(4px);
}
html {
  /* Smooth Scroll CSS */
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 20vh;
}
/* 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%;
  }
}
