/* Estilos para Páginas de Política e Termos */

.policy-section {
    padding: 120px 0 60px;
    background-color: #f9f9f9;
    margin-top: 80px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
}

.policy-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 15px;
    color: #333;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #333;
}

.policy-content strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 0 40px;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 30px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }
}
