
        /* ==========================================================================
           HEADER
           ========================================================================== */
        .elite-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 50px; z-index: 100; position: sticky; top: 0;
            background-color: rgba(10, 13, 20, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
            transition: position 0.3s;
        }
        body.is-testing .elite-header {
            position: relative; /* Permite que o header saia da tela no scroll durante o teste */
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main, #fff);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.5px;
        }

        .logo svg {
            width: 33px;
            height: 33px;
            fill: none;
            stroke: var(--accent-green, #10B981);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            shape-rendering: geometricPrecision;
        }

        .logo-highlight {
            color: var(--accent-green, #10B981);
        }

        .header-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .header-nav a {
            color: var(--text-muted, #9CA3AF);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .header-nav a:hover {
            color: var(--text-main, #fff);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-main, #fff);
            cursor: pointer;
            padding: 5px;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-main, #fff);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--card-bg, rgba(255,255,255,0.03));
            border: 1px solid var(--card-border, rgba(255,255,255,0.08));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-avatar svg { width: 18px; height: 18px; fill: var(--text-muted, #9CA3AF); }

        .region-selector {
            position: relative;
            color: var(--text-muted, #9CA3AF);
            font-size: 14px;
            cursor: default;
            display: flex;
            align-items: center;
        }

        .region-current {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .region-current {
            pointer-events: none;
        }
        
        @media (max-width: 1440px) {
            .elite-header { padding: 15px 20px; }
            .header-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 13, 20, 0.98);
                padding: 20px;
                border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            }
            .header-nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .region-selector, .user-profile, .header-city-btn { display: none; }
        }

