:root {
    /* Paleta de cores refinada */
    --bg-dark: #0a0a10;
    --bg-card: #12121a;
    --bg-card-hover: #171724;
    --text: #f0f0f5;
    --muted: #9e9eb5;
    --brand-1: #0052cc;
    --brand-2: #0cb0f0;
    --brand-3: #ff9500;
    --text-dark: #1f2937;
    --text-light: #f9fafb;
    --bg-light: #f3f4f6;
    --success: #39E000;
    --danger: #ff4d4f;
    --shadow: 0 10px 30px rgba(0, 0, 0, .5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, .3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

/* --- MELHORIA: ESTILIZAÇÃO DO SCROLL --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2a2a3a;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-1);
}

html {
    scroll-behavior: smooth;
}

/* Estilos específicos para o menu de login */
.login-container {
    position: relative;
    display: inline-block;
}

/* --- MELHORIA: AJUSTE DO MENU (ALINHAMENTO E CORES) --- */
.login-select {
    position: absolute;
    top: calc(100% + 10px);
    right: 0; /* Alterado de left:0 para right:0 para alinhar com o botão */
    background: var(--bg-card); /* Usando a variável de cor do tema */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 180px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1000;
}

.login-select.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.login-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--brand-2);
}

.login-option i {
    width: 16px;
    text-align: center;
    color: var(--brand-2);
}

html,
body {
    height: 100%;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Efeito de gradiente refinado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(800px 400px at 85% -5%, rgba(0, 153, 255, 0.25), transparent 60%),
        radial-gradient(700px 350px at 5% 15%, rgba(0, 162, 255, 0.15), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER ESTILIZADO */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(11, 11, 18, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 15px 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__img {
    width: 160px;
    height: auto;
    transition: var(--transition);
}

.header__img:hover {
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header__ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.header__li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__li a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.header__li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--brand-1), var(--brand-2));
    transition: var(--transition);
}

.header__li a:hover {
    color: #fff;
}

.header__li a:hover::after {
    width: 100%;
}

.header__hamburger {
    display: none;
    background: none;
    color: #fff;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.header__hamburger:hover {
    background: rgba(255, 255, 255, .1);
}

.header__cta {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    box-shadow: var(--shadow-light);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 176, 240, 0.3);
}

.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, .08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== AJUSTE FINAL: MOSTRAR BURGUER CORRETO NO MOBILE ===== */
@media (max-width: 768px) {
    /* Esconde o menu desktop */
    .header__nav {
        display: none;
    }

    /* Mostra o hamburguer do header */
    .header__hamburger {
        display: block;
    }
}

/* Offcanvas Mobile Styles */
.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.offcanvas.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.off-body {
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #12121a, #0a0a10);
    padding: 25px 20px;
    border-right: 1px solid rgba(12, 176, 240, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

#closeOff {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

#closeOff:hover {
    background: rgba(12, 176, 240, 0.2);
    border-color: #0cb0f0;
    color: #0cb0f0;
    transform: rotate(90deg);
}

#closeOff i {
    font-size: 20px;
}

.off-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.off-links a {
    color: #f0f0f5;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.off-links a i {
    width: 20px;
    height: 20px;
    color: #0cb0f0;
}

.off-links a:hover {
    background: rgba(12, 176, 240, 0.1);
    border-color: rgba(12, 176, 240, 0.2);
    transform: translateX(10px);
    color: #0cb0f0;
}

.off-links a.active {
    background: linear-gradient(90deg, rgba(12, 176, 240, 0.2), transparent);
    border-left: 3px solid #0cb0f0;
    color: #0cb0f0;
}

/* Botão Hamburguer */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
    position: relative;
}

.hamburger-btn i {
    width: 28px;
    height: 28px;
    color: #f0f0f5;
    transition: color 0.3s ease;
}

.hamburger-btn:hover i {
    color: #0cb0f0;
}

/* Responsivo */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .off-body {
        width: 85%;
    }
}
        
        /* ===== MAIN CONTENT ===== */
        .privacy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 80px;
        }
        
        /* ===== TÍTULO PRINCIPAL ===== */
        .privacy-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, var(--brand-primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }
        
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--muted);
        }
        
        .last-updated i {
            width: 16px;
            height: 16px;
        }
        
        /* ===== SUMÁRIO ===== */
        .summary {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            margin-bottom: 48px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .summary h2 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .summary h2 i {
            width: 22px;
            height: 22px;
            color: var(--brand-primary);
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
        }
        
        .summary-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--muted);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        
        .summary-item i {
            width: 16px;
            height: 16px;
            color: var(--brand-primary);
        }
        
        .summary-item:hover {
            background: rgba(12, 176, 240, 0.1);
            color: var(--brand-primary);
            transform: translateX(4px);
        }
        
        /* ===== SEÇÕES DE CONTEÚDO ===== */
        .privacy-section {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 28px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            scroll-margin-top: 100px;
        }
        
        .privacy-section:hover {
            border-color: rgba(12, 176, 240, 0.15);
        }
        
        .privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .privacy-section h2 i {
            width: 28px;
            height: 28px;
            color: var(--brand-primary);
        }
        
        .privacy-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 12px;
            color: var(--brand-primary);
        }
        
        .privacy-section p {
            color: var(--muted);
            margin-bottom: 16px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .privacy-section ul, 
        .privacy-section ol {
            margin: 16px 0 16px 24px;
            color: var(--muted);
        }
        
        .privacy-section li {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .privacy-section strong {
            color: var(--text);
            font-weight: 600;
        }
        
        /* Tabela de Dados */
        .data-table {
            width: 100%;
            overflow-x: auto;
            margin: 20px 0;
        }
        
        .data-table table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius);
            overflow: hidden;
        }
        
        .data-table th,
        .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .data-table th {
            background: rgba(12, 176, 240, 0.1);
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .data-table td {
            color: var(--muted);
            font-size: 0.85rem;
        }
        
        .data-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }
        
        /* Badge */
        .badge {
            display: inline-block;
            background: rgba(12, 176, 240, 0.15);
            color: var(--brand-primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            margin-right: 8px;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: rgba(13, 13, 20, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px 20px 30px;
            margin-top: 40px;
        }
        
        .footer__content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer__logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .footer__logo img {
            width: 40px;
            height: 40px;
        }
        
        .footer__logo span {
            font-weight: 700;
            font-size: 1rem;
            background: linear-gradient(135deg, #fff, var(--brand-primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer__links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        
        .footer__links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
        }
        
        .footer__links a:hover {
            color: var(--brand-primary);
        }
        
        .footer__copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.7rem;
            color: var(--muted-light);
        }
        
        /* ===== BOTÃO VOLTAR AO TOPO ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .back-to-top i {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 768px) {
            .header__nav {
                display: none;
            }
            
            .header__hamburger {
                display: block;
            }
            
            .privacy-container {
                padding: 40px 16px 60px;
            }
            
            .privacy-header h1 {
                font-size: 1.8rem;
            }
            
            .privacy-section {
                padding: 24px;
            }
            
            .privacy-section h2 {
                font-size: 1.2rem;
            }
            
            .summary {
                padding: 20px;
            }
            
            .summary-grid {
                grid-template-columns: 1fr;
            }
            
            .footer__content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer__links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .privacy-header h1 {
                font-size: 1.5rem;
            }
            
            .privacy-section {
                padding: 20px;
            }
            
            .data-table th,
            .data-table td {
                padding: 8px 12px;
                font-size: 0.75rem;
            }
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--brand-primary);
            border-radius: 4px;
        }
        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }