/* Estilos específicos para páginas de políticas */
.policy-page {
    padding: 120px 0 80px;
    background: #f9fafb;
    min-height: 100vh;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

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

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

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

.policy-section li strong {
    color: #1f2937;
    font-weight: 600;
}

.policy-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Responsividade para páginas de políticas */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}
