
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #121212;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(173, 202, 40, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(173, 202, 40, 0.05) 0%, transparent 50%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            padding: 20px;
        }

        /* Skip Link - Acessibilidade */
        .skip-link {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .skip-link:focus {
            position: fixed;
            top: 10px;
            left: 10px;
            width: auto;
            height: auto;
            padding: 12px 24px;
            background: #ADCA28;
            color: #121212;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            z-index: 10001;
            box-shadow: 0 4px 20px rgba(173, 202, 40, 0.4);
        }

        .container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            max-width: 700px;
            width: 100%;
            animation: fadeIn 0.8s ease-out;
            position: relative;
        }

        /* Toggle Pills Circular (V3) - Dentro do container */
        .language-switcher {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            background: rgba(255,255,255,0.08);
            border-radius: 50px;
            padding: 4px;
            gap: 4px;
            z-index: 100;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 2px solid transparent;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s;
            overflow: hidden;
            padding: 0;
        }

        .lang-btn:hover {
            border-color: rgba(173, 202, 40, 0.4);
        }

        .lang-btn:focus {
            outline: 2px solid #ADCA28;
            outline-offset: 2px;
        }

        .lang-btn.active {
            border-color: #ADCA28;
            box-shadow: 0 0 15px rgba(173, 202, 40, 0.4);
        }

        .lang-btn img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo-container {
            margin-bottom: 40px;
            margin-top: 20px;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        .logo {
            width: 400px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(173, 202, 40, 0.3));
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #ADCA28 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            margin-top: 10px;
            font-weight: 600;
            color: #ADCA28;
        }

        .subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.8;
            color: #cccccc;
        }

        /* Ranking Section */
        .ranking-section {
            margin: 0 0 30px 0;
            padding: 20px 25px;
            background: linear-gradient(135deg, rgba(173, 202, 40, 0.12) 0%, rgba(173, 202, 40, 0.04) 100%);
            border-radius: 16px;
            border: 1px solid rgba(173, 202, 40, 0.25);
        }

        .ranking-section h3 {
            color: #ADCA28;
            font-size: 1.3rem;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .ranking-section p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 14px;
        }

        .ranking-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #ADCA28 0%, #6E8F13 100%);
            color: #121212;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(173, 202, 40, 0.3);
        }

        .ranking-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(173, 202, 40, 0.5);
            background: linear-gradient(135deg, #CBEA46 0%, #ADCA28 100%);
        }

        .ranking-btn:focus {
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        .ranking-btn svg {
            width: 18px;
            height: 18px;
        }

        .badge-new {
            background: #ffc107;
            color: #121212;
            font-size: 0.6rem;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .qr-codes-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .qr-code-wrapper {
            background: rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(173, 202, 40, 0.2);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qr-code-wrapper:hover {
            transform: translateY(-5px);
            border-color: rgba(173, 202, 40, 0.5);
            box-shadow: 0 10px 30px rgba(173, 202, 40, 0.2);
        }

        .qr-code-wrapper:focus {
            outline: 2px solid #ADCA28;
            outline-offset: 2px;
        }

        .store-icon {
            width: 30px;
            height: 30px;
            margin-bottom: 15px;
        }

        .qr-code {
            background: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .store-name {
            font-size: 1.1rem;
            color: #ADCA28;
            margin-bottom: 5px;
        }

        .store-desc {
            font-size: 0.9rem;
            color: #aaaaaa;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888888;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: #ADCA28;
            color: #121212;
            transform: translateY(-3px);
        }

        .social-link:focus {
            outline: 2px solid #ADCA28;
            outline-offset: 2px;
        }

        .social-link svg {
            width: 22px;
            height: 22px;
        }

        .footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .footer-legal a {
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: #ADCA28;
        }

        .footer-legal a:focus {
            outline: 2px solid #ADCA28;
            outline-offset: 2px;
        }

        .footer-text {
            font-size: 0.85rem;
            color: #666666;
        }

        @media (max-width: 600px) {
            .container {
                padding: 40px 25px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .logo {
                width: 280px;
            }
            
            .qr-codes-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .qr-code-wrapper {
                padding: 25px;
            }

            .language-switcher {
                top: 12px;
                right: 12px;
            }

            .lang-btn {
                width: 32px;
                height: 32px;
            }

            .footer-legal {
                gap: 16px;
            }

            .ranking-section {
                padding: 18px 20px;
            }

            .ranking-btn {
                padding: 11px 24px;
                font-size: 0.9rem;
            }
        }
    