/* css/privacidade.css */

.legal-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-body);
    overflow: hidden;
    text-align: center;
}

.legal-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-main);
}
.legal-hero-text h1 .text-accent {
    color: var(--accent);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}
.blob-cyan {
    width: 400px; height: 400px;
    background: var(--accent);
    top: -50px; right: -50px;
}
.blob-purple {
    width: 400px; height: 400px;
    background: var(--secondary);
    bottom: -100px; left: -100px;
}

.legal-content-section {
    padding: 40px 0 100px;
    position: relative;
    z-index: 2;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(24, 27, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-container p {
    margin-bottom: 24px;
}

.legal-container strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 60px;
    }
    .legal-hero-text h1 {
        font-size: 2.5rem;
    }
    .legal-container {
        padding: 30px 20px;
    }
}
