/* ===== LEGAL PAGES (Privacy Policy, Terms of Service) ===== */

.legal-content {
    padding: 80px 0 100px;
    background: var(--cream);
}

.legal-body {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.legal-effective {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 22px;
    color: var(--dados-blue);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--dados-blue);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(0, 75, 135, 0.3);
    text-underline-offset: 3px;
}

.legal-section a:hover {
    text-decoration-color: var(--dados-blue);
}

.legal-section ul {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.75;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--dados-gold);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--text-dark);
}

.legal-contact-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 16px;
}

.legal-contact-card p {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-contact-card p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .legal-body {
        padding: 36px 24px;
        border-radius: 12px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}
