The file /Users/neog/Apps/macOS/NEOG-Finance/Sources/NEOGFinance/Views/Income/IncomeGoalView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 168→ .background(AppTheme.Colors.cardBackground) 169→ .cornerRadius(AppTheme.Radius.large) 170→ } 171→ 172→ // MARK: - Quick Stats Row 173→ private var quickStatsRow: some View { 174→ HStack(spacing: AppTheme.Spacing.md) { 175→ IncomeStatCard( 176→ title: "Contatos", 177→ value: "\(leads.count)", 178→ icon: "person.2.fill", 179→ color: .blue 180→ ) 181→ 182→ IncomeStatCard( 183→ title: "Propostas", 184→ value: "\(leads.filter { $0.status == .proposal }.count)", 185→ icon: "doc.text.fill", 186→ color: .orange 187→ ) 188→ 189→ IncomeStatCard( 190→ title: "Fechados", 191→ value: "\(leads.filter { $0.status == .closed }.count)", 192→ icon: "checkmark.circle.fill", 193→ color: .green 194→ ) 195→ 196→ IncomeStatCard( 197→ title: "Taxa", 198→ value: leads.isEmpty ? "0%" : "\(Int(Double(leads.filter { $0.status == .closed }.count) / Double(leads.count) * 100))%", 199→ icon: "percent", 200→ color: .purple 201→ ) 202→ } 203→ } 204→ 205→ // MARK: - Tab Selector 206→ private var tabSelector: some View { 207→ HStack(spacing: 0) {