The file /Users/neog/Apps/macOS/NEOG-Finance/Sources/NEOGFinance/Models/Budget.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 26→ var remaining: Double { 27→ max(0, limit - spent) 28→ } 29→ 30→ var progress: Double { 31→ guard limit > 0 else { return 0 } 32→ return min(spent / limit, 1.0) 33→ } 34→ 35→ /// Progress real para exibição percentual (pode exceder 100%) 36→ var actualProgress: Double { 37→ guard limit > 0 else { return 0 } 38→ return spent / limit 39→ } 40→ 41→ var progressPercentage: String { 42→ String(format: "%.0f%%", min(actualProgress * 100, 999)) 43→ } 44→ 45→ var isOverBudget: Bool { 46→ spent > limit 47→ }