/* =========================================
   NOISE TEXTURE BACKGROUND
   Textura de ruído sutil para o fundo
   ========================================= */

body {
  background-color: #000000 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.10'/%3E%3C/svg%3E") !important;
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* Ajustar opacidade do ruído em elementos específicos */
main, section {
  position: relative;
}

/* Garantir que o ruído apareça em fundos brancos */
.bg-white, [class*="bg-white"] {
  background-color: transparent !important;
  background-image: none !important;
}

/* Garantir que o ruído apareça em fundos cinza */
.bg-gray-50, [class*="bg-gray"] {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulance 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") !important;
  background-blend-mode: overlay;
  background-size: 200px 200px;
}
