* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1117;
    color: #e5e7eb;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    flex: 1;
}

h1 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-update {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

section {
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

h2 {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::before {
    content: "▸";
    color: #3b82f6;
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
    color: #d1d5db;
    text-align: justify;
}

ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
    color: #d1d5db;
    position: relative;
    padding-left: 10px;
}

li::marker {
    color: #3b82f6;
}

strong {
    color: #60a5fa;
    font-weight: 600;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
}

.back-button a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.back-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

/* Footer */
footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

footer p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .logo {
        height: 60px;
    }

    h1 {
        font-size: 3rem;
    }

    .privacy-container {
        padding: 120px 40px 60px;
    }

    section {
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out backwards;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }
section:nth-child(9) { animation-delay: 0.9s; }
section:nth-child(10) { animation-delay: 1s; }