/* Privacy Page Styles */
.privacy-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.privacy-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.page-title {
    text-align: center;
    margin: 3rem 0;
    color: var(--primary-900);
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section h2 {
    color: var(--primary-900);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.privacy-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.privacy-section p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong {
    color: var(--secondary-color);
}

/* Specific contact/toc boxes for the privacy page */
.contact-info-privacy, /* Renomeado para evitar conflito com contact.css */
.table-of-contents {
    background: var(--light-bg, rgba(0,0,0,0.03)); /* Usando var se existir, ou fallback */
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-privacy p {
    margin-bottom: 0.5rem;
    /* Adicionado cor para garantir contraste */
    color: var(--text-color, #333); 
}

.consent-section {
    background: var(--accent-color);
    color: var(--btn-text);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.consent-section h3,
.consent-section p {
    color: var(--btn-text);
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }
}

.privacy-section p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong {
    color: var(--secondary-color);
}

.contact-info {
    background: rgba(0,0,0,0.03);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.consent-section {
    background: var(--accent-color);
    color: var(--btn-text);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.consent-section h3 {
    color: var(--btn-text);
    margin-bottom: 1rem;
}

.consent-section p {
    color: var(--btn-text);
    margin-bottom: 1rem;
}

.table-of-contents {
    background: rgba(0,0,0,0.03);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}



.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }
}