       /* ============================================
           RESET & VARIABLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gradient-primary: linear-gradient(90deg, rgba(0, 231, 252, 1) 0%, rgba(0, 255, 77, 1) 100%);
            --gradient-badge: linear-gradient(90deg, rgba(0, 41, 99, 1) 0%, rgba(0, 207, 182, 1) 21%, rgba(0, 245, 180, 1) 48%, rgba(0, 246, 131, 1) 80%, rgba(0, 255, 68, 1) 100%);
            --gradient-flare: radial-gradient(circle, rgba(0, 231, 252, 0.4) 0%, rgba(0, 255, 77, 0.3) 30%, rgba(0, 255, 77, 0.2) 60%, transparent 100%);
            --color-primary: #00e7fc;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 3rem;
            --spacing-xl: 4rem;
            --spacing-xxl: 6rem;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* ============================================
           DARK MODE (DEFAULT)
           ============================================ */
        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-tertiary: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-tertiary: #808080;
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.5);
        }
        
        /* ============================================
            LIGHT MODE - PREMIUM DESIGN
           ============================================ */
        [data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-tertiary: #64748b;
            --border-color: rgba(15, 23, 42, 0.12);
            --shadow-color: rgba(15, 23, 42, 0.1);
            /* Gradientes adaptados para tema claro - mais vibrantes */
            --gradient-primary: linear-gradient(90deg, rgba(14, 165, 233, 1) 0%, rgba(34, 197, 94, 1) 100%);
            --gradient-badge: linear-gradient(90deg, rgba(14, 165, 233, 0.9) 0%, rgba(34, 197, 94, 0.9) 100%);
            --gradient-flare: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(34, 197, 94, 0.12) 30%, rgba(34, 197, 94, 0.08) 60%, transparent 100%);
            --color-primary: #0ea5e9;
        }
        
        html {
            scroll-behavior: smooth;
            height: 100%;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        
        
        /* ============================================
           NAVBAR FLUTUANTE
           ============================================ */
        .navbar {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 4rem);
            max-width: 1200px;
            padding: 1.25rem 2rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: visible;
        }
        
        /* Flare effect no header (tema escuro) */
        .navbar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 20%;
            width: 400px;
            height: 400px;
            background: var(--gradient-flare);
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .navbar.scrolled::before {
            opacity: 0.2;
        }
        
        [data-theme="light"] .navbar::before {
            opacity: 0;
        }
        
        [data-theme="light"] .logo img {
            filter: brightness(0) invert(0);
            opacity: 1;
        }
        
        .navbar.scrolled {
            top: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(17, 17, 17, 0.5);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }
        
        [data-theme="light"] .navbar {
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(15, 23, 42, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
        }
        
        [data-theme="light"] .navbar.scrolled {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            box-shadow: 
                0 12px 40px rgba(15, 23, 42, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 100%;
            overflow: visible;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            height: 40px;
            flex-shrink: 0;
            min-width: 120px;
            z-index: 10;
        }
        
        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            max-height: 40px;
            display: block;
            max-width: 200px;
            opacity: 1;
            visibility: visible;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
            overflow: visible;
        }
        
        .nav-menu li {
            flex-shrink: 0;
            overflow: visible;
        }
        
        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--text-primary);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--text-primary);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 10px rgba(0, 231, 252, 0.3),
                0 0 20px rgba(0, 231, 252, 0.2),
                0 0 30px rgba(0, 255, 77, 0.15),
                inset 0 0 10px rgba(0, 231, 252, 0.1);
            animation: neonGlowButton 3s ease-in-out infinite;
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
        }
        
        .nav-cta span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }
        
        @keyframes neonGlowButton {
            0%, 100% {
                box-shadow: 
                    0 0 10px rgba(0, 231, 252, 0.3),
                    0 0 20px rgba(0, 231, 252, 0.2),
                    0 0 30px rgba(0, 255, 77, 0.15),
                    inset 0 0 10px rgba(0, 231, 252, 0.1);
            }
            50% {
                box-shadow: 
                    0 0 15px rgba(0, 231, 252, 0.5),
                    0 0 25px rgba(0, 231, 252, 0.3),
                    0 0 40px rgba(0, 255, 77, 0.25),
                    inset 0 0 15px rgba(0, 231, 252, 0.15);
            }
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            animation: none;
            box-shadow: 
                0 0 15px rgba(0, 231, 252, 0.5),
                0 0 25px rgba(0, 231, 252, 0.3),
                0 0 40px rgba(0, 255, 77, 0.25),
                inset 0 0 15px rgba(0, 231, 252, 0.15);
        }
        
        [data-theme="light"] .nav-cta {
            background: rgba(255, 255, 255, 0.25) !important;
            backdrop-filter: blur(20px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
            border: 1px solid rgba(255, 255, 255, 0.5) !important;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2) !important;
            animation: none !important;
        }
        
        [data-theme="light"] .nav-cta::before {
            display: none !important;
        }
        
        [data-theme="light"] .nav-cta span {
            color: #1a1a1a !important;
            -webkit-text-fill-color: #1a1a1a !important;
            background: none !important;
            background-clip: unset !important;
            font-weight: 700;
        }
        
        [data-theme="light"] .nav-cta:hover {
            background: rgba(255, 255, 255, 0.4) !important;
            border-color: rgba(255, 255, 255, 0.7) !important;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(255, 255, 255, 0.3) !important;
            transform: translateY(-2px);
        }
        
        /* Theme Toggle Button */
        .theme-toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1.2rem;
            margin-left: 1rem;
            box-shadow: 0 2px 10px var(--shadow-color);
        }
        
        .theme-toggle:hover {
            transform: scale(1.1);
            border-color: rgba(0, 231, 252, 0.5);
            box-shadow: 0 4px 20px rgba(0, 231, 252, 0.2);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        
        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
            isolation: isolate;
            contain: layout;
        }
        
        
        /* Triângulos decorativos - removido */
        .hero::after {
            display: none;
        }
        
        
        /* Segundo triângulo */
        .hero {
            background-image: none;
        }
        
        /* Flares de luz nas laterais */
        .hero-flare {
            position: absolute;
            top: 10%;
            left: 0;
            width: 600px;
            height: 80%;
            background: radial-gradient(ellipse at left center, rgba(0, 231, 252, 0.25) 0%, rgba(0, 231, 252, 0.15) 30%, transparent 70%);
            border-radius: 0;
            filter: blur(100px);
            z-index: 0;
            animation: pulseFlare 8s ease-in-out infinite;
            transform-origin: left center;
            pointer-events: none;
            will-change: transform, opacity;
        }
        
        /* Flare secundário - lateral direita */
        .hero-flare-secondary {
            position: absolute;
            top: 10%;
            right: 0;
            width: 600px;
            height: 80%;
            background: radial-gradient(ellipse at right center, rgba(0, 255, 77, 0.25) 0%, rgba(0, 255, 77, 0.15) 30%, transparent 70%);
            border-radius: 0;
            filter: blur(100px);
            z-index: 0;
            animation: pulseFlare 10s ease-in-out infinite reverse;
            transform-origin: right center;
            pointer-events: none;
            will-change: transform, opacity;
        }
        
        /* Terceiro flare - removido */
        .hero-flare-tertiary {
            display: none;
        }
        
        /* Triângulo decorativo grande */
        .hero::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.1) 0%, rgba(0, 231, 252, 0.08) 50%, rgba(0, 255, 77, 0.1) 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            transform: rotate(25deg);
            filter: blur(60px);
            z-index: 0;
            animation: floatTriangle 20s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Padrão de Triângulos Moderno e Dinâmico */
        .hero-triangle-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.2;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='800' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='tg1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.15);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.08);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='tg2' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.12);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,231,252,0.1);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.08);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='tg3' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.1);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.06);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='tg4' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.05);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cg opacity='0.9'%3E%3Cpolygon points='0,0 400,346 0,692' fill='url(%23tg1)' stroke='rgba(0,231,252,0.2)' stroke-width='1'/%3E%3Cpolygon points='400,0 800,0 400,346' fill='url(%23tg2)' stroke='rgba(0,255,77,0.2)' stroke-width='1'/%3E%3Cpolygon points='800,0 800,346 400,346' fill='url(%23tg3)' stroke='rgba(0,231,252,0.15)' stroke-width='1'/%3E%3Cpolygon points='0,346 200,519 0,692' fill='url(%23tg4)' stroke='rgba(0,255,77,0.18)' stroke-width='1'/%3E%3Cpolygon points='200,346 400,346 200,519' fill='url(%23tg1)' stroke='rgba(0,231,252,0.12)' stroke-width='1'/%3E%3Cpolygon points='400,346 600,519 400,692' fill='url(%23tg2)' stroke='rgba(0,255,77,0.15)' stroke-width='1'/%3E%3Cpolygon points='600,346 800,346 600,519' fill='url(%23tg3)' stroke='rgba(0,231,252,0.1)' stroke-width='1'/%3E%3Cpolygon points='800,346 800,519 600,519' fill='url(%23tg4)' stroke='rgba(0,255,77,0.12)' stroke-width='1'/%3E%3Cpolygon points='200,519 400,692 200,692' fill='url(%23tg1)' stroke='rgba(0,231,252,0.08)' stroke-width='1'/%3E%3Cpolygon points='400,519 600,692 400,692' fill='url(%23tg2)' stroke='rgba(0,255,77,0.1)' stroke-width='1'/%3E%3Cpolygon points='600,519 800,692 600,692' fill='url(%23tg3)' stroke='rgba(0,231,252,0.08)' stroke-width='1'/%3E%3Cpolygon points='100,173 300,346 100,519' fill='url(%23tg4)' stroke='rgba(0,255,77,0.1)' stroke-width='0.8'/%3E%3Cpolygon points='300,173 500,173 300,346' fill='url(%23tg1)' stroke='rgba(0,231,252,0.1)' stroke-width='0.8'/%3E%3Cpolygon points='500,173 700,173 500,346' fill='url(%23tg2)' stroke='rgba(0,255,77,0.12)' stroke-width='0.8'/%3E%3Cpolygon points='700,173 800,173 700,346' fill='url(%23tg3)' stroke='rgba(0,231,252,0.08)' stroke-width='0.8'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 800px 800px;
            background-repeat: repeat;
            filter: blur(0.5px);
            animation: trianglePatternMove 120s linear infinite;
            transform-origin: center center;
        }
        
        .hero-triangle-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='tgAlt1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.08);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.05);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 300,520 0,600' fill='url(%23tgAlt1)' stroke='rgba(0,231,252,0.1)' stroke-width='0.5'/%3E%3Cpolygon points='300,0 600,0 300,520' fill='url(%23tgAlt1)' stroke='rgba(0,255,77,0.1)' stroke-width='0.5'/%3E%3Cpolygon points='600,0 600,520 300,520' fill='url(%23tgAlt1)' stroke='rgba(0,231,252,0.08)' stroke-width='0.5'/%3E%3C/svg%3E");
            background-size: 600px 600px;
            background-repeat: repeat;
            opacity: 0.4;
            animation: trianglePatternMoveReverse 100s linear infinite;
            filter: blur(1px);
        }
        
        .hero-triangle-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 231, 252, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 77, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 231, 252, 0.05) 0%, transparent 70%);
            animation: triangleGlow 8s ease-in-out infinite alternate;
            opacity: 0.6;
        }
        
        [data-theme="light"] .hero-triangle-pattern {
            opacity: 0.12;
            filter: blur(0.8px);
        }
        
        [data-theme="light"] .hero-triangle-pattern::before {
            opacity: 0.2;
            filter: blur(1.5px);
        }
        
        [data-theme="light"] .hero-triangle-pattern::after {
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
            opacity: 0.4;
        }
        
        @keyframes trianglePatternMove {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-50px, 50px);
            }
            50% {
                transform: translate(-100px, 0px);
            }
            75% {
                transform: translate(-50px, -50px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes trianglePatternMoveReverse {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(30px, -30px);
            }
            50% {
                transform: translate(60px, 0px);
            }
            75% {
                transform: translate(30px, 30px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes triangleGlow {
            0% {
                opacity: 0.4;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.1);
            }
        }
        
        /* Animações */
        @keyframes floatTriangle {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-30px);
                opacity: 1;
            }
        }
        
        /* Animações para padrão mosaico - movimento suave vertical */
        @keyframes floatTriangle1 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-15px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle2 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-18px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle3 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-16px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle4 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle5 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-14px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle6 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-19px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle7 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-17px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle8 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-15px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle9 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-18px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle10 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-16px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle11 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle12 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-14px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle13 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-19px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle14 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-17px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle15 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-15px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle16 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-18px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle17 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-16px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle18 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle19 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-14px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle20 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-19px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle21 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-17px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle22 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-15px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle23 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-18px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle24 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-16px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle25 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle26 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-14px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle27 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-19px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle28 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-17px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle29 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-15px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle30 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-18px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle31 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-16px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle32 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes floatTriangle33 {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
            50% { transform: translateY(-14px) rotate(0deg); opacity: 1; }
        }
        
        @keyframes pulseFlare {
            0%, 100% {
                opacity: 0.6;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }
        
        @keyframes rotateFlare {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }
        
        [data-theme="light"] .hero-flare {
            background: radial-gradient(ellipse at left center, rgba(150, 150, 150, 0.15) 0%, rgba(200, 200, 200, 0.1) 30%, transparent 70%);
            filter: blur(120px);
            opacity: 0.6;
        }
        
        [data-theme="light"] .hero-flare-secondary {
            background: radial-gradient(ellipse at right center, rgba(180, 180, 180, 0.15) 0%, rgba(220, 220, 220, 0.1) 30%, transparent 70%);
            filter: blur(120px);
            opacity: 0.6;
        }
        
        [data-theme="light"] .hero::after {
            background: linear-gradient(135deg, rgba(180, 180, 180, 0.08) 0%, rgba(200, 200, 200, 0.05) 50%, rgba(220, 220, 220, 0.08) 100%);
            filter: blur(80px);
            opacity: 0.4;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        /* Textura de filme/grain abaixo dos textos do hero */
        
        /* Hero Badge - Card Neon */
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            margin-bottom: 1.5rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid transparent;
            border-radius: 25px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out 0.1s both, neonGlow 3s ease-in-out infinite;
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .hero-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 25px;
            padding: 1px;
            background: var(--gradient-badge);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
        }
        
        /* Efeito glow neon */
        .hero-badge {
            box-shadow: 
                0 0 10px rgba(0, 207, 182, 0.3),
                0 0 20px rgba(0, 207, 182, 0.2),
                0 0 30px rgba(0, 245, 180, 0.15),
                inset 0 0 10px rgba(0, 207, 182, 0.1);
        }
        
        @keyframes neonGlow {
            0%, 100% {
                box-shadow: 
                    0 0 10px rgba(0, 207, 182, 0.3),
                    0 0 20px rgba(0, 207, 182, 0.2),
                    0 0 30px rgba(0, 245, 180, 0.15),
                    inset 0 0 10px rgba(0, 207, 182, 0.1);
            }
            50% {
                box-shadow: 
                    0 0 15px rgba(0, 207, 182, 0.5),
                    0 0 25px rgba(0, 207, 182, 0.3),
                    0 0 40px rgba(0, 245, 180, 0.25),
                    inset 0 0 15px rgba(0, 207, 182, 0.15);
            }
        }
        
        [data-theme="light"] .hero-badge {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.02) 2px,
                    rgba(255, 255, 255, 0.02) 4px
                ) !important;
            backdrop-filter: blur(25px) saturate(200%) !important;
            -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05) !important;
            color: #ffffff !important;
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.1s both !important;
            overflow: hidden;
        }
        
        /* Textura de vidro com padrão */
        [data-theme="light"] .hero-badge::after {
            content: '' !important;
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 1px,
                    rgba(255, 255, 255, 0.01) 1px,
                    rgba(255, 255, 255, 0.01) 2px
                );
            pointer-events: none;
            opacity: 0.6;
            z-index: 1;
            border-radius: 25px;
        }
        
        [data-theme="light"] .hero-badge::before {
            display: none !important;
        }
        
        [data-theme="light"] .hero-badge:hover {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px
                ) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.08) !important;
            transform: translateY(-2px);
        }
        
        [data-theme="light"] .hero-badge:hover::after {
            opacity: 0.8;
        }
        
        [data-theme="light"] .hero-badge span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            background: none !important;
            background-clip: unset !important;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-title .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        [data-theme="light"] .section-title .gradient-text {
            background: linear-gradient(90deg, #0ea5e9 0%, #22c55e 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.15));
        }
        
        /* Manter apenas "empresarial" com gradiente */
        [data-theme="light"] .hero-title .gradient-text {
            background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.2));
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-cta {
            display: inline-flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            border: 1px solid transparent;
        }
        
        .btn-primary {
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--text-primary);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            background-clip: padding-box;
            box-shadow: 
                0 0 10px rgba(0, 231, 252, 0.3),
                0 0 20px rgba(0, 231, 252, 0.2),
                0 0 30px rgba(0, 255, 77, 0.15),
                inset 0 0 10px rgba(0, 231, 252, 0.1);
            animation: neonGlowButton 3s ease-in-out infinite;
        }
        
        /* Borda neon com gradiente usando pseudo-elemento - igual ao nav-cta */
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: 0;
            pointer-events: none;
        }
        
        .btn-primary {
            isolation: isolate;
        }
        
        .btn-primary span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            animation: none;
            box-shadow: 
                0 0 15px rgba(0, 231, 252, 0.5),
                0 0 25px rgba(0, 231, 252, 0.3),
                0 0 40px rgba(0, 255, 77, 0.25),
                inset 0 0 15px rgba(0, 231, 252, 0.15);
        }
        
        [data-theme="light"] .btn-primary {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.02) 2px,
                    rgba(255, 255, 255, 0.02) 4px
                ) !important;
            backdrop-filter: blur(25px) saturate(200%) !important;
            -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05) !important;
            color: #ffffff !important;
            position: relative;
            overflow: hidden;
        }
        
        /* Textura de vidro com padrão */
        [data-theme="light"] .btn-primary::after {
            content: '' !important;
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 1px,
                    rgba(255, 255, 255, 0.01) 1px,
                    rgba(255, 255, 255, 0.01) 2px
                );
            pointer-events: none;
            opacity: 0.6;
            z-index: 1;
            border-radius: 50px;
        }
        
        [data-theme="light"] .btn-primary::before {
            display: none;
        }
        
        [data-theme="light"] .btn-primary:hover {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px
                ) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.08) !important;
            transform: translateY(-2px);
        }
        
        [data-theme="light"] .btn-primary:hover::after {
            opacity: 0.8;
        }
        
        [data-theme="light"] .btn-primary span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            background: none !important;
            background-clip: unset !important;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .btn-secondary {
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--text-primary);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            background-clip: padding-box;
            box-shadow: 
                0 0 10px rgba(0, 231, 252, 0.3),
                0 0 20px rgba(0, 231, 252, 0.2),
                0 0 30px rgba(0, 255, 77, 0.15),
                inset 0 0 10px rgba(0, 231, 252, 0.1);
            animation: neonGlowButton 3s ease-in-out infinite;
        }
        
        /* Borda neon com gradiente usando pseudo-elemento - igual ao nav-cta */
        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: 0;
            pointer-events: none;
        }
        
        .btn-secondary {
            isolation: isolate;
        }
        
        .btn-secondary span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            animation: none;
            box-shadow: 
                0 0 15px rgba(0, 231, 252, 0.5),
                0 0 25px rgba(0, 231, 252, 0.3),
                0 0 40px rgba(0, 255, 77, 0.25),
                inset 0 0 15px rgba(0, 231, 252, 0.15);
        }
        
        [data-theme="light"] .btn-secondary {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.02) 2px,
                    rgba(255, 255, 255, 0.02) 4px
                ) !important;
            backdrop-filter: blur(25px) saturate(200%) !important;
            -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05) !important;
            animation: none;
            position: relative;
            overflow: hidden;
        }
        
        /* Textura de vidro com padrão */
        [data-theme="light"] .btn-secondary::after {
            content: '' !important;
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 1px,
                    rgba(255, 255, 255, 0.01) 1px,
                    rgba(255, 255, 255, 0.01) 2px
                );
            pointer-events: none;
            opacity: 0.6;
            z-index: 1;
            border-radius: 50px;
        }
        
        [data-theme="light"] .btn-secondary::before {
            display: none;
        }
        
        [data-theme="light"] .btn-secondary:hover {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px
                ) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.08) !important;
            transform: translateY(-2px);
            animation: none;
        }
        
        [data-theme="light"] .btn-secondary:hover::after {
            opacity: 0.8;
        }
        
        [data-theme="light"] .btn-secondary span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            background: none !important;
            background-clip: unset !important;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        /* ============================================
           SECTIONS
           ============================================ */
        .section {
            padding: var(--spacing-xxl) 2rem;
            position: relative;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
            margin-top: 4rem;
        }
        
        #features .section-header {
            margin-top: 8rem !important;
        }
        
        .section-subtitle {
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-tertiary);
            margin-bottom: 0.5rem;
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .section-title .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        [data-theme="light"] .section-title .gradient-text {
            background: none !important;
            -webkit-background-clip: unset !important;
            -webkit-text-fill-color: #1a1a1a !important;
            background-clip: unset !important;
            filter: none !important;
            color: #1a1a1a !important;
        }
        
        [data-theme="light"] .section-subtitle {
            color: #006694;
            font-weight: 700;
        }
        
        [data-theme="light"] .section-description {
            color: #4a4a4a;
        }
        
        [data-theme="light"] .feature-title {
            color: #1a1a1a;
            font-weight: 700;
        }
        
        [data-theme="light"] .feature-description {
            color: #4a4a4a;
            line-height: 1.7;
        }
        
        .services-products-title {
            text-align: center;
            margin-bottom: 8rem !important;
            margin-top: 4rem !important;
            padding-top: 3rem;
            padding-bottom: 4rem;
            position: relative;
        }
        
        .services-products-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            box-shadow: 
                0 0 10px rgba(0, 231, 252, 0.5),
                0 0 20px rgba(0, 255, 77, 0.3);
        }
        
        .services-products-title h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.4;
            margin: 0 !important;
            padding: 0;
        }
        
        .services-products-title .section-title {
            margin-bottom: 0 !important;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ============================================
           CLIENTES SECTION
           ============================================ */
        /* Seção de clientes mais próxima do hero */
        #clients {
            padding-top: 2rem !important;
            margin-top: 0 !important;
        }
        
        #clients .section-header {
            margin-top: 1rem !important;
            margin-bottom: 2rem !important;
        }
        
        .clients-carousel {
            width: 100%;
            overflow: hidden;
            margin-top: 1rem;
            position: relative;
            padding: 2rem 0;
        }
        
        .clients-track {
            display: flex;
            gap: 3rem;
            animation: scrollClients 30s linear infinite;
            width: fit-content;
        }
        
        .client-logo {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            padding: 1.5rem;
            background: rgba(17, 17, 17, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 2px solid rgba(0, 231, 252, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0.6;
        }
        
        .client-logo:hover {
            opacity: 1;
            border-color: rgba(0, 231, 252, 0.5);
            transform: scale(1.05);
        }
        
        .client-logo img {
            width: 150%;
            height: 150%;
            object-fit: contain;
            filter: grayscale(100%) brightness(0.9);
            transition: filter 0.3s ease;
        }
        
        /* Logos específicos que precisam ser maiores */
        .client-logo img[src*="CAMUCA_LOGO"],
        .client-logo img[src*="ZEUS ROSOLVE_LOGO"] {
            width: 300%;
            height: 300%;
            transform: translateY(15px);
        }
        
        .client-logo:hover img {
            filter: grayscale(100%) brightness(1.1);
        }
        
        [data-theme="light"] .client-logo {
            background: rgba(255, 255, 255, 0.98);
            border-color: rgba(14, 165, 233, 0.2);
            opacity: 1;
            box-shadow: 
                0 4px 20px rgba(15, 23, 42, 0.08),
                0 2px 8px rgba(15, 23, 42, 0.04),
                0 0 0 1px rgba(14, 165, 233, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
        }
        
        [data-theme="light"] .client-logo:hover {
            border-color: rgba(14, 165, 233, 0.5);
            opacity: 1;
            box-shadow: 
                0 8px 30px rgba(14, 165, 233, 0.15),
                0 4px 16px rgba(15, 23, 42, 0.1),
                0 0 0 1px rgba(14, 165, 233, 0.4),
                0 0 20px rgba(14, 165, 233, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: rgba(255, 255, 255, 1);
            transform: scale(1.05);
        }
        
        [data-theme="light"] .client-logo img {
            filter: grayscale(20%) brightness(0.9) contrast(1.1);
        }
        
        [data-theme="light"] .client-logo:hover img {
            filter: grayscale(0%) brightness(1) contrast(1.2);
        }
        
        @keyframes scrollClients {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* ============================================
           COMPLEXO DMC SECTION
           ============================================ */
        .complexo-section {
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Flares animados para Complexo DMC */
        .complexo-flare-1 {
            position: absolute;
            top: 10%;
            left: 5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(ellipse at center, rgba(0, 231, 252, 0.3) 0%, rgba(0, 231, 252, 0.2) 30%, transparent 70%);
            filter: blur(80px);
            z-index: 0;
            animation: complexoPulse1 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        .complexo-flare-2 {
            position: absolute;
            bottom: 15%;
            right: 10%;
            width: 450px;
            height: 450px;
            background: radial-gradient(ellipse at center, rgba(0, 255, 77, 0.3) 0%, rgba(0, 255, 77, 0.2) 30%, transparent 70%);
            filter: blur(90px);
            z-index: 0;
            animation: complexoPulse2 10s ease-in-out infinite;
            pointer-events: none;
        }
        
        .complexo-flare-3 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(0, 231, 252, 0.2) 0%, rgba(0, 255, 77, 0.15) 40%, transparent 70%);
            filter: blur(70px);
            z-index: 0;
            transform: translate(-50%, -50%);
            animation: complexoPulse3 12s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Padrão triangular animado para Complexo DMC */
        .complexo-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.25;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='cpt1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.2);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,255,77,0.15);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='cpt2' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.18);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,231,252,0.12);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 300,520 0,600' fill='url(%23cpt1)'/%3E%3Cpolygon points='300,0 600,0 300,520' fill='url(%23cpt2)'/%3E%3Cpolygon points='600,0 600,520 300,520' fill='url(%23cpt1)'/%3E%3Cpolygon points='150,260 450,260 300,0' fill='url(%23cpt2)' opacity='0.6'/%3E%3Cpolygon points='150,520 450,520 300,260' fill='url(%23cpt1)' opacity='0.6'/%3E%3C/svg%3E");
            background-size: 600px 600px;
            background-repeat: repeat;
            filter: blur(0.5px);
            animation: complexoTriangleMove 100s linear infinite;
            transform-origin: center center;
        }
        
        .complexo-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='cptAlt' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.15);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 200,346 0,400' fill='url(%23cptAlt)'/%3E%3Cpolygon points='200,0 400,0 200,346' fill='url(%23cptAlt)'/%3E%3Cpolygon points='400,0 400,346 200,346' fill='url(%23cptAlt)'/%3E%3C/svg%3E");
            background-size: 400px 400px;
            background-repeat: repeat;
            opacity: 0.5;
            animation: complexoTriangleMoveReverse 80s linear infinite;
            filter: blur(1px);
        }
        
        .complexo-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 40%, rgba(0, 231, 252, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 255, 77, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 231, 252, 0.08) 0%, transparent 70%);
            animation: complexoGlow 9s ease-in-out infinite alternate;
            opacity: 0.7;
        }
        
        /* Partículas triangulares flutuantes */
        .complexo-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .complexo-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            opacity: 0.4;
        }
        
        .complexo-triangle-1 {
            border-left: 35px solid transparent;
            border-right: 35px solid transparent;
            border-top: 0;
            border-bottom: 60px solid rgba(0, 231, 252, 0.5);
            top: 10%;
            left: 5%;
            animation: complexoFloat1 12s ease-in-out infinite;
        }
        
        .complexo-triangle-2 {
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-top: 70px solid rgba(0, 255, 77, 0.45);
            border-bottom: 0;
            top: 5%;
            right: 8%;
            animation: complexoFloat2 15s ease-in-out infinite;
        }
        
        .complexo-triangle-3 {
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 0;
            border-bottom: 25px solid rgba(0, 231, 252, 0.4);
            bottom: 15%;
            left: 12%;
            animation: complexoFloat3 18s ease-in-out infinite;
        }
        
        .complexo-triangle-4 {
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-top: 85px solid rgba(0, 255, 77, 0.4);
            border-bottom: 0;
            bottom: 10%;
            right: 15%;
            animation: complexoFloat4 14s ease-in-out infinite;
        }
        
        .complexo-triangle-5 {
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 0;
            border-bottom: 20px solid rgba(0, 231, 252, 0.35);
            top: 50%;
            left: 3%;
            animation: complexoFloat5 16s ease-in-out infinite;
        }
        
        .complexo-triangle-6 {
            border-left: 45px solid transparent;
            border-right: 45px solid transparent;
            border-top: 75px solid rgba(0, 255, 77, 0.4);
            border-bottom: 0;
            top: 45%;
            right: 5%;
            animation: complexoFloat6 13s ease-in-out infinite;
        }
        
        /* Animações para Complexo DMC */
        @keyframes complexoPulse1 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.2) translate(30px, -20px);
                opacity: 0.9;
            }
        }
        
        @keyframes complexoPulse2 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.15) translate(-25px, 30px);
                opacity: 0.8;
            }
        }
        
        @keyframes complexoPulse3 {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.4;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0.7;
            }
        }
        
        @keyframes complexoTriangleMove {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-40px, 40px);
            }
            50% {
                transform: translate(-80px, 0px);
            }
            75% {
                transform: translate(-40px, -40px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes complexoTriangleMoveReverse {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(35px, -35px);
            }
            50% {
                transform: translate(70px, 0px);
            }
            75% {
                transform: translate(35px, 35px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes complexoGlow {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 0.9;
                transform: scale(1.1);
            }
        }
        
        @keyframes complexoFloat1 {
            0%, 100% {
                transform: rotate(90deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(90deg) translateY(-40px) translateX(25px);
                opacity: 0.6;
            }
        }
        
        @keyframes complexoFloat2 {
            0%, 100% {
                transform: rotate(180deg) translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: rotate(180deg) translateY(45px) translateX(-30px);
                opacity: 0.65;
            }
        }
        
        @keyframes complexoFloat3 {
            0%, 100% {
                transform: rotate(45deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(45deg) translateY(50px) translateX(35px);
                opacity: 0.6;
            }
        }
        
        @keyframes complexoFloat4 {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-55px) translateX(-40px);
                opacity: 0.6;
            }
        }
        
        @keyframes complexoFloat5 {
            0%, 100% {
                transform: rotate(-30deg) translateY(0) translateX(0);
                opacity: 0.25;
            }
            50% {
                transform: rotate(-30deg) translateY(-35px) translateX(30px);
                opacity: 0.55;
            }
        }
        
        @keyframes complexoFloat6 {
            0%, 100% {
                transform: rotate(135deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(135deg) translateY(40px) translateX(-25px);
                opacity: 0.6;
            }
        }
        
        /* Ajustes para tema claro */
        [data-theme="light"] .complexo-flare-1,
        [data-theme="light"] .complexo-flare-2,
        [data-theme="light"] .complexo-flare-3 {
            opacity: 0.2;
            filter: blur(100px);
        }
        
        [data-theme="light"] .complexo-pattern {
            opacity: 0.1;
        }
        
        [data-theme="light"] .complexo-pattern::after {
            background: 
                radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
            opacity: 0.3;
        }
        
        .complexo-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .complexo-image-wrapper {
            flex: 0 0 auto;
            position: relative;
            display: inline-block;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .complexo-image-wrapper:hover {
            transform: translateY(-8px) scale(1.02);
        }
        
        .complexo-image-wrapper img {
            width: 100%;
            height: auto;
            max-width: 600px;
            display: block;
            border-radius: 24px;
            object-fit: cover;
            position: relative;
            z-index: 1;
            filter: 
                drop-shadow(0 0 4px rgba(0, 231, 252, 0.25))
                drop-shadow(0 0 8px rgba(0, 255, 77, 0.2))
                drop-shadow(0 0 12px rgba(0, 231, 252, 0.15));
            transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .complexo-image-wrapper:hover img {
            filter: 
                drop-shadow(0 0 6px rgba(0, 231, 252, 0.4))
                drop-shadow(0 0 12px rgba(0, 255, 77, 0.3))
                drop-shadow(0 0 18px rgba(0, 231, 252, 0.25))
                drop-shadow(0 0 24px rgba(0, 255, 77, 0.2));
        }
        
        .complexo-text {
            flex: 1 1 auto;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
        }
        
        .complexo-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 0.5rem 0;
            letter-spacing: 0.05em;
            line-height: 1.1;
            text-align: center;
        }
        
        .complexo-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 500;
            color: var(--text-secondary);
            margin: 0;
            letter-spacing: 0.1em;
            text-transform: lowercase;
            opacity: 0.8;
            text-align: center;
        }
        
        [data-theme="light"] .complexo-image-wrapper img {
            filter: 
                drop-shadow(0 0 4px rgba(0, 231, 252, 0.3))
                drop-shadow(0 0 8px rgba(0, 255, 77, 0.25))
                drop-shadow(0 0 12px rgba(0, 231, 252, 0.2));
        }
        
        [data-theme="light"] .complexo-image-wrapper:hover img {
            filter: 
                drop-shadow(0 0 6px rgba(0, 231, 252, 0.45))
                drop-shadow(0 0 12px rgba(0, 255, 77, 0.35))
                drop-shadow(0 0 18px rgba(0, 231, 252, 0.3))
                drop-shadow(0 0 24px rgba(0, 255, 77, 0.25));
        }
        
        [data-theme="light"] .complexo-title {
            color: #1a1a1a;
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }
        
        [data-theme="light"] .complexo-subtitle {
            color: #4a4a4a;
        }
        
        /* Responsividade para Complexo DMC */
        @media (max-width: 991px) {
            .complexo-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .complexo-image-wrapper {
                width: 100%;
                max-width: 600px;
            }
            
            .complexo-image-wrapper img {
                max-width: 100%;
            }
            
            .complexo-text {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .complexo-section {
                padding: 3rem 0;
            }
            
            .complexo-image-wrapper img {
                max-width: 100%;
            }
        }
        
        /* ============================================
           BEAR FINANCE SECTION
           ============================================ */
        .bear-section {
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Flares animados para Bear Finance */
        .bear-flare-1 {
            position: absolute;
            top: 15%;
            right: 8%;
            width: 550px;
            height: 550px;
            background: radial-gradient(ellipse at center, rgba(0, 255, 77, 0.35) 0%, rgba(0, 255, 77, 0.25) 30%, transparent 70%);
            filter: blur(85px);
            z-index: 0;
            animation: bearPulse1 9s ease-in-out infinite;
            pointer-events: none;
        }
        
        .bear-flare-2 {
            position: absolute;
            bottom: 10%;
            left: 8%;
            width: 480px;
            height: 480px;
            background: radial-gradient(ellipse at center, rgba(0, 231, 252, 0.35) 0%, rgba(0, 231, 252, 0.25) 30%, transparent 70%);
            filter: blur(95px);
            z-index: 0;
            animation: bearPulse2 11s ease-in-out infinite;
            pointer-events: none;
        }
        
        .bear-flare-3 {
            position: absolute;
            top: 45%;
            right: 50%;
            width: 420px;
            height: 420px;
            background: radial-gradient(ellipse at center, rgba(0, 255, 77, 0.25) 0%, rgba(0, 231, 252, 0.2) 40%, transparent 70%);
            filter: blur(75px);
            z-index: 0;
            transform: translate(50%, -50%);
            animation: bearPulse3 13s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Padrão triangular animado para Bear Finance */
        .bear-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.3;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='700' height='700' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='bpt1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.25);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,231,252,0.2);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.15);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='bpt2' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.22);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,255,77,0.18);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.12);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 350,606 0,700' fill='url(%23bpt1)'/%3E%3Cpolygon points='350,0 700,0 350,606' fill='url(%23bpt2)'/%3E%3Cpolygon points='700,0 700,606 350,606' fill='url(%23bpt1)'/%3E%3Cpolygon points='175,303 525,303 350,0' fill='url(%23bpt2)' opacity='0.7'/%3E%3Cpolygon points='175,606 525,606 350,303' fill='url(%23bpt1)' opacity='0.7'/%3E%3Cpolygon points='87.5,151.5 262.5,151.5 175,0' fill='url(%23bpt2)' opacity='0.5'/%3E%3Cpolygon points='437.5,151.5 612.5,151.5 525,0' fill='url(%23bpt1)' opacity='0.5'/%3E%3C/svg%3E");
            background-size: 700px 700px;
            background-repeat: repeat;
            filter: blur(0.6px);
            animation: bearTriangleMove 110s linear infinite;
            transform-origin: center center;
        }
        
        .bear-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='500' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='bptAlt' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.18);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.12);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 250,433 0,500' fill='url(%23bptAlt)'/%3E%3Cpolygon points='250,0 500,0 250,433' fill='url(%23bptAlt)'/%3E%3Cpolygon points='500,0 500,433 250,433' fill='url(%23bptAlt)'/%3E%3Cpolygon points='125,216.5 375,216.5 250,0' fill='url(%23bptAlt)' opacity='0.6'/%3E%3C/svg%3E");
            background-size: 500px 500px;
            background-repeat: repeat;
            opacity: 0.6;
            animation: bearTriangleMoveReverse 90s linear infinite;
            filter: blur(1.2px);
        }
        
        .bear-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 60% 35%, rgba(0, 255, 77, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 25% 65%, rgba(0, 231, 252, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 255, 77, 0.1) 0%, transparent 70%);
            animation: bearGlow 10s ease-in-out infinite alternate;
            opacity: 0.8;
        }
        
        /* Partículas triangulares flutuantes para Bear */
        .bear-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .bear-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            opacity: 0.4;
        }
        
        .bear-triangle-1 {
            border-left: 42px solid transparent;
            border-right: 42px solid transparent;
            border-top: 0;
            border-bottom: 70px solid rgba(0, 255, 77, 0.5);
            top: 8%;
            right: 10%;
            animation: bearFloat1 14s ease-in-out infinite;
        }
        
        .bear-triangle-2 {
            border-left: 38px solid transparent;
            border-right: 38px solid transparent;
            border-top: 65px solid rgba(0, 231, 252, 0.45);
            border-bottom: 0;
            top: 3%;
            left: 7%;
            animation: bearFloat2 17s ease-in-out infinite;
        }
        
        .bear-triangle-3 {
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 0;
            border-bottom: 30px solid rgba(0, 255, 77, 0.4);
            bottom: 12%;
            right: 8%;
            animation: bearFloat3 16s ease-in-out infinite;
        }
        
        .bear-triangle-4 {
            border-left: 55px solid transparent;
            border-right: 55px solid transparent;
            border-top: 95px solid rgba(0, 231, 252, 0.4);
            border-bottom: 0;
            bottom: 8%;
            left: 10%;
            animation: bearFloat4 13s ease-in-out infinite;
        }
        
        .bear-triangle-5 {
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-top: 0;
            border-bottom: 24px solid rgba(0, 255, 77, 0.35);
            top: 55%;
            right: 4%;
            animation: bearFloat5 15s ease-in-out infinite;
        }
        
        .bear-triangle-6 {
            border-left: 48px solid transparent;
            border-right: 48px solid transparent;
            border-top: 80px solid rgba(0, 231, 252, 0.4);
            border-bottom: 0;
            top: 50%;
            left: 4%;
            animation: bearFloat6 18s ease-in-out infinite;
        }
        
        /* Animações para Bear Finance */
        @keyframes bearPulse1 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.25) translate(-35px, 25px);
                opacity: 1;
            }
        }
        
        @keyframes bearPulse2 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.2) translate(30px, -35px);
                opacity: 0.9;
            }
        }
        
        @keyframes bearPulse3 {
            0%, 100% {
                transform: translate(50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(50%, -50%) scale(1.35);
                opacity: 0.8;
            }
        }
        
        @keyframes bearTriangleMove {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(45px, -45px);
            }
            50% {
                transform: translate(90px, 0px);
            }
            75% {
                transform: translate(45px, 45px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes bearTriangleMoveReverse {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-40px, 40px);
            }
            50% {
                transform: translate(-80px, 0px);
            }
            75% {
                transform: translate(-40px, -40px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes bearGlow {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.15);
            }
        }
        
        @keyframes bearFloat1 {
            0%, 100% {
                transform: rotate(-90deg) translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: rotate(-90deg) translateY(-50px) translateX(-30px);
                opacity: 0.7;
            }
        }
        
        @keyframes bearFloat2 {
            0%, 100% {
                transform: rotate(180deg) translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: rotate(180deg) translateY(55px) translateX(40px);
                opacity: 0.7;
            }
        }
        
        @keyframes bearFloat3 {
            0%, 100% {
                transform: rotate(60deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(60deg) translateY(-60px) translateX(35px);
                opacity: 0.65;
            }
        }
        
        @keyframes bearFloat4 {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: translateY(45px) translateX(-40px);
                opacity: 0.7;
            }
        }
        
        @keyframes bearFloat5 {
            0%, 100% {
                transform: rotate(-45deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(-45deg) translateY(-40px) translateX(-25px);
                opacity: 0.6;
            }
        }
        
        @keyframes bearFloat6 {
            0%, 100% {
                transform: rotate(120deg) translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: rotate(120deg) translateY(50px) translateX(30px);
                opacity: 0.7;
            }
        }
        
        /* Ajustes para tema claro Bear */
        [data-theme="light"] .bear-flare-1,
        [data-theme="light"] .bear-flare-2,
        [data-theme="light"] .bear-flare-3 {
            opacity: 0.15;
            filter: blur(110px);
        }
        
        [data-theme="light"] .bear-pattern {
            opacity: 0.08;
        }
        
        [data-theme="light"] .bear-pattern::after {
            background: 
                radial-gradient(circle at 60% 35%, rgba(0, 0, 0, 0.025) 0%, transparent 50%),
                radial-gradient(circle at 25% 65%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
            opacity: 0.25;
        }
        
        .bear-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
        @media (max-width: 991px) {
            .bear-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }
        
        @media (max-width: 767px) {
            .bear-content {
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .bear-content {
                gap: 1.5rem;
            }
        }
        
        /* ============================================
           ABOUT SECTION - ANIMATED BACKGROUND
           ============================================ */
        .about-section {
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Flares animados para About Section */
        .about-flare-1 {
            position: absolute;
            top: 12%;
            left: 8%;
            width: 520px;
            height: 520px;
            background: radial-gradient(ellipse at center, rgba(0, 231, 252, 0.32) 0%, rgba(0, 231, 252, 0.22) 30%, transparent 70%);
            filter: blur(85px);
            z-index: 0;
            animation: aboutPulse1 9s ease-in-out infinite;
            pointer-events: none;
        }
        
        .about-flare-2 {
            position: absolute;
            bottom: 18%;
            right: 12%;
            width: 470px;
            height: 470px;
            background: radial-gradient(ellipse at center, rgba(0, 255, 77, 0.32) 0%, rgba(0, 255, 77, 0.22) 30%, transparent 70%);
            filter: blur(95px);
            z-index: 0;
            animation: aboutPulse2 11s ease-in-out infinite;
            pointer-events: none;
        }
        
        .about-flare-3 {
            position: absolute;
            top: 48%;
            left: 52%;
            width: 430px;
            height: 430px;
            background: radial-gradient(ellipse at center, rgba(0, 231, 252, 0.22) 0%, rgba(0, 255, 77, 0.17) 40%, transparent 70%);
            filter: blur(75px);
            z-index: 0;
            transform: translate(-50%, -50%);
            animation: aboutPulse3 13s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Padrão triangular animado para About Section */
        .about-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.25;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='apt1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.2);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,255,77,0.15);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,231,252,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3ClinearGradient id='apt2' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,255,77,0.18);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(0,231,252,0.12);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 300,520 0,600' fill='url(%23apt1)'/%3E%3Cpolygon points='300,0 600,0 300,520' fill='url(%23apt2)'/%3E%3Cpolygon points='600,0 600,520 300,520' fill='url(%23apt1)'/%3E%3Cpolygon points='0,600 300,80 0,80' fill='url(%23apt2)'/%3E%3Cpolygon points='300,600 600,600 300,80' fill='url(%23apt1)'/%3E%3C/svg%3E");
            background-size: 600px 600px;
            background-repeat: repeat;
            filter: blur(0.5px);
            animation: aboutTriangleMove 105s linear infinite;
            transform-origin: center center;
        }
        
        .about-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='aptAlt' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(0,231,252,0.15);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(0,255,77,0.1);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,0 200,346 0,400' fill='url(%23aptAlt)'/%3E%3Cpolygon points='200,0 400,0 200,346' fill='url(%23aptAlt)'/%3E%3Cpolygon points='400,0 400,346 200,346' fill='url(%23aptAlt)'/%3E%3C/svg%3E");
            background-size: 400px 400px;
            background-repeat: repeat;
            opacity: 0.5;
            animation: aboutTriangleMoveReverse 85s linear infinite;
            filter: blur(1px);
        }
        
        .about-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 35% 45%, rgba(0, 231, 252, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 65% 55%, rgba(0, 255, 77, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 231, 252, 0.08) 0%, transparent 70%);
            animation: aboutGlow 10s ease-in-out infinite alternate;
            opacity: 0.7;
        }
        
        /* Partículas triangulares flutuantes */
        .about-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .about-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            opacity: 0.4;
        }
        
        .about-triangle-1 {
            border-left: 38px solid transparent;
            border-right: 38px solid transparent;
            border-top: 0;
            border-bottom: 65px solid rgba(0, 231, 252, 0.5);
            top: 8%;
            left: 7%;
            animation: aboutFloat1 13s ease-in-out infinite;
        }
        
        .about-triangle-2 {
            border-left: 42px solid transparent;
            border-right: 42px solid transparent;
            border-top: 72px solid rgba(0, 255, 77, 0.45);
            border-bottom: 0;
            top: 6%;
            right: 10%;
            animation: aboutFloat2 16s ease-in-out infinite;
        }
        
        .about-triangle-3 {
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 0;
            border-bottom: 28px solid rgba(0, 231, 252, 0.4);
            bottom: 18%;
            left: 14%;
            animation: aboutFloat3 19s ease-in-out infinite;
        }
        
        .about-triangle-4 {
            border-left: 52px solid transparent;
            border-right: 52px solid transparent;
            border-top: 88px solid rgba(0, 255, 77, 0.4);
            border-bottom: 0;
            bottom: 12%;
            right: 17%;
            animation: aboutFloat4 15s ease-in-out infinite;
        }
        
        .about-triangle-5 {
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-top: 0;
            border-bottom: 22px solid rgba(0, 231, 252, 0.35);
            top: 52%;
            left: 4%;
            animation: aboutFloat5 17s ease-in-out infinite;
        }
        
        .about-triangle-6 {
            border-left: 48px solid transparent;
            border-right: 48px solid transparent;
            border-top: 78px solid rgba(0, 255, 77, 0.4);
            border-bottom: 0;
            top: 48%;
            right: 6%;
            animation: aboutFloat6 14s ease-in-out infinite;
        }
        
        /* Animações para About Section */
        @keyframes aboutPulse1 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.22) translate(35px, -25px);
                opacity: 0.9;
            }
        }
        
        @keyframes aboutPulse2 {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.18) translate(-30px, 35px);
                opacity: 0.8;
            }
        }
        
        @keyframes aboutPulse3 {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.4;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.32);
                opacity: 0.7;
            }
        }
        
        @keyframes aboutTriangleMove {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-45px, 45px);
            }
            50% {
                transform: translate(-85px, 0px);
            }
            75% {
                transform: translate(-45px, -45px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes aboutTriangleMoveReverse {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(50px, -50px);
            }
            50% {
                transform: translate(100px, 0px);
            }
            75% {
                transform: translate(50px, 50px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        @keyframes aboutGlow {
            0% {
                opacity: 0.5;
            }
            100% {
                opacity: 0.8;
            }
        }
        
        @keyframes aboutFloat1 {
            0%, 100% {
                transform: rotate(75deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(75deg) translateY(-45px) translateX(30px);
                opacity: 0.6;
            }
        }
        
        @keyframes aboutFloat2 {
            0%, 100% {
                transform: rotate(165deg) translateY(0) translateX(0);
                opacity: 0.35;
            }
            50% {
                transform: rotate(165deg) translateY(50px) translateX(-35px);
                opacity: 0.65;
            }
        }
        
        @keyframes aboutFloat3 {
            0%, 100% {
                transform: rotate(50deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(50deg) translateY(55px) translateX(40px);
                opacity: 0.6;
            }
        }
        
        @keyframes aboutFloat4 {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-60px) translateX(-45px);
                opacity: 0.6;
            }
        }
        
        @keyframes aboutFloat5 {
            0%, 100% {
                transform: rotate(-25deg) translateY(0) translateX(0);
                opacity: 0.25;
            }
            50% {
                transform: rotate(-25deg) translateY(-40px) translateX(35px);
                opacity: 0.55;
            }
        }
        
        @keyframes aboutFloat6 {
            0%, 100% {
                transform: rotate(140deg) translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: rotate(140deg) translateY(45px) translateX(-30px);
                opacity: 0.6;
            }
        }
        
        /* Ajustes para tema claro About */
        [data-theme="light"] .about-flare-1,
        [data-theme="light"] .about-flare-2,
        [data-theme="light"] .about-flare-3 {
            opacity: 0.18;
            filter: blur(105px);
        }
        
        [data-theme="light"] .about-pattern {
            opacity: 0.1;
        }
        
        [data-theme="light"] .about-pattern::after {
            background: 
                radial-gradient(circle at 35% 45%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 65% 55%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
            opacity: 0.3;
        }
        
        .about-content {
            position: relative;
            z-index: 1;
        }
        
        .bear-image-wrapper {
            flex: 0 0 auto;
            position: relative;
            display: inline-block;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .bear-image-wrapper:hover {
            transform: translateY(-8px) scale(1.02);
        }
        
        .bear-image-wrapper img {
            width: 100%;
            height: auto;
            max-width: 400px;
            display: block;
            border-radius: 24px;
            object-fit: cover;
            position: relative;
            z-index: 1;
            filter: 
                drop-shadow(0 0 4px rgba(0, 231, 252, 0.25))
                drop-shadow(0 0 8px rgba(0, 255, 77, 0.2))
                drop-shadow(0 0 12px rgba(0, 231, 252, 0.15));
            transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .bear-image-wrapper:hover img {
            filter: 
                drop-shadow(0 0 6px rgba(0, 231, 252, 0.4))
                drop-shadow(0 0 12px rgba(0, 255, 77, 0.3))
                drop-shadow(0 0 18px rgba(0, 231, 252, 0.25))
                drop-shadow(0 0 24px rgba(0, 255, 77, 0.2));
        }
        
        .bear-text {
            flex: 1 1 auto;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .bear-content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1rem;
            width: 100%;
        }
        
        .bear-description {
            width: 100%;
            max-width: 600px;
            text-align: left;
        }
        
        .bear-description p {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            line-height: 1.7;
            color: var(--text-secondary);
            margin: 0 0 1.25rem 0;
        }
        
        .bear-description p:last-child {
            margin-bottom: 0;
        }
        
        .bear-highlight {
            font-weight: 600 !important;
            font-size: clamp(1.1rem, 1.8vw, 1.3rem) !important;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 1rem !important;
        }
        
        [data-theme="light"] .bear-description p {
            color: #4a4a4a;
        }
        
        [data-theme="light"] .bear-highlight {
            color: #1a1a1a;
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }
        
        .bear-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 0.5rem 0;
            letter-spacing: 0.05em;
            line-height: 1.1;
            text-align: center;
        }
        
        .bear-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 500;
            color: var(--text-secondary);
            margin: 0;
            letter-spacing: 0.1em;
            text-transform: lowercase;
            opacity: 0.8;
            text-align: center;
        }
        
        .btn-bear {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: var(--text-primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            white-space: nowrap;
            margin-top: 1rem;
        }
        
        .btn-bear span {
            position: relative;
            z-index: 2;
        }
        
        .btn-bear:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 231, 252, 0.5);
            box-shadow: 0 8px 20px rgba(0, 231, 252, 0.2);
            background: rgba(17, 17, 17, 0.6);
        }
        
        [data-theme="light"] .btn-bear {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #1a1a1a;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2);
            font-weight: 700;
        }
        
        [data-theme="light"] .btn-bear:hover {
            background: rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.7);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            color: #1a1a1a;
        }
        
        [data-theme="light"] .bear-image-wrapper img {
            filter: 
                drop-shadow(0 0 4px rgba(0, 231, 252, 0.3))
                drop-shadow(0 0 8px rgba(0, 255, 77, 0.25))
                drop-shadow(0 0 12px rgba(0, 231, 252, 0.2));
        }
        
        [data-theme="light"] .bear-image-wrapper:hover img {
            filter: 
                drop-shadow(0 0 6px rgba(0, 231, 252, 0.45))
                drop-shadow(0 0 12px rgba(0, 255, 77, 0.35))
                drop-shadow(0 0 18px rgba(0, 231, 252, 0.3))
                drop-shadow(0 0 24px rgba(0, 255, 77, 0.25));
        }
        
        [data-theme="light"] .bear-title {
            color: #1a1a1a;
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }
        
        [data-theme="light"] .bear-subtitle {
            color: #4a4a4a;
        }
        
        /* Responsividade para Bear Finance */
        @media (max-width: 991px) {
            .bear-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .bear-image-wrapper {
            width: 100%;
                max-width: 500px;
            }
            
            .bear-image-wrapper img {
            max-width: 100%;
            }
            
            .bear-text {
                width: 100%;
            }
            
            .bear-content-wrapper {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }
            
            .bear-description {
                text-align: center;
                max-width: 100%;
            }
            
            .btn-bear {
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 767px) {
            .bear-section {
                padding: 3rem 0;
            }
            
            .bear-image-wrapper img {
                max-width: 100%;
            }
            
            .btn-bear {
                padding: 0.8rem 1.75rem;
                font-size: 0.9rem;
            }
        }
        
        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: var(--spacing-xl);
        }
        
        /* Botão Saiba Mais SEM gradiente */
        .btn-feature {
            display: inline-block;
            padding: 0.9rem 2rem;
            margin-top: 1.5rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: var(--text-primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .btn-feature span {
            position: relative;
            z-index: 2;
        }
        
        .btn-feature:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 231, 252, 0.5);
            box-shadow: 0 8px 20px rgba(0, 231, 252, 0.2);
            background: rgba(17, 17, 17, 0.6);
        }
        
        [data-theme="light"] .btn-feature {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #1a1a1a;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2);
            font-weight: 700;
        }
        
        [data-theme="light"] .btn-feature:hover {
            background: rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.7);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            color: #1a1a1a;
        }
        @keyframes cardSlideIn {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .feature-card {
            background: rgba(17, 17, 17, 0.25);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            padding: 0;
            border-radius: 24px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 10px rgba(0, 231, 252, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(60px) scale(0.9);
            animation: featureCardPulse 4s ease-in-out infinite;
        }
        
        .feature-card:nth-child(even) {
            transform: translateY(60px) scale(0.9);
        }
        
        .feature-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: featureCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                       featureCardPulse 4s ease-in-out infinite 0.8s;
        }
        
        .feature-card.visible:nth-child(even) {
            transform: translateY(0) scale(1);
        }
        
        @keyframes featureCardEntrance {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.9) rotateX(10deg);
            }
            60% {
                transform: translateY(-10px) scale(1.05) rotateX(-2deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0deg);
            }
        }
        
        @keyframes featureCardPulse {
            0%, 100% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 10px rgba(0, 231, 252, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            50% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 15px rgba(0, 231, 252, 0.3),
                    0 0 25px rgba(0, 255, 77, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        /* Efeito glow neon */
        .feature-card {
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 10px rgba(0, 231, 252, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 231, 252, 0.4),
                0 0 40px rgba(0, 255, 77, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        [data-theme="light"] .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(14, 165, 233, 0.15);
            box-shadow: 
                0 8px 32px rgba(15, 23, 42, 0.08),
                0 2px 8px rgba(15, 23, 42, 0.04),
                0 0 0 1px rgba(255, 255, 255, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        [data-theme="light"] .feature-card::before {
            opacity: 1 !important;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(34, 197, 94, 0.18) 100%) !important;
            z-index: 0;
        }
        
        [data-theme="light"] .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 24px 72px rgba(14, 165, 233, 0.15),
                0 12px 32px rgba(15, 23, 42, 0.1),
                0 0 0 1px rgba(14, 165, 233, 0.25),
                0 0 20px rgba(14, 165, 233, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
            border-color: rgba(14, 165, 233, 0.3);
        }
        
        [data-theme="light"] .feature-card:hover::before {
            opacity: 1 !important;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.25) 0%, rgba(0, 255, 77, 0.2) 100%) !important;
        }
        
        @keyframes neonGlowIcon {
            0%, 100% {
                box-shadow: 
                    0 0 10px rgba(0, 231, 252, 0.3),
                    0 0 20px rgba(0, 231, 252, 0.2),
                    0 0 30px rgba(0, 255, 77, 0.15),
                    inset 0 0 10px rgba(0, 231, 252, 0.1);
            }
            50% {
                box-shadow: 
                    0 0 15px rgba(0, 231, 252, 0.5),
                    0 0 25px rgba(0, 231, 252, 0.3),
                    0 0 40px rgba(0, 255, 77, 0.25),
                    inset 0 0 15px rgba(0, 231, 252, 0.15);
            }
        }
        
        .feature-icon {
            width: 100%;
            height: 250px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 24px 24px 0 0;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            opacity: 1;
            visibility: visible;
        }
        
        /* Blur adicional na imagem do feature icon */
        .feature-icon img {
            filter: brightness(0.85) contrast(1.1) blur(0.5px);
        }
        
        .feature-card:hover .feature-icon img {
            filter: brightness(0.95) contrast(1.2) blur(0px);
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 231, 252, 0.5) 50%, 
                transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .feature-card:hover .feature-icon::after {
            opacity: 1;
        }
        
        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
            display: block;
            opacity: 1;
            visibility: visible;
        }
        
        .feature-card:hover .feature-icon img {
            transform: scale(1.1) rotate(2deg);
            filter: brightness(0.95) contrast(1.2) blur(0px);
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .feature-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px 24px 0 0;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: 1;
            pointer-events: none;
            opacity: 0.5;
        }
        
        .feature-card:hover .feature-icon::before {
            opacity: 0.8;
        }
        
        [data-theme="light"] .feature-icon {
            background: rgba(0, 0, 0, 0.02);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        [data-theme="light"] .feature-icon img {
            filter: brightness(1.05) contrast(1.1) saturate(1.1);
        }
        
        [data-theme="light"] .feature-card:hover .feature-icon img {
            filter: brightness(1.1) contrast(1.15) saturate(1.15);
        }
        
        .feature-card-content {
            padding: 2rem 2.5rem 2.5rem;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        
        .feature-card-content .btn-feature {
            margin-top: 1.5rem;
        }
        
        [data-theme="light"] .feature-card::before {
            opacity: 0.9;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* ============================================
           SOBRE SECTION - CARD SYSTEM
           ============================================ */
        .about-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 991px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Cards Container */
        .about-cards-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            flex-shrink: 0;
        }
        
        @media (max-width: 991px) {
            .about-cards-container {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 767px) {
            .about-cards-container {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Card estilo cartão de crédito vertical */
        .about-card {
            width: 320px;
            height: 600px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        }
        
        @media (max-width: 991px) {
            .about-card {
                width: 100%;
                max-width: 320px;
                height: 500px;
            }
        }
        
        @media (max-width: 767px) {
            .about-card {
                max-width: 300px;
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .about-card {
                max-width: 100%;
                width: 100%;
                height: 350px;
            }
        }
        
        .about-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 231, 252, 0.3),
                0 12px 40px rgba(0, 255, 77, 0.2),
                0 0 0 1px rgba(0, 231, 252, 0.3) inset;
            border-color: rgba(0, 231, 252, 0.4);
        }
        
        /* Foto do card */
        .about-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 0;
        }
        
        .about-card:hover .about-card-image {
            transform: scale(1.05);
        }
        
        /* Informações que aparecem no hover - estilo cartão de crédito */
        .about-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.75rem 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
            backdrop-filter: blur(10px);
        }
        
        .about-card:hover .about-card-info {
            transform: translateY(0);
        }
        
        .about-card-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(0, 231, 252, 0.5));
        }
        
        .about-card-role {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        }
        
        .about-card-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .about-card:hover .about-card-description {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Container lateral com scroll */
        .about-sidebar {
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            height: 600px;
            overflow-y: auto;
            overflow-x: hidden;
        }
        
        @media (max-width: 991px) {
            .about-sidebar {
                height: auto;
                max-height: 500px;
            }
        }
        
        @media (max-width: 767px) {
            .about-sidebar {
                max-height: 400px;
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-sidebar {
                max-height: 400px;
                padding: 1.25rem;
            }
        }
        
        .about-sidebar::-webkit-scrollbar {
            width: 8px;
        }
        
        .about-sidebar::-webkit-scrollbar-track {
            background: rgba(17, 17, 17, 0.3);
            border-radius: 10px;
        }
        
        .about-sidebar::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 10px;
        }
        
        .about-sidebar::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-primary);
            opacity: 0.8;
        }
        
        .about-sidebar-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .about-sidebar-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .about-sidebar-text {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .about-sidebar-section {
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .about-sidebar-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .about-sidebar-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid transparent;
            border-image: var(--gradient-primary) 1;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(17, 17, 17, 0.3);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 12px;
            border: 1px solid rgba(0, 231, 252, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        
        .stat-item .stat-number,
        .stat-item .stat-label {
            position: relative;
            z-index: 2;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 231, 252, 0.5);
            box-shadow: 0 8px 24px rgba(0, 231, 252, 0.2);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.4rem;
            line-height: 1.2;
            word-wrap: break-word;
        }
        
        /* Estilo especial para texto longo como "resolução" */
        .stat-item .stat-number:contains("resolução"),
        .stat-item .stat-number[style*="resolução"] {
            font-size: 1.8rem;
            line-height: 1.3;
        }
        
        /* Aplicar estilo quando o texto for "resolução" */
        .stat-item:nth-child(2) .stat-number {
            font-size: 1.8rem;
            line-height: 1.3;
            padding: 0 0.5rem;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Tema Light para About Section */
        [data-theme="light"] .about-card {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(14, 165, 233, 0.2);
            box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
        }
        
        [data-theme="light"] .about-card::before {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.8) 0%, rgba(34, 197, 94, 0.8) 100%);
        }
        
        [data-theme="light"] .about-card:hover {
            box-shadow: 0 16px 48px rgba(14, 165, 233, 0.2), 0 8px 24px rgba(34, 197, 94, 0.15);
        }
        
        [data-theme="light"] .about-card-info {
            background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 50%, transparent 100%);
        }
        
        [data-theme="light"] .about-card-name {
            background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        [data-theme="light"] .about-sidebar {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(14, 165, 233, 0.2);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
        }
        
        [data-theme="light"] .about-sidebar-subtitle {
            color: #1a1a1a;
        }
        
        [data-theme="light"] .about-sidebar-text {
            color: #4a4a4a;
        }
        
        [data-theme="light"] .stat-item {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(14, 165, 233, 0.2);
        }
        
        /* ============================================
           NOSSOS RESULTADOS SECTION
           ============================================ */
        .results-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        
        .results-grid::-webkit-scrollbar {
            height: 6px;
        }
        
        .results-grid::-webkit-scrollbar-track {
            background: rgba(17, 17, 17, 0.2);
            border-radius: 10px;
        }
        
        .results-grid::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 10px;
        }
        
        [data-theme="light"] .results-grid::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        
        [data-theme="light"] .results-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.6) 0%, rgba(0, 255, 77, 0.6) 100%);
            border-radius: 10px;
        }
        
        [data-theme="light"] .results-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.8) 0%, rgba(0, 255, 77, 0.8) 100%);
        }
        
        .result-card {
            background: rgba(17, 17, 17, 0.25);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            padding: 2.5rem;
            border-radius: 24px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 10px rgba(0, 231, 252, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            flex: 1;
            min-width: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(60px) scale(0.9);
            animation: resultCardPulse 4s ease-in-out infinite;
        }
        
        .result-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: resultCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                       resultCardPulse 4s ease-in-out infinite 0.8s;
        }
        
        @keyframes resultCardEntrance {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.9) rotateX(10deg);
            }
            60% {
                transform: translateY(-10px) scale(1.05) rotateX(-2deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0deg);
            }
        }
        
        @keyframes resultCardPulse {
            0%, 100% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 10px rgba(0, 231, 252, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            50% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 15px rgba(0, 231, 252, 0.3),
                    0 0 25px rgba(0, 255, 77, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .result-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
        }
        
        .result-card:hover::before {
            opacity: 1;
        }
        
        .result-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 231, 252, 0.4),
                0 0 40px rgba(0, 255, 77, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .result-icon {
            width: 140px;
            height: 140px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .result-icon svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 10px rgba(0, 231, 252, 0.3));
            transition: all 0.3s ease;
        }
        
        .result-card:hover .result-icon svg {
            filter: drop-shadow(0 0 15px rgba(0, 231, 252, 0.5));
            transform: scale(1.05);
        }
        
        .result-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes resultNumberGradient {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .result-card:hover .result-number {
            transform: scale(1.1);
            animation: resultNumberGradient 3s ease infinite;
        }
        
        .result-label {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
        }
        
        [data-theme="light"] .result-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 
                0 4px 20px rgba(15, 23, 42, 0.04),
                0 1px 3px rgba(15, 23, 42, 0.02),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        
        [data-theme="light"] .result-card::before {
            opacity: 0.6;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.15) 0%, rgba(0, 255, 77, 0.12) 100%);
        }
        
        [data-theme="light"] .result-card:hover {
            border-color: rgba(0, 231, 252, 0.2);
            box-shadow: 
                0 20px 60px rgba(0, 231, 252, 0.08),
                0 8px 24px rgba(15, 23, 42, 0.06),
                0 0 0 1px rgba(0, 231, 252, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
            transform: translateY(-8px) scale(1.02);
        }
        
        [data-theme="light"] .result-card:hover::before {
            opacity: 1;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.25) 0%, rgba(0, 255, 77, 0.2) 100%);
        }
        
        /* Manter números com gradiente no tema claro */
        [data-theme="light"] .result-number {
            background: linear-gradient(135deg, rgba(0, 231, 252, 1) 0%, rgba(0, 255, 77, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 4px rgba(0, 231, 252, 0.2));
        }
        
        /* Labels em preto sólido para melhor legibilidade */
        [data-theme="light"] .result-label {
            color: #1a1a1a;
            font-weight: 600;
        }
        
        /* Manter ícones SVG com gradiente visível */
        [data-theme="light"] .result-icon svg {
            filter: drop-shadow(0 4px 8px rgba(0, 231, 252, 0.15));
        }
        
        /* ============================================
           CONTATO SECTION
           ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        @media (max-width: 991px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.75rem;
            align-items: flex-start;
            padding: 2rem;
            background: rgba(17, 17, 17, 0.3);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        @media (max-width: 767px) {
            .contact-item {
                padding: 1.5rem;
                gap: 1.25rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-item {
                padding: 1.25rem;
                gap: 1rem;
                flex-direction: column;
                text-align: center;
            }
        }
        
        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 231, 252, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .contact-item:hover::before {
            left: 100%;
        }
        
        .contact-item:hover {
            transform: translateY(-5px) translateX(5px);
            border-color: rgba(0, 231, 252, 0.4);
            box-shadow: 
                0 12px 40px rgba(0, 231, 252, 0.2),
                0 8px 24px rgba(0, 255, 77, 0.15),
                0 0 0 1px rgba(0, 231, 252, 0.2);
            background: rgba(17, 17, 17, 0.5);
        }
        
        .contact-icon,
        .contact-details {
            position: relative;
            z-index: 2;
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.15) 0%, rgba(0, 255, 77, 0.12) 100%);
            border-radius: 18px;
            border: 2px solid transparent;
            flex-shrink: 0;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        @media (max-width: 767px) {
            .contact-icon {
                width: 60px;
                height: 60px;
            }
            
            .contact-icon svg {
                width: 28px;
                height: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-icon {
                width: 55px;
                height: 55px;
                margin: 0 auto;
            }
            
            .contact-icon svg {
                width: 26px;
                height: 26px;
            }
        }
        
        /* Borda gradiente animada */
        .contact-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: var(--gradient-primary);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
            transition: opacity 0.5s ease;
        }
        
        /* Ícone SVG moderno */
        .contact-icon svg {
            width: 36px;
            height: 36px;
            fill: currentColor;
            stroke: none;
            color: rgba(0, 231, 252, 0.9);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 2px 4px rgba(0, 231, 252, 0.2));
        }
        
        /* Estilo especial para WhatsApp */
        .contact-icon-whatsapp {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(0, 231, 252, 0.15) 100%);
        }
        
        .contact-icon-whatsapp svg {
            color: rgba(37, 211, 102, 0.95);
            filter: drop-shadow(0 2px 6px rgba(37, 211, 102, 0.3));
        }
        
        .contact-item:hover .contact-icon-whatsapp {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.3) 0%, rgba(0, 231, 252, 0.25) 100%);
            box-shadow: 
                0 8px 24px rgba(37, 211, 102, 0.4),
                0 4px 12px rgba(0, 231, 252, 0.2);
        }
        
        .contact-item:hover .contact-icon-whatsapp svg {
            color: rgba(37, 211, 102, 1);
            filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.5));
            transform: scale(1.15);
        }
        
        .contact-icon-whatsapp::before {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.8) 0%, rgba(0, 231, 252, 0.7) 100%);
        }
        
        .contact-item:hover .contact-icon-whatsapp::before {
            background: linear-gradient(135deg, rgba(37, 211, 102, 1) 0%, rgba(0, 231, 252, 1) 100%);
        }
        
        /* Fallback para Font Awesome quando necessário */
        .contact-icon i {
            font-size: 1.75rem;
            color: rgba(0, 231, 252, 0.9);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.25) 0%, rgba(0, 255, 77, 0.2) 100%);
            box-shadow: 
                0 8px 24px rgba(0, 231, 252, 0.3),
                0 4px 12px rgba(0, 255, 77, 0.2);
        }
        
        .contact-item:hover .contact-icon::before {
            opacity: 1;
            background: linear-gradient(135deg, rgba(0, 231, 252, 1) 0%, rgba(0, 255, 77, 1) 100%);
        }
        
        .contact-item:hover .contact-icon svg,
        .contact-item:hover .contact-icon i {
            color: rgba(0, 231, 252, 1);
            transform: scale(1.1);
        }
        
        .contact-details h4 {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-details h4 {
            transform: translateX(3px);
        }
        
        @media (max-width: 767px) {
            .contact-details h4 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-details h4 {
                font-size: 1rem;
            }
        }
        
        .contact-details p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .contact-item:hover .contact-details p {
            color: var(--text-primary);
        }
        
        @media (max-width: 767px) {
            .contact-details p {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-details p {
                font-size: 0.85rem;
            }
        }
        
        .contact-form-container {
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 12px 48px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 231, 252, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
            opacity: 0.6;
        }
        
        @media (max-width: 767px) {
            .contact-form-container {
                padding: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-form-container {
                padding: 1.5rem;
            }
        }
        
        
        .contact-form {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            position: absolute;
            left: 1.5rem;
            top: 1rem;
            color: var(--text-tertiary);
            font-size: 1rem;
            font-weight: 500;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            background: transparent;
            padding: 0 0.25rem;
        }
        
        .form-group input:focus ~ label,
        .form-group input:not(:placeholder-shown) ~ label,
        .form-group textarea:focus ~ label,
        .form-group textarea:not(:placeholder-shown) ~ label {
            top: -0.5rem;
            left: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(0, 231, 252, 1);
            background: var(--bg-secondary);
            padding: 0 0.5rem;
        }
        
        [data-theme="light"] .form-group input:focus ~ label,
        [data-theme="light"] .form-group input:not(:placeholder-shown) ~ label,
        [data-theme="light"] .form-group textarea:focus ~ label,
        [data-theme="light"] .form-group textarea:not(:placeholder-shown) ~ label {
            background: rgba(255, 255, 255, 1);
            color: rgba(0, 100, 150, 1);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(0, 231, 252, 0.2);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .form-group input:focus::placeholder,
        .form-group textarea:focus::placeholder {
            opacity: 0.6;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(0, 231, 252, 0.6);
            box-shadow: 
                0 0 0 3px rgba(0, 231, 252, 0.1),
                0 0 15px rgba(0, 231, 252, 0.3);
            transform: translateY(-2px);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-tertiary);
        }
        
        /* Estados de validação */
        .form-group input:valid:not(:placeholder-shown),
        .form-group textarea:valid:not(:placeholder-shown) {
            border-color: rgba(0, 255, 77, 0.5);
        }
        
        .form-group input:invalid:not(:placeholder-shown):not(:focus),
        .form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
            border-color: rgba(255, 77, 77, 0.5);
        }
        
        .form-group .error-message {
            display: none;
            color: rgba(255, 77, 77, 1);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            padding-left: 1.5rem;
            animation: slideDown 0.3s ease;
        }
        
        .form-group.error .error-message {
                display: block;
            }
            
        .form-group.error input,
        .form-group.error textarea {
            border-color: rgba(255, 77, 77, 0.6);
            box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
        }
        
        .form-group.success input,
        .form-group.success textarea {
            border-color: rgba(0, 255, 77, 0.6);
            box-shadow: 0 0 0 3px rgba(0, 255, 77, 0.1);
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Indicador de campo obrigatório */
        .form-group.required label::after {
            content: ' *';
            color: rgba(255, 77, 77, 0.8);
        }
        
        /* Ícone de validação */
        .form-group::after {
            content: '';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .form-group.success::after {
            content: '✓';
            color: rgba(0, 255, 77, 1);
            opacity: 1;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .form-group.error::after {
            content: '✕';
            color: rgba(255, 77, 77, 1);
            opacity: 1;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .form-group textarea ~ .form-group::after {
            top: 1.5rem;
            transform: none;
        }
        
        .form-group input:invalid:not(:placeholder-shown),
        .form-group textarea:invalid:not(:placeholder-shown) {
            border-color: rgba(255, 77, 77, 0.5);
        }
        
        .form-group input:valid:not(:placeholder-shown),
        .form-group textarea:valid:not(:placeholder-shown) {
            border-color: rgba(0, 255, 77, 0.5);
        }
        
        [data-theme="light"] .contact-item,
        [data-theme="light"] .contact-form-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 
                0 4px 20px rgba(15, 23, 42, 0.04),
                0 1px 3px rgba(15, 23, 42, 0.02),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        
        [data-theme="light"] .contact-item:hover {
            border-color: rgba(0, 231, 252, 0.2);
            box-shadow: 
                0 8px 30px rgba(0, 231, 252, 0.08),
                0 4px 12px rgba(15, 23, 42, 0.04),
                0 0 0 1px rgba(0, 231, 252, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
        }
        
        [data-theme="light"] .contact-icon {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(34, 197, 94, 0.1) 100%);
        }
        
        [data-theme="light"] .contact-icon::before {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.8) 0%, rgba(34, 197, 94, 0.7) 100%);
        }
        
        [data-theme="light"] .contact-icon svg,
        [data-theme="light"] .contact-icon i {
            color: rgba(14, 165, 233, 0.9);
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(34, 197, 94, 0.15) 100%);
            box-shadow: 
                0 8px 24px rgba(14, 165, 233, 0.2),
                0 4px 12px rgba(34, 197, 94, 0.15);
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon::before {
            background: linear-gradient(135deg, rgba(14, 165, 233, 1) 0%, rgba(34, 197, 94, 1) 100%);
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon svg,
        [data-theme="light"] .contact-item:hover .contact-icon i {
            color: rgba(14, 165, 233, 1);
        }
        
        /* WhatsApp no tema light */
        [data-theme="light"] .contact-icon-whatsapp {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(14, 165, 233, 0.12) 100%);
        }
        
        [data-theme="light"] .contact-icon-whatsapp svg {
            color: rgba(37, 211, 102, 0.9);
            filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.2));
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon-whatsapp {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.25) 0%, rgba(14, 165, 233, 0.2) 100%);
            box-shadow: 
                0 8px 24px rgba(37, 211, 102, 0.3),
                0 4px 12px rgba(14, 165, 233, 0.2);
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon-whatsapp svg {
            color: rgba(37, 211, 102, 1);
            filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.4));
        }
        
        [data-theme="light"] .contact-icon-whatsapp::before {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.7) 0%, rgba(14, 165, 233, 0.6) 100%);
        }
        
        [data-theme="light"] .contact-item:hover .contact-icon-whatsapp::before {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.9) 0%, rgba(14, 165, 233, 0.8) 100%);
        }
        
        [data-theme="light"] .contact-details h4 {
            background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        [data-theme="light"] .form-group input,
        [data-theme="light"] .form-group textarea {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 231, 252, 0.2);
            color: #1a1a1a;
            box-shadow: 
                0 2px 10px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 1);
        }
        
        [data-theme="light"] .form-group input:focus,
        [data-theme="light"] .form-group textarea:focus {
            border-color: rgba(0, 231, 252, 0.5);
            box-shadow: 
                0 4px 20px rgba(0, 231, 252, 0.15),
                0 0 0 3px rgba(0, 231, 252, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: rgba(255, 255, 255, 1);
        }
        
        [data-theme="light"] .form-group input::placeholder,
        [data-theme="light"] .form-group textarea::placeholder {
            color: #9ca3af;
        }
        
        /* ============================================
           HOW IT WORKS SECTION
           ============================================ */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: var(--spacing-xl);
            position: relative;
        }
        
        .step-card {
            text-align: center;
            position: relative;
            padding: 2rem;
            background: rgba(17, 17, 17, 0.25);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border-radius: 24px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 10px rgba(0, 231, 252, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            opacity: 0;
            transform: translateY(60px) scale(0.9);
            animation: stepCardPulse 4s ease-in-out infinite;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .step-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: stepCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                       stepCardPulse 4s ease-in-out infinite 0.8s;
        }
        
        @keyframes stepCardEntrance {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.9) rotateX(10deg);
            }
            60% {
                transform: translateY(-10px) scale(1.05) rotateX(-2deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0deg);
            }
        }
        
        @keyframes stepCardPulse {
            0%, 100% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 10px rgba(0, 231, 252, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            50% {
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 15px rgba(0, 231, 252, 0.3),
                    0 0 25px rgba(0, 255, 77, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }
        
        /* Borda neon com gradiente usando pseudo-elemento */
        .step-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
        }
        
        .step-card:hover::before {
            opacity: 1;
        }
        
        .step-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 231, 252, 0.1),
                rgba(0, 255, 77, 0.1),
                transparent
            );
            transition: left 0.6s ease;
            pointer-events: none;
            border-radius: 24px;
        }
        
        .step-card:hover::after {
            left: 100%;
        }
        
        .step-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 231, 252, 0.4),
                0 0 40px rgba(0, 255, 77, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        [data-theme="light"] .step-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 
                0 4px 20px rgba(15, 23, 42, 0.04),
                0 1px 3px rgba(15, 23, 42, 0.02),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        [data-theme="light"] .step-card::before {
            opacity: 0.8 !important;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.15) 0%, rgba(0, 255, 77, 0.12) 100%) !important;
            z-index: 0;
        }
        
        [data-theme="light"] .step-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 231, 252, 0.08),
                0 8px 24px rgba(15, 23, 42, 0.06),
                0 0 0 1px rgba(0, 231, 252, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
            border-color: rgba(0, 231, 252, 0.2);
        }
        
        [data-theme="light"] .step-card:hover::before {
            opacity: 1 !important;
            background: linear-gradient(135deg, rgba(0, 231, 252, 0.25) 0%, rgba(0, 255, 77, 0.2) 100%) !important;
        }
        
        
        .step-card > * {
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border-radius: 50%;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 231, 252, 0.2);
            position: relative;
            z-index: 1;
            background-image: var(--gradient-primary);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: stepNumberGradient 4s ease infinite;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes stepNumberGradient {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .step-card:hover .step-number {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 231, 252, 0.3);
        }
        
        /* Borda com gradiente usando pseudo-elemento */
        .step-number::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 3px;
            background: var(--gradient-primary);
            background-size: 200% 200%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }
        
        .step-card:hover .step-number::before {
            opacity: 1;
        }
        
        .step-number::after {
            display: none;
        }
        
        .step-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .step-card:hover .step-title {
            transform: translateY(-3px);
            color: var(--text-primary);
        }
        
        .step-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: var(--gradient-primary);
            transition: transform 0.3s ease;
        }
        
        .step-card:hover .step-title::after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .step-description {
            color: var(--text-secondary);
            line-height: 1.7;
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-description {
            color: var(--text-primary);
            transform: translateY(-2px);
        }
        
        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: var(--spacing-xl);
        }
        
        .testimonial-card {
            background: rgba(17, 17, 17, 0.25);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px var(--shadow-color);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        
        .testimonial-card > * {
            position: relative;
            z-index: 2;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 231, 252, 0.15);
            border-color: rgba(0, 231, 252, 0.3);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        
        .testimonial-avatar-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }
        
        .testimonial-avatar-wrapper::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: var(--gradient-primary);
            z-index: -1;
            pointer-events: none;
        }
        
        .testimonial-avatar-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: var(--bg-secondary);
            z-index: 0;
            pointer-events: none;
        }
        
        .testimonial-avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            display: block;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.05);
        }
        
        .testimonial-info h4 {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* ============================================
           FAQ SECTION - PREMIUM DESIGN
           ============================================ */
        .faq-container {
            max-width: 900px;
            margin: var(--spacing-xl) auto 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .faq-item {
            background: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 30px rgba(0, 231, 252, 0.2),
                0 0 0 1px rgba(0, 231, 252, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 231, 252, 0.3);
        }
        
        .faq-item:hover::before {
            transform: scaleX(1);
        }
        
        .faq-item.active {
            background: rgba(17, 17, 17, 0.6);
            border-color: rgba(0, 231, 252, 0.4);
            box-shadow: 
                0 8px 35px rgba(0, 231, 252, 0.25),
                0 0 0 1px rgba(0, 231, 252, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }
        
        .faq-item.active::before {
            transform: scaleX(1);
        }
        
        .faq-question {
            padding: 1.75rem 2rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .faq-question:hover {
            color: rgba(0, 231, 252, 0.9);
        }
        
        .faq-item.active .faq-question {
            color: rgba(0, 231, 252, 1);
        }
        
        .faq-question span {
            flex: 1;
            padding-right: 1rem;
        }
        
        .faq-question i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-secondary);
            font-size: 0.9rem;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 231, 252, 0.1);
            flex-shrink: 0;
        }
        
        .faq-item:hover .faq-question i {
            background: rgba(0, 231, 252, 0.2);
            color: rgba(0, 231, 252, 0.8);
            transform: scale(1.1);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg) scale(1.1);
            color: rgba(0, 231, 252, 1);
            background: rgba(0, 231, 252, 0.25);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
        }
        
        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1rem;
            animation: fadeInUp 0.4s ease-out 0.1s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Light theme adjustments */
        [data-theme="light"] .faq-item {
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(14, 165, 233, 0.2);
            box-shadow: 
                0 8px 32px rgba(15, 23, 42, 0.1),
                0 2px 8px rgba(15, 23, 42, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.8);
        }
        
        [data-theme="light"] .faq-item:hover {
            box-shadow: 
                0 12px 40px rgba(14, 165, 233, 0.15),
                0 4px 16px rgba(15, 23, 42, 0.08),
                0 0 0 1px rgba(14, 165, 233, 0.3),
                0 0 20px rgba(14, 165, 233, 0.08);
            border-color: rgba(14, 165, 233, 0.35);
        }
        
        [data-theme="light"] .faq-item.active {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(14, 165, 233, 0.4);
            box-shadow: 
                0 12px 48px rgba(14, 165, 233, 0.2),
                0 4px 16px rgba(15, 23, 42, 0.1),
                0 0 0 1px rgba(14, 165, 233, 0.4),
                0 0 24px rgba(14, 165, 233, 0.12);
        }
        
        [data-theme="light"] .faq-item::before {
            background: linear-gradient(90deg, rgba(14, 165, 233, 1) 0%, rgba(34, 197, 94, 1) 100%);
        }
        
        /* ============================================
           WHATSAPP FLOATING BUTTON
           ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 20px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            animation: whatsappPulse 2s ease-in-out infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 
                0 6px 30px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(37, 211, 102, 0.5);
        }
        
        @media (max-width: 767px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 1rem;
                right: 1rem;
            }
            
            .whatsapp-float svg {
                width: 24px;
                height: 24px;
            }
        }
        
        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: #fff;
            color: #fff;
        }
        
        .whatsapp-float i {
            display: none;
        }
        
        /* Tema claro - Botão preto e branco */
        [data-theme="light"] .whatsapp-float {
            background: rgba(0, 0, 0, 0.95) !important;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        [data-theme="light"] .whatsapp-float:hover {
            background: rgba(0, 0, 0, 1) !important;
            box-shadow: 
                0 6px 30px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(0, 0, 0, 0.3),
                0 0 0 2px rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        [data-theme="light"] .whatsapp-float svg {
            fill: #fff;
            color: #fff;
        }
        
        [data-theme="light"] .whatsapp-float i {
            display: none;
        }
        
        /* Animação pulse no tema claro */
        @keyframes whatsappPulseLight {
            0%, 100% {
                box-shadow: 
                    0 4px 20px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(0, 0, 0, 0.2),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
            }
            50% {
                box-shadow: 
                    0 4px 20px rgba(0, 0, 0, 0.5),
                    0 0 30px rgba(0, 0, 0, 0.4),
                    0 0 40px rgba(0, 0, 0, 0.2),
                    0 0 0 2px rgba(255, 255, 255, 0.2);
            }
        }
        
        [data-theme="light"] .whatsapp-float {
            animation: whatsappPulseLight 2s ease-in-out infinite;
        }
        
        @keyframes whatsappPulse {
            0%, 100% {
                box-shadow: 
                    0 4px 20px rgba(37, 211, 102, 0.4),
                    0 0 20px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 
                    0 4px 20px rgba(37, 211, 102, 0.6),
                    0 0 30px rgba(37, 211, 102, 0.5),
                    0 0 40px rgba(37, 211, 102, 0.3);
            }
        }
        
        /* ============================================
           SCROLL TO TOP BUTTON
           ============================================ */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(17, 17, 17, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 231, 252, 0.2);
            z-index: 999;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 6px 30px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(0, 231, 252, 0.3);
            border-color: rgba(0, 231, 252, 0.5);
        }
        
        .scroll-to-top i {
            font-size: 1.2rem;
            color: rgba(0, 231, 252, 1);
            transition: transform 0.3s ease;
        }
        
        .scroll-to-top:hover i {
            transform: translateY(-2px);
        }
        
        [data-theme="light"] .scroll-to-top {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(0, 0, 0, 0.1);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(0, 231, 252, 0.15);
        }
        
        [data-theme="light"] .scroll-to-top:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(0, 231, 252, 0.4);
            box-shadow: 
                0 6px 30px rgba(0, 0, 0, 0.15),
                0 0 30px rgba(0, 231, 252, 0.25);
        }
        
        [data-theme="light"] .scroll-to-top i {
            color: rgba(0, 231, 252, 1);
        }
        
        @media (max-width: 768px) {
            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 1.5rem;
                left: 1.5rem;
            }
            
            .scroll-to-top i {
                font-size: 1rem;
            }
        }
        
        /* ============================================
           FORM MESSAGE FEEDBACK
           ============================================ */
        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .form-message.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .form-message.success {
            background: rgba(0, 255, 77, 0.15);
            border: 1px solid rgba(0, 255, 77, 0.3);
            color: rgba(0, 255, 77, 1);
        }
        
        .form-message.error {
            background: rgba(255, 77, 77, 0.15);
            border: 1px solid rgba(255, 77, 77, 0.3);
            color: rgba(255, 77, 77, 1);
        }
        
        [data-theme="light"] .form-message.success {
            background: rgba(0, 255, 77, 0.1);
            border-color: rgba(0, 255, 77, 0.4);
            color: rgba(0, 150, 0, 1);
        }
        
        [data-theme="light"] .form-message.error {
            background: rgba(255, 77, 77, 0.1);
            border-color: rgba(255, 77, 77, 0.4);
            color: rgba(200, 0, 0, 1);
        }
        
        .btn.btn-primary.loading {
            opacity: 0.7;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        .btn.btn-primary.loading span::after {
            content: '...';
            animation: dots 1.5s steps(4, end) infinite;
        }
        
        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .whatsapp-float i {
                font-size: 1.8rem;
            }
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: var(--spacing-xl) 2rem var(--spacing-md);
            border-top: 1px solid var(--border-color);
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: var(--spacing-lg);
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        [data-theme="light"] .footer-section h3 {
            background: linear-gradient(90deg, rgba(0, 100, 150, 1) 0%, rgba(0, 150, 50, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--text-primary);
            padding-left: 5px;
        }
        
        .footer-section p {
            color: var(--text-secondary);
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            transition: var(--transition);
            color: var(--text-primary);
        }
        
        .footer-social a:hover {
            background: var(--gradient-primary);
            border-color: transparent;
            transform: translateY(-3px);
            color: #ffffff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        
        /* ============================================
           ANIMATIONS MELHORADAS - SUPER PREMIUM
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-60px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px) rotateY(-10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px) rotateY(10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(80px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-10px) rotate(1deg);
            }
            66% {
                transform: translateY(-5px) rotate(-1deg);
            }
        }
        
        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.6;
                transform: scale(1);
                filter: blur(0px);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
                filter: blur(2px);
            }
        }
        
        @keyframes smoothBounce {
            0%, 100% {
                transform: translateY(0);
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            }
            50% {
                transform: translateY(-15px);
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            }
        }
        
        @keyframes rotateGradient {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes morphBackground {
            0%, 100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            50% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }
        }
        
        /* Classes de animação melhoradas */
        .fade-in-up {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-60px) rotateY(-10deg);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(60px) rotateY(10deg);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.8) rotate(-5deg);
            transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .scale-in.visible {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
        
        /* Animação para cards com delay escalonado melhorado */
        .testimonial-card,
        .step-card,
        .faq-item {
            opacity: 0;
            transform: translateY(50px) scale(0.95) rotateX(5deg);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        border-color 0.4s ease;
            animation: cardPulse 5s ease-in-out infinite;
        }
        
        .testimonial-card.visible,
        .step-card.visible,
        .faq-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1) rotateX(0deg);
            animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                       cardPulse 5s ease-in-out infinite 0.8s;
        }
        
        @keyframes cardEntrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95) rotateX(5deg);
            }
            60% {
                transform: translateY(-8px) scale(1.02) rotateX(-1deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0deg);
            }
        }
        
        @keyframes cardPulse {
            0%, 100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.05);
            }
        }
        
        /* Efeito de gradiente animado nos cards */
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 231, 252, 0.1),
                rgba(0, 255, 77, 0.1),
                transparent
            );
            transition: left 0.6s ease;
            pointer-events: none;
            border-radius: 24px;
        }
        
        .feature-card:hover::after {
            left: 100%;
        }
        
        /* Animação de entrada mais suave para números */
        .result-number {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .result-card:hover .result-number {
            transform: scale(1.15) rotate(5deg);
        }
        
        .result-label {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .result-card:hover .result-label {
            transform: translateY(-3px);
            color: var(--text-primary);
        }
        
        .result-label::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: var(--gradient-primary);
            transition: transform 0.3s ease;
        }
        
        .result-card:hover .result-label::after {
            transform: translateX(-50%) scaleX(1);
        }
        
        /* Botões com animação melhorada */
        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn span {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .btn:hover span {
            transform: translateY(-2px);
        }
        
        /* Animação de loading melhorada */
        @keyframes spin {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.1);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }
        
        /* Efeito parallax sutil em imagens */
        .complexo-image-wrapper img,
        .bear-image-wrapper img {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Animação suave para texto */
        .section-title,
        .section-subtitle,
        .section-description {
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        /* Efeito de brilho nos gradientes */
        .gradient-text {
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }
        
        /* Navbar com animação mais suave */
        .navbar {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        /* WhatsApp button com animação melhorada */
        .whatsapp-float {
            animation: smoothBounce 3s ease-in-out infinite;
        }
        
        .whatsapp-float:hover {
            animation: none;
            transform: scale(1.15) rotate(5deg);
        }
        
        /* Scroll to top com efeito melhorado */
        .scroll-to-top {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .scroll-to-top:hover {
            transform: translateY(-8px) rotate(5deg);
        }
        
        /* FAQ com animação suave */
        .faq-item {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .faq-item.active {
            transform: scale(1.02);
        }
        
        /* Loading dots melhorado */
        @keyframes dots {
            0%, 20% { 
                content: '.'; 
                opacity: 0.3;
            }
            40% { 
                content: '..'; 
                opacity: 0.6;
            }
            60%, 100% { 
                content: '...'; 
                opacity: 1;
            }
        }
        
        /* Animação de texto com gradiente */
        .gradient-text {
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        /* ============================================
           RESPONSIVE - SISTEMA COMPLETO
           ============================================ */
        
        /* ============================================
           DESKTOP LARGE (1440px+)
           ============================================ */
        @media (min-width: 1440px) {
            .section-container {
                max-width: 1400px;
            }
            
            .hero-title {
                font-size: clamp(3.5rem, 8vw, 6rem);
            }
            
            .section-title {
                font-size: clamp(2.5rem, 5vw, 3.5rem);
            }
            
            .hero-subtitle {
                font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
            
            .steps-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 3rem;
            }
            
            .about-content {
                grid-template-columns: 300px 1fr;
                gap: 2.5rem;
                max-width: 1000px;
            }
            
            .contact-grid {
                gap: 5rem;
            }
        }
        
        /* ============================================
           DESKTOP (1024px - 1439px)
           ============================================ */
        @media (max-width: 1439px) and (min-width: 1024px) {
            .section-container {
                max-width: 1200px;
            }
            
            .hero-title {
                font-size: clamp(2.5rem, 7vw, 4.5rem);
            }
            
            .section-title {
                font-size: clamp(2rem, 4.5vw, 3rem);
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
            
            .steps-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
            
            .about-content {
                grid-template-columns: auto 1fr;
                gap: 2.5rem;
            }
            
            .about-card {
                width: 300px;
                height: 500px;
            }
            
            .about-sidebar {
                height: 500px;
            }
            
            .contact-grid {
                gap: 4rem;
            }
            
            .results-grid {
                gap: 2rem;
                overflow-x: auto;
            }
            
            .result-card {
                min-width: 200px;
            }
        }
        
        /* ============================================
           TABLET LANDSCAPE (992px - 1023px)
           ============================================ */
        @media (max-width: 1023px) and (min-width: 992px) {
            .section-container {
                max-width: 960px;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        /* ============================================
           TABLET PORTRAIT (768px - 991px)
           ============================================ */
        @media (max-width: 991px) and (min-width: 768px) {
            .section {
                padding: var(--spacing-lg) 2rem;
            }
            
            .section-container {
                max-width: 100%;
                padding: 0 1.5rem;
            }
            
            .hero-title {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }
            
            .section-title {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
            }
            
            .hero-subtitle {
                font-size: clamp(1rem, 2vw, 1.3rem);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-cards-container {
                display: flex;
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .about-card {
                width: 100%;
                max-width: 320px;
                height: 500px;
            }
            
            .about-sidebar {
                height: auto;
                max-height: 500px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .contact-item {
                padding: 1.75rem;
                gap: 1.5rem;
            }
            
            .contact-icon {
                width: 65px;
                height: 65px;
            }
            
            .contact-icon svg {
                width: 30px;
                height: 30px;
            }
            
            .bear-content {
                flex-direction: column;
                gap: 2.5rem;
                text-align: center;
            }
            
            .bear-image-wrapper {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .bear-title {
                font-size: clamp(2.5rem, 7vw, 4rem);
            }
            
            .bear-subtitle {
                font-size: clamp(1rem, 2.5vw, 1.2rem);
            }
            
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .results-grid {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }
            
            .result-card {
                flex: 1 1 calc(33.333% - 1rem);
                min-width: 180px;
            }
            
            .feature-card,
            .testimonial-card {
                padding: 2rem;
            }
            
            .feature-icon {
                height: 200px;
            }
            
            .hero-cta {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .btn {
                flex: 1 1 auto;
                min-width: 200px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .client-logo {
                width: 180px;
                height: 100px;
            }
            
            .client-logo img {
                width: 120%;
                height: 120%;
            }
            
            .client-logo img[src*="CAMUCA_LOGO"],
            .client-logo img[src*="ZEUS ROSOLVE_LOGO"] {
                width: 250%;
                height: 250%;
                transform: translateY(10px);
            }
        }
        
        /* ============================================
           MOBILE LANDSCAPE & SMALL TABLET (576px - 767px)
           ============================================ */
        @media (max-width: 767px) and (min-width: 576px) {
            .section {
                padding: var(--spacing-md) 1.5rem;
            }
            
            .section-container {
                padding: 0 1rem;
            }
            
            .hero {
                padding: 7rem 1.5rem 3rem;
            }
            
            .hero-title {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: clamp(0.95rem, 2vw, 1.1rem);
            }
            
            .section-title {
                font-size: clamp(1.75rem, 5vw, 2.25rem);
            }
            
            .section-subtitle {
                font-size: clamp(0.9rem, 2vw, 1rem);
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-cards-container {
                display: flex;
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .about-card {
                width: 100%;
                max-width: 300px;
                height: 400px;
            }
            
            .about-sidebar {
                height: auto;
                max-height: 400px;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-item {
                padding: 1.5rem;
                gap: 1.25rem;
            }
            
            .contact-icon {
                width: 60px;
                height: 60px;
                flex-shrink: 0;
            }
            
            .contact-icon svg {
                width: 28px;
                height: 28px;
            }
            
            .contact-details h4 {
                font-size: 1.1rem;
            }
            
            .contact-details p {
                font-size: 0.9rem;
            }
            
            .contact-form-container {
                padding: 2rem;
            }
            
            .bear-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .bear-image-wrapper {
                max-width: 350px;
            }
            
            .bear-title {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }
            
            .bear-subtitle {
                font-size: clamp(0.95rem, 2vw, 1.15rem);
            }
            
            .results-grid {
                flex-direction: column;
                align-items: stretch;
                gap: 1.5rem;
            }
            
            .result-card {
                width: 100%;
                min-width: auto;
            }
            
            .feature-card,
            .testimonial-card {
                padding: 1.75rem;
            }
            
            .feature-icon {
                height: 180px;
            }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                padding: 1rem 2rem;
            }
            
            .btn-feature {
                padding: 0.8rem 1.75rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .faq-container {
                padding: 1.5rem;
            }
            
            .faq-item {
                padding: 1.25rem;
            }
            
            .faq-question {
                font-size: 1rem;
            }
            
            .client-logo {
                width: 160px;
                height: 90px;
                padding: 1rem;
            }
            
            .client-logo img {
                width: 130%;
                height: 130%;
            }
            
            .client-logo img[src*="CAMUCA_LOGO"],
            .client-logo img[src*="ZEUS ROSOLVE_LOGO"] {
                width: 280%;
                height: 280%;
                transform: translateY(12px);
            }
        }
        
        /* ============================================
           MOBILE PORTRAIT (até 768px) - NAVEGAÇÃO
           ============================================ */
        @media (max-width: 768px) {
            .navbar {
                top: 0.5rem;
                width: calc(100% - 1.5rem);
                padding: 0.6rem 1rem;
                z-index: 1002;
            }
            
            .navbar.scrolled {
                top: 0.5rem;
                padding: 0.6rem 1rem;
            }
            
            .nav-container {
                justify-content: space-between;
                width: 100%;
            }
            
            .logo {
                height: 28px;
            }
            
            .logo img {
                max-height: 28px;
            }
            
            .menu-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
                z-index: 1003;
                position: relative;
                width: 32px;
                height: 32px;
                flex-shrink: 0;
                font-size: 1.1rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                max-height: 100vh;
                background: var(--bg-secondary);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 4rem 1.5rem 2rem;
                padding-top: 5rem;
                box-shadow: 0 4px 20px var(--shadow-color);
                transition: left 0.3s ease, opacity 0.3s ease;
                gap: 0;
                z-index: 1001;
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                display: flex !important;
                opacity: 0;
                visibility: hidden;
            }
            
            .nav-menu.active {
                left: 0;
                opacity: 1;
                visibility: visible;
            }
            
            .nav-menu li {
                width: 100%;
                margin-bottom: 0.4rem;
                flex-shrink: 0;
            }
            
            .nav-menu li:last-child {
                margin-top: 0.8rem;
            }
            
            .nav-link {
                display: block;
                padding: 0.8rem 1rem;
                border-radius: 8px;
                font-size: 0.95rem;
                width: 100%;
                white-space: nowrap;
                overflow: visible;
            }
            
            .nav-link::after {
                display: none !important;
            }
            
            .nav-link:hover {
                background: var(--bg-tertiary);
            }
            
            .nav-cta {
                width: 100%;
                text-align: center;
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
                white-space: nowrap;
                overflow: visible;
            }
            
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                margin-left: 0;
                margin-top: 0.5rem;
                flex-shrink: 0;
            }
            
            .hero {
                padding: 8rem 1.5rem 3rem;
                min-height: auto;
            }
            
            .hero-badge {
                padding: 0.4rem 1rem;
                font-size: 0.65rem;
                letter-spacing: 1px;
                margin-bottom: 1.25rem;
            }
            
            .section {
                padding: var(--spacing-lg) 1.5rem;
            }
            
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .contact-form-container {
                padding: 2rem;
            }
            
            .form-group input,
            .form-group textarea {
                font-size: 1rem;
            }
        }
        
        /* ============================================
           MOBILE SMALL (481px - 575px)
           ============================================ */
        @media (max-width: 575px) and (min-width: 481px) {
            .section {
                padding: var(--spacing-md) 1.25rem;
            }
            
            .section-container {
                padding: 0 0.75rem;
            }
            
            .hero {
                padding: 7rem 1.25rem 2.5rem;
            }
            
            .hero-title {
                font-size: clamp(1.75rem, 7vw, 2.25rem);
            }
            
            .hero-subtitle {
                font-size: clamp(0.9rem, 2vw, 1.05rem);
            }
            
            .section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .about-cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .about-card {
                max-width: 280px;
                height: 380px;
            }
            
            .about-sidebar {
                height: auto;
                max-height: 400px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-item {
                padding: 1.25rem;
                gap: 1rem;
            }
            
            .contact-icon {
                width: 55px;
                height: 55px;
            }
            
            .contact-icon svg {
                width: 26px;
                height: 26px;
            }
            
            .contact-form-container {
                padding: 1.75rem;
            }
            
            .bear-content {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .bear-image-wrapper {
                max-width: 280px;
            }
            
            .bear-title {
                font-size: clamp(1.75rem, 7vw, 3rem);
            }
            
            .bear-subtitle {
                font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            }
            
            .client-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .feature-icon {
                height: 160px;
            }
        }
        
        /* ============================================
           MOBILE EXTRA SMALL (até 480px)
           ============================================ */
        @media (max-width: 480px) {
            .section {
                padding: var(--spacing-md) 1rem;
            }
            
            .section-container {
                padding: 0 0.5rem;
            }
            
            .hero {
                padding: 6.5rem 1rem 2.5rem;
                min-height: auto;
            }
            
            .hero-title {
                font-size: clamp(1.5rem, 7vw, 2rem);
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }
            
            .hero-badge {
                padding: 0.35rem 0.85rem;
                font-size: 0.6rem;
                letter-spacing: 0.9px;
            }
            
            .section-title {
                font-size: clamp(1.5rem, 6vw, 1.75rem);
            }
            
            .section-subtitle {
                font-size: 0.85rem;
            }
            
            .section-description {
                font-size: 0.95rem;
            }
            
            .features-grid,
            .testimonials-grid {
                gap: 1.25rem;
            }
            
            .feature-card,
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .feature-title {
                font-size: 1.1rem;
            }
            
            .feature-icon {
                height: 150px;
            }
            
            .feature-icon img {
                max-width: 80px;
                max-height: 80px;
            }
            
            .steps-container {
                gap: 1.5rem;
            }
            
            .step-number {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }
            
            .step-title {
                font-size: 1.1rem;
            }
            
            .step-description {
                font-size: 0.9rem;
            }
            
            /* About Section - Mobile */
            .about-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .about-cards-container {
                flex-direction: column;
                align-items: center;
                gap: 1.25rem;
            }
            
            .about-card {
                width: 100%;
                max-width: 280px;
                height: 350px;
            }
            
            .about-sidebar {
                height: auto;
                max-height: 500px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            /* Contact Section - Mobile */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-item {
                padding: 1.25rem;
                gap: 1rem;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                width: 55px;
                height: 55px;
                margin: 0 auto;
            }
            
            .contact-icon svg {
                width: 26px;
                height: 26px;
            }
            
            .contact-details {
                text-align: center;
            }
            
            .contact-details h4 {
                font-size: 1rem;
            }
            
            .contact-details p {
                font-size: 0.85rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            /* Bear Finance - Mobile */
            .bear-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .bear-image-wrapper {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .bear-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }
            
            .bear-subtitle {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
            }
            
            .bear-description {
                text-align: left;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .contact-item {
                padding: 1rem;
                gap: 1rem;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
            }
            
            .contact-icon svg {
                width: 24px;
                height: 24px;
            }
            
            .contact-details h4 {
                font-size: 0.95rem;
            }
            
            .contact-details p {
                font-size: 0.85rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            /* About Section - Mobile Extra Small */
            .about-card {
                max-width: 260px;
                height: 320px;
            }
            
            .about-sidebar {
                max-height: 450px;
            }
            
            /* Bear Finance - Mobile Extra Small */
            .bear-image-wrapper {
                max-width: 250px;
            }
            
            .bear-title {
                font-size: clamp(1.75rem, 9vw, 2.5rem);
            }
            
            .bear-subtitle {
                font-size: clamp(0.85rem, 3.5vw, 1rem);
            }
            
            .form-group {
                margin-bottom: 1rem;
            }
            
            .form-group input,
            .form-group textarea {
                padding: 0.85rem;
                font-size: 0.95rem;
            }
            
            .btn {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
            
            .btn-feature {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .result-card {
                padding: 1.5rem;
            }
            
            .result-number {
                font-size: 2rem;
            }
            
            .result-label {
                font-size: 0.85rem;
            }
            
            .client-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            
            .client-logo {
                padding: 0.75rem;
            }
            
            .client-logo img {
                max-height: 30px;
            }
            
            .footer-content {
                gap: 1.5rem;
            }
            
            .footer-section h3 {
                font-size: 1.1rem;
            }
            
            .footer-section p,
            .footer-section a {
                font-size: 0.85rem;
            }
            
            .faq-item {
                padding: 1rem;
            }
            
            .faq-question {
                font-size: 0.95rem;
            }
            
            .faq-answer {
                font-size: 0.85rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 1.25rem;
                right: 1.25rem;
                font-size: 1.5rem;
            }
        }
        
        /* ============================================
           DISPOSITIVOS MUITO PEQUENOS (320px - 375px)
           ============================================ */
        @media (max-width: 375px) {
            .navbar {
                padding: 0.5rem 0.8rem;
                width: calc(100% - 1rem);
            }
            
            .logo {
                height: 24px;
            }
            
            .logo img {
                max-height: 24px;
            }
            
            /* About Section - Very Small Mobile */
            .about-card {
                max-width: 100%;
                height: 300px;
            }
            
            .about-sidebar {
                max-height: 400px;
                padding: 1.5rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            /* Contact Section - Very Small Mobile */
            .contact-item {
                padding: 1rem;
                gap: 0.75rem;
            }
            
            .contact-icon {
                width: 45px;
                height: 45px;
            }
            
            .contact-icon svg {
                width: 22px;
                height: 22px;
            }
            
            .contact-form-container {
                padding: 1.25rem;
            }
            
            /* Bear Finance - Very Small Mobile */
            .bear-image-wrapper {
                max-width: 220px;
            }
            
            .bear-title {
                font-size: clamp(1.5rem, 10vw, 2.25rem);
            }
            
            .bear-subtitle {
                font-size: clamp(0.8rem, 4vw, 0.95rem);
            }
            
            .menu-toggle {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
            
            .nav-menu {
                padding: 3.5rem 1rem 1.5rem;
                padding-top: 4.5rem;
            }
            
            .nav-link {
                padding: 0.7rem 0.9rem;
                font-size: 0.9rem;
            }
            
            .nav-cta {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }
            
            .theme-toggle {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
                margin-top: 0.4rem;
            }
            
            .hero {
                padding: 6rem 1rem 2.5rem;
                min-height: 90vh;
            }
            
            .hero-title {
                font-size: clamp(1.5rem, 8vw, 2rem);
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 0.85rem;
                padding: 0 0.5rem;
            }
            
            .hero-badge {
                padding: 0.3rem 0.8rem;
                font-size: 0.55rem;
                letter-spacing: 0.8px;
                margin-bottom: 1rem;
            }
            
            .section {
                padding: var(--spacing-md) 0.75rem;
            }
            
            .section-container {
                padding: 0 0.5rem;
            }
            
            .section-title {
                font-size: clamp(1.4rem, 7vw, 1.65rem);
            }
            
            .section-description {
                font-size: 0.9rem;
            }
            
            .feature-card,
            .testimonial-card {
                padding: 1.25rem;
            }
            
            .feature-icon {
                height: 140px;
            }
            
            .feature-icon img {
                max-width: 70px;
                max-height: 70px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .contact-form-container {
                padding: 1.25rem;
            }
            
            .client-grid {
                gap: 0.5rem;
            }
            
            .whatsapp-float {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
            }
        }
        
        /* ============================================
           AJUSTES ESPECÍFICOS PARA ORIENTAÇÃO
           ============================================ */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                padding: 5rem 1.5rem 2rem;
                min-height: auto;
            }
            
            .nav-menu {
                padding-top: 3rem;
            }
        }
        
        /* ============================================
           IMPRESSÃO
           ============================================ */
        @media print {
            .navbar,
            .whatsapp-float,
            .scroll-to-top,
            .hero-cta {
                display: none;
            }
            
            .section {
                page-break-inside: avoid;
            }
        }