body {
            background-color: #F7F5F0;
            color: #2F3E35;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        /* Animações e Efeitos Globais */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes slow-pan {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-slow-pan { animation: slow-pan 20s ease-in-out infinite; }
        
        /* Efeito Glow / Shimmer em Botões */
        .btn-glow {
            position: relative;
            overflow: hidden;
        }
        .btn-glow::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-20deg);
            transition: all 0.7s ease;
        }
        .btn-glow:hover::after {
            left: 150%;
        }

        /* Glassmorphism Classes */
        .liquid-glass {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(47, 62, 53, 0.05);
        }

        /* Scroll Reveal (Aparecimento suave) */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-300 { transition-delay: 300ms; }
        .delay-400 { transition-delay: 400ms; }
        
        .noise-bg {
            position: absolute;
            inset: 0;
            opacity: 0.25;
            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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        /* Image Masking / Decoration */
        .image-mask {
            border-radius: 20px 100px 20px 20px;
        }

        /* Neon Card Animation */
        @keyframes spin-border {
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        .neon-card {
            position: relative;
            border-radius: 1.5rem;
            z-index: 1;
            overflow: hidden;
            padding: 2px; /* Espessura da borda */
        }
        .neon-card::before {
            content: "";
            position: absolute;
            top: 50%; left: 50%;
            width: 200%; height: 200%;
            /* Linha verde escuro girando */
            background: conic-gradient(from 0deg, transparent 0 320deg, rgba(47, 62, 53, 0.4) 360deg);
            transform: translate(-50%, -50%) rotate(0deg);
            animation: spin-border 5s linear infinite;
            z-index: -2;
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        .neon-card:hover::before {
            animation-duration: 2.5s;
            background: conic-gradient(from 0deg, transparent 0 280deg, rgba(47, 62, 53, 0.5) 320deg, #2F3E35 360deg);
        }
        .neon-inner {
            position: absolute;
            inset: 2px; /* Para acompanhar a espessura da borda */
            background: rgba(201, 169, 110, 0.85); /* Fundo dourado */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 1.45rem;
            z-index: -1;
            transition: background 0.5s ease;
        }
        .neon-card:hover .neon-inner {
            background: rgba(225, 195, 140, 0.95); /* Dourado um pouco mais claro no hover */
        }