:root {
    --primary: #6c63ff;
    --primary-hover: #5a52e0;
    --bg-dark: #0a0a0f;
    --glass: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-muted: #d1d1e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0; 
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(10, 10, 15, 0.95)), 
                url('https://files.catbox.moe/hgxz9h.png') no-repeat center center fixed;
    background-size: cover;
    color: white; 
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    height: 70px;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    z-index: 2;
}

.nav-brand span {
    color: var(--primary);
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-nav:hover {
    background: var(--primary-hover);
}

/* Privacy Hero Header */
.privacy-hero {
    padding: 80px 20px 40px 20px; 
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

h1 { 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
    font-weight: 800; 
    color: white; 
}

h1 span { 
    color: var(--primary); 
    text-shadow: 0 0 30px rgba(108, 99, 255, 0.6); 
}

.privacy-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.privacy-section { 
    padding: 20px 20px 80px 20px; 
}

.privacy-card {
    max-width: 900px; 
    margin: 0 auto; 
    background: var(--glass);
    border: 1px solid var(--glass-border); 
    border-radius: 24px; 
    padding: 45px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.meta-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge.reading-time {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
    color: var(--text-muted);
}

h2 {
    font-size: 1.5rem;
    color: white;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 5px;
}

li {
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Highlight Text Box */
.highlight-box {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: #eee;
}

/* Footer */
.footer {
    padding: 80px 20px; 
    border-top: 1px solid var(--glass-border); 
    background: #050508;
}

.footer-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 40px;
}

.footer h4 { 
    margin-bottom: 20px; 
    color: white; 
    font-size: 1.2rem; 
}

.footer p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.footer a { 
    display: block; 
    color: #888; 
    text-decoration: none; 
    margin-bottom: 12px; 
    transition: 0.3s; 
    font-size: 0.95rem; 
}

.footer a:hover { 
    color: var(--primary); 
    padding-left: 5px; 
}

/* Responsividade */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .privacy-card { padding: 25px; }
    .nav-menu { display: none; }
}