.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#000000;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */body {
    position: relative; /* Essencial para que o ::before possa se posicionar corretamente */
    overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

body::before {
    content: ""; /* Necessário para pseudo-elementos */
    position: fixed; /* Fixa o overlay na tela, mesmo com a rolagem */
    top: 0;
    left: 0;
    width: 100vw; /* Garante que cubra a largura total da viewport */
    height: 100vh; /* Garante que cubra a altura total da viewport */
    
    /* Sua imagem GIF de ruído */
    background-image: url('https://mtbsuplementos.com.br/wp-content/uploads/2025/10/ruido-animado.gif'); 
    
    /* Garante que o ruído cubra toda a área, repetindo se necessário */
    background-repeat: repeat; 
    
    /* Ajuste a opacidade (transparência) aqui. 0.05 é bem sutil. */
    opacity: 0.05; /* Valores entre 0 (totalmente transparente) e 1 (totalmente opaco) */
    
    /* Garante que o overlay fique por cima de todo o conteúdo */
    z-index: 9999; /* Um valor alto para ficar acima de outros elementos */
    
    /* Impede que o overlay interfira com cliques ou seleções de texto */
    pointer-events: none; 
}

/* Remova qualquer background-image do body que tenha sido definido anteriormente */
body.elementor-editor-active {
    background-image: none !important;
}/* End custom CSS */