/* Estilos extraídos automaticamente */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #080808;
            color: #e5e7eb;
            overflow-x: hidden;
            /* Proteção CSS contra seleção de texto */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .red-gradient {
            background: linear-gradient(90deg, #b91c1c 0%, #ef4444 50%, #b91c1c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            /* Adicionado padding lateral para evitar corte de glifos */
            padding: 0 0.05em;
        }

        .bg-spartan-dark {
            background: linear-gradient(135deg, #1a0a0a 0%, #080808 100%);
        }

        .card-glass {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-glass:hover {
            border-color: #ef4444;
            background: rgba(185, 28, 28, 0.05);
            transform: translateY(-8px);
        }

        .btn-red {
            background: linear-gradient(90deg, #991b1b 0%, #dc2626 100%);
            transition: all 0.3s ease;
            color: white;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-red:hover {
            box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
            transform: scale(1.02);
            filter: brightness(1.1);
        }

        html {
            scroll-behavior: smooth;
        }

        /* Barra de deslocamento personalizada */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        ::-webkit-scrollbar-thumb {
            background: #450a0a;
            border-radius: 10px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        .animate-float {
            animation: float 5s ease-in-out infinite;
        }

        /* Ajustes para dispositivos móveis */
        @media (max-width: 640px) {
            .text-huge {
                font-size: 1.85rem;
                line-height: 1.15;
            }
        }

        /* Efeitos Sociais do Rodapé */
        .social-icon {
            color: #4b5563; /* cinza-600 */
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: scale(1.1);
        }
        .discord-hover:hover { color: #5865F2; }
        .whatsapp-hover:hover { color: #25D366; }

@keyframes pulse-slow {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.95; transform: scale(1.02); }
        }
        .animate-pulse-slow {
            animation: pulse-slow 3s infinite ease-in-out;
        }

