/* ===== Button Gradient Animation ===== */
@keyframes botaoanimado {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* ===== Scroll Reveal Animations ===== */
.scroll-bottom {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-30px);
  transition: opacity 0.9s, filter 0.9s, transform 0.9s;
}

.scroll-top {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(30px);
  transition: opacity 0.9s, filter 0.9s, transform 0.9s;
}

.scroll-left {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(-30px);
  transition: opacity 0.9s, filter 0.9s, transform 0.9s;
}

.scroll-right {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(30px);
  transition: opacity 0.9s, filter 0.9s, transform 0.9s;
}

/* ===== Active State ===== */
.ativo {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translate(0, 0) !important;
}

/* ===== Transition Delays ===== */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
