/**
 * CSS para página de Privacidade - seguindo padrão do site
 * Cores escuras para fundo claro do card
 */

/* Ajustes específicos para a página de privacidade */
.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section h4 {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.privacy-section p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #374151;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.privacy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Seção de contato */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.contact-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item p {
    color: #374151;
    margin: 0;
    font-size: 0.875rem;
}

/* Seção de direitos */
.rights-contact {
    background: #f9fafb;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid #374151;
    margin: 1rem 0;
}

.rights-contact h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rights-contact p {
    color: #374151;
}

.rights-contact ul {
    color: #374151;
}

.rights-contact li {
    color: #374151;
}

/* Última atualização */
.last-updated {
    background: #f9fafb;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-top: 2rem;
}

.last-updated p {
    color: #374151;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
    }
}