    /* 1. TEXTURA DE RUÍDO (NOISE) - Dá a vibe premium/filme */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 50;
            opacity: 0.05;
            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)'/%3E%3C/svg%3E");
        }

        body {
            background-color: #050505;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* 2. CURSOR PERSONALIZADO */
        #cursor {
            width: 20px;
            height: 20px;
            border: 1px solid white;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background-color 0.3s;
            mix-blend-mode: difference;
        }
        
        /* Estado Hover do Cursor */
        body.hovering #cursor {
            width: 50px;
            height: 50px;
            background-color: white;
            border-color: transparent;
        }

        /* 3. SCROLLBAR INVISÍVEL (Estética Limpa) */
        ::-webkit-scrollbar { width: 0px; background: transparent; }

        /* 4. UTILS */
        .text-outline {
            -webkit-text-stroke: 1px rgba(255,255,255,0.2);
            color: transparent;
            transition: all 0.5s ease;
        }
        .group:hover .text-outline {
            -webkit-text-stroke: 0px;
            color: white;
        }

        .border-b-gradient {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* Animação de Entrada */
        .reveal-text {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            transform: translateY(0);
            transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
        }
        
        .is-loading .reveal-text {
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
            transform: translateY(100px);
        }