/* Estilos para os efeitos de parallax e gradientes */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 3;
}

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient {
  position: absolute;
  transition: all 8s cubic-bezier(0.42, 0, 0.58, 1);
  border-radius: 50%;
  filter: blur(60px);
}

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  opacity: 0.4;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
  transition: transform 0.1s ease-out;
}

.perspective-1000 {
  perspective: 1000px;
}

.parallax-content {
  transform-style: preserve-3d;
  will-change: transform;
}
