sinapse-ai 9.3.0 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) hide show
  1. package/.claude/CLAUDE.md +56 -343
  2. package/.claude/rules/agent-authority.md +6 -0
  3. package/.claude/rules/agent-handoff.md +5 -0
  4. package/.claude/rules/cross-squad-routing.md +5 -0
  5. package/.claude/rules/hook-governance.md +6 -0
  6. package/.claude/rules/mcp-usage.md +3 -1
  7. package/.claude/rules/safe-collaboration.md +10 -0
  8. package/.claude/rules/security-data-protection.md +9 -0
  9. package/.claude/rules/squad-awareness.md +3 -1
  10. package/.claude/rules/tool-examples.md +6 -0
  11. package/.claude/rules/workflow-execution.md +7 -0
  12. package/.codex/agents/analyst.md +253 -72
  13. package/.codex/agents/architect.md +455 -68
  14. package/.codex/agents/data-engineer.md +492 -106
  15. package/.codex/agents/developer.md +560 -0
  16. package/.codex/agents/devops.md +518 -69
  17. package/.codex/agents/product-lead.md +335 -0
  18. package/.codex/agents/project-lead.md +377 -0
  19. package/.codex/agents/quality-gate.md +449 -0
  20. package/.codex/agents/sinapse-orqx.md +9 -7
  21. package/.codex/agents/sprint-lead.md +287 -0
  22. package/.codex/agents/squad-creator.md +344 -0
  23. package/.codex/agents/ux-design-expert.md +495 -0
  24. package/.codex/delegation-matrix.json +756 -44
  25. package/.codex/handoff-packet.schema.json +30 -6
  26. package/.sinapse-ai/data/entity-registry.yaml +175 -363
  27. package/.sinapse-ai/data/registry-update-log.jsonl +16 -0
  28. package/.sinapse-ai/development/agents/analyst.md +90 -0
  29. package/.sinapse-ai/development/agents/architect.md +73 -0
  30. package/.sinapse-ai/development/agents/developer.md +69 -0
  31. package/.sinapse-ai/development/agents/devops.md +117 -0
  32. package/.sinapse-ai/development/agents/quality-gate.md +85 -0
  33. package/.sinapse-ai/development/checklists/agent-quality-gate.md +27 -0
  34. package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +20 -0
  35. package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
  36. package/.sinapse-ai/development/checklists/issue-triage-checklist.md +9 -0
  37. package/.sinapse-ai/development/checklists/memory-audit-checklist.md +16 -0
  38. package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
  39. package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
  40. package/.sinapse-ai/development/checklists/self-critique-checklist.md +19 -1
  41. package/.sinapse-ai/development/skills/debug.md +57 -0
  42. package/.sinapse-ai/development/skills/fast-review.md +69 -0
  43. package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
  44. package/.sinapse-ai/development/skills/security-scan.md +73 -0
  45. package/.sinapse-ai/development/skills/verify.md +53 -0
  46. package/.sinapse-ai/development/templates/squad/agent-template.md +17 -4
  47. package/.sinapse-ai/development/templates/squad/checklist-template.md +13 -5
  48. package/.sinapse-ai/development/templates/squad/task-template.md +7 -0
  49. package/.sinapse-ai/development/templates/squad/workflow-template.yaml +7 -0
  50. package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
  51. package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
  52. package/.sinapse-ai/install-manifest.yaml +71 -35
  53. package/docs/codex-integration-process.md +22 -0
  54. package/docs/codex-parity-program.md +27 -0
  55. package/docs/ide-integration.md +36 -0
  56. package/package.json +1 -1
  57. package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
  58. package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
  59. package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
  60. package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
  61. package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
  62. package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
  63. package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
  64. package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
  65. package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
  66. package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
  67. package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
  68. package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
  69. package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
  70. package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
  71. package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
  72. package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
  73. package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
  74. package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
  75. package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
  76. package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
  77. package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
  78. package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
  79. package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
  80. package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
  81. package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
  82. package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
  83. package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
  84. package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
  85. package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
  86. package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
  87. package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
  88. package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
  89. package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
  90. package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
  91. package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
  92. package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
  93. package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
  94. package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
  95. package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
  96. package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
  97. package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
  98. package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
  99. package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
  100. package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
  101. package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
  102. package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
  103. package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
  104. package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
  105. package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
  106. package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
  107. package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
  108. package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
  109. package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
  110. package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
  111. package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
  112. package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
  113. package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
  114. package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
  115. package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
  116. package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
  117. package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
  118. package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
  119. package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
  120. package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
  121. package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
  122. package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
  123. package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
  124. package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
  125. package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
  126. package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
  127. package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
  128. package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
  129. package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
  130. package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
  131. package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
  132. package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
  133. package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
  134. package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
  135. package/squads/squad-design/knowledge-base/design-systems-frameworks.md +91 -1
  136. package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
  137. package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
  138. package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
  139. package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
  140. package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
  141. package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
  142. package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
  143. package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
  144. package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
  145. package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
  146. package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
  147. package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
  148. package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
  149. package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
  150. package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
  151. package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
  152. package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
  153. package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
  154. package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
  155. package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
  156. package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
  157. package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
  158. package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
  159. package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
  160. package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
  161. package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
  162. package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
  163. package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
  164. package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
  165. package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
  166. package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
  167. package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
  168. package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
  169. package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
  170. package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
  171. package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
  172. package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
  173. package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
  174. package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
  175. package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
  176. package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
  177. package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
  178. package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
  179. package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
  180. package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
  181. package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
  182. package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
  183. package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
  184. package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
  185. package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
  186. package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
  187. package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
  188. package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
  189. package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
  190. package/squads/claude-code-mastery/data/swarm-orchestration-patterns.yaml +0 -378
  191. package/squads/squad-animations/knowledge-base/framer-motion-complete-reference.md +0 -710
  192. package/squads/squad-animations/knowledge-base/web-animations-api-view-transitions.md +0 -478
@@ -0,0 +1,998 @@
1
+ # Contabilidade Master Reference
2
+
3
+ > **Source:** MS-012 Contabilidade Research (2026-04-06, verified 2026-04-07)
4
+ > **Scope:** Financial Accounting (IFRS/CPC), Tax Accounting (Simples/Presumido/Real), Tax Reform (CBS/IBS), Auditing (COSO), Digital (SPED/eSocial), Forensic (Benford), Cost Accounting (ABC), Strategic Accounting
5
+ > **Context:** Brazilian market + international best practices (70+ sources)
6
+
7
+ ---
8
+
9
+ ## 1. The 10 Accounting Systems
10
+
11
+ | # | System | Focus | Primary Users |
12
+ |---|--------|-------|--------------|
13
+ | 1 | Financial Accounting | External reporting, statements | Investors, CVM, Receita |
14
+ | 2 | Management Accounting | Internal decisions, planning | Managers, C-Level |
15
+ | 3 | Tax Accounting | Fiscal compliance, planning | Tax authorities, consultants |
16
+ | 4 | Controllership | KPIs, BSC, performance | Controllers, CFO |
17
+ | 5 | Auditing | Assurance of reliability | Auditors, stakeholders |
18
+ | 6 | Digital Accounting | Automation, ERP, AI | IT, accountants |
19
+ | 7 | Forensic Accounting | Fraud investigation | Experts, prosecutors |
20
+ | 8 | International Accounting | IFRS, consolidation, currencies | Multinationals, CVM |
21
+ | 9 | Cost Accounting | Costing, price formation | Industry, managers |
22
+ | 10 | Strategic Accounting | Strategic cost management | Board, strategists |
23
+
24
+ ---
25
+
26
+ ## 2. Financial Accounting (IFRS/CPC)
27
+
28
+ ### 2.1 Mandatory Statements (Brazil)
29
+
30
+ | Statement | Abbreviation | CPC | IFRS |
31
+ |-----------|-------------|-----|------|
32
+ | Balance Sheet | BP | CPC 26 (R1) | IAS 1 |
33
+ | Income Statement | DRE | CPC 26 (R1) | IAS 1 |
34
+ | Comprehensive Income | DRA | CPC 26 (R1) | IAS 1 |
35
+ | Changes in Equity | DMPL | CPC 26 (R1) | IAS 1 |
36
+ | Cash Flow Statement | DFC | CPC 03 (R2) | IAS 7 |
37
+ | Value Added Statement | DVA | CPC 09 | N/A (Brazil only) |
38
+ | Notes | NE | CPC 26 (R1) | IAS 1 |
39
+
40
+ ### 2.2 IFRS and CPC Framework
41
+
42
+ IFRS issued by IASB (London), adopted by 140+ jurisdictions. Brazil adopted fully since 2010 via CPC (committee of 6 entities: CFC, CVM, FIPECAFI, IBRACON, ABRASCA, APIMEC).
43
+
44
+ **Key mappings:**
45
+
46
+ | IFRS | CPC | Topic |
47
+ |------|-----|-------|
48
+ | IFRS 15 | CPC 47 | Revenue from Contracts with Customers |
49
+ | IFRS 16 | CPC 06 (R2) | Leases |
50
+ | IFRS 9 | CPC 48 | Financial Instruments |
51
+ | IFRS 17 | CPC 50 | Insurance Contracts |
52
+ | IAS 36 | CPC 01 (R1) | Impairment |
53
+ | IAS 12 | CPC 32 | Income Taxes |
54
+
55
+ ### 2.3 IFRS 18 / CPC 51 -- New Income Statement (2025-2027)
56
+
57
+ Published by IASB April 2024, replaces IAS 1. Brazilian equivalent: CPC 51 (replaces CPC 26 R1).
58
+
59
+ **Key changes:**
60
+ 1. **Mandatory DRE categories:** Operating, Investing, Financing
61
+ 2. **Management Performance Measures (MPMs):** Non-GAAP metrics must be reconciled
62
+ 3. **Mandatory subtotals:** Operating profit and profit before financing
63
+ 4. **Aggregation/disaggregation:** Clearer rules on what can be grouped
64
+
65
+ **Timeline:**
66
+ - Mandatory for periods starting on/after Jan 1, 2027 (CVM Res. 237/238, Dec/2025)
67
+ - Early adoption permitted
68
+ - Retrospective application required (2027 statements must restate 2026 comparatives)
69
+ - No cumulative impact on reserves (presentation change, not recognition)
70
+
71
+ ### 2.4 Revenue Recognition -- CPC 47 / IFRS 15
72
+
73
+ **5-step model:**
74
+ 1. Identify the contract with the customer
75
+ 2. Identify performance obligations
76
+ 3. Determine transaction price (including variable consideration)
77
+ 4. Allocate price to performance obligations
78
+ 5. Recognize revenue when (or as) each obligation is satisfied
79
+
80
+ **Major impact:** SaaS, construction, telecom, long-term contracts.
81
+
82
+ ### 2.5 US GAAP vs IFRS
83
+
84
+ | Aspect | IFRS | US GAAP |
85
+ |--------|------|---------|
86
+ | Approach | Principles-based | Rules-based |
87
+ | Inventories | FIFO and weighted avg (LIFO prohibited) | FIFO, weighted avg, LIFO allowed |
88
+ | Development costs | Capitalize if criteria met | Expense immediately (except software) |
89
+ | Impairment reversal | Allowed | Prohibited (except securities) |
90
+ | Adoption | 140+ jurisdictions | Primarily USA |
91
+
92
+ ### 2.6 IFRS S1/S2 -- Sustainability Reporting
93
+
94
+ - Mandatory from Jan 1, 2026 for Brazilian listed companies (CVM Res. 193/23)
95
+ - Brazil was the first country to adopt ISSB standards
96
+ - IFRS S1: general sustainability risks/opportunities
97
+ - IFRS S2: climate risks (Scopes 1, 2, and 3 GHG emissions)
98
+
99
+ ---
100
+
101
+ ## 3. Management Accounting
102
+
103
+ ### 3.1 Budget Types
104
+
105
+ | Type | Description | Best For |
106
+ |------|-------------|----------|
107
+ | Static | Fixed for the period | Stable environments |
108
+ | Flexible | Adjusts to actual volume | Manufacturing, retail |
109
+ | Zero-Based (ZBB) | Every expense justified from zero | Restructurings, cost cuts |
110
+ | Rolling Forecast | Continuous 12-18 month projection | Volatile environments, startups |
111
+ | Beyond Budgeting | No fixed budget, relative targets | Agile, decentralized orgs |
112
+
113
+ ### 3.2 Unit Economics
114
+
115
+ | Metric | Formula | What It Measures |
116
+ |--------|---------|-----------------|
117
+ | CAC | Marketing+Sales Cost / New Customers | Acquisition cost |
118
+ | LTV | ARPU x Gross Margin x Avg Lifetime | Customer lifetime value |
119
+ | LTV/CAC | LTV / CAC | Acquisition efficiency (>3x ideal) |
120
+ | Payback | CAC / (ARPU x Gross Margin) | Time to recover investment |
121
+ | Churn | Lost Customers / Total Customers | Loss rate |
122
+ | ARPU | Total Revenue / Total Customers | Average revenue per user |
123
+ | Contribution Margin | Revenue - Variable Costs | Unit contribution |
124
+
125
+ ### 3.3 Break-Even Analysis
126
+
127
+ ```
128
+ Break-Even (units) = Total Fixed Costs / Contribution Margin per Unit
129
+ Break-Even (revenue) = Total Fixed Costs / Contribution Margin %
130
+
131
+ Types:
132
+ - Accounting: covers fixed + variable costs (profit = 0)
133
+ - Financial: excludes depreciation (cash flow = 0)
134
+ - Economic: includes opportunity cost of capital
135
+ ```
136
+
137
+ ### 3.4 Trends
138
+
139
+ - Rolling Forecast replacing static annual budgets
140
+ - Beyond Budgeting in tech companies
141
+ - Generative AI for scenario simulation and predictive analysis
142
+ - Self-service analytics -- interactive dashboards for non-financial managers
143
+ - Real-time management accounting with cloud ERPs
144
+
145
+ ---
146
+
147
+ ## 4. Tax Accounting (Contabilidade Tributaria)
148
+
149
+ ### 4.1 The Three Tax Regimes
150
+
151
+ #### Simples Nacional
152
+
153
+ | Feature | Detail |
154
+ |---------|--------|
155
+ | Eligibility | ME/EPP (revenue up to R$4.8M/year) |
156
+ | Unified taxes | IRPJ, CSLL, PIS, COFINS, CPP, ICMS, ISS, IPI |
157
+ | Collection | Monthly via DAS |
158
+ | Rates | Progressive by bracket (Annexes I to V) |
159
+ | Advantage | Simplicity, lower burden for initial brackets |
160
+ | Disadvantage | No ICMS/PIS/COFINS credits |
161
+
162
+ **Annexes:**
163
+
164
+ | Annex | Activity | Initial Rate | Maximum Rate |
165
+ |-------|----------|-------------|-------------|
166
+ | I | Commerce | 4.0% | 19.0% |
167
+ | II | Industry | 4.5% | 30.0% |
168
+ | III | Services (mixed) | 6.0% | 33.0% |
169
+ | IV | Services (construction, law) | 4.5% | 33.0% |
170
+ | V | Services (tech, consulting) | 15.5% | 30.5% |
171
+
172
+ **R Factor:** Companies with payroll >= 28% of revenue can use Annex III (lower) instead of Annex V.
173
+
174
+ #### Lucro Presumido
175
+
176
+ | Feature | Detail |
177
+ |---------|--------|
178
+ | Eligibility | Revenue up to R$78M/year |
179
+ | Calculation | Presumed percentage on gross revenue |
180
+ | IRPJ | 15% + 10% surcharge (profit > R$20K/month) |
181
+ | CSLL | 9% on presumed base |
182
+ | PIS | 0.65% (cumulative) |
183
+ | COFINS | 3.0% (cumulative) |
184
+
185
+ **Presumption percentages (IRPJ):**
186
+
187
+ | Activity | Presumption |
188
+ |----------|------------|
189
+ | Commerce/Industry | 8% |
190
+ | Services (general) | 32% |
191
+ | Cargo transport | 8% |
192
+ | Passenger transport | 16% |
193
+ | Hospital services | 8% |
194
+
195
+ **2026 changes (LC 224/2025):**
196
+ - Revenue > R$5M/year: 10% increase in presumption percentages on excess (e.g., services: 32% -> 35.2% on excess)
197
+ - Estimated impact: up to 1.73% increase in combined IRPJ+CSLL
198
+ - Progressive hollowing-out of presumed profit as competitive option
199
+
200
+ #### Lucro Real
201
+
202
+ | Feature | Detail |
203
+ |---------|--------|
204
+ | Eligibility | Mandatory for revenue > R$78M/year |
205
+ | Calculation | Adjusted accounting profit (additions and exclusions) |
206
+ | IRPJ | 15% + 10% surcharge |
207
+ | CSLL | 9% |
208
+ | PIS | 1.65% (non-cumulative, with credits) |
209
+ | COFINS | 7.6% (non-cumulative, with credits) |
210
+ | Assessment | Quarterly or annual (with monthly advances) |
211
+ | LALUR | Mandatory tax adjustment book |
212
+
213
+ ### 4.2 Tax Summary
214
+
215
+ #### Federal Taxes
216
+
217
+ | Tax | Base | Typical Rate |
218
+ |-----|------|-------------|
219
+ | IRPJ | Profit | 15% + 10% surcharge |
220
+ | CSLL | Profit | 9% |
221
+ | PIS | Revenue | 0.65% (cum.) / 1.65% (non-cum.) |
222
+ | COFINS | Revenue | 3% (cum.) / 7.6% (non-cum.) |
223
+ | IPI | Manufactured products | Variable (0-300%) |
224
+ | IOF | Financial operations | Variable |
225
+
226
+ #### State Taxes
227
+
228
+ | Tax | Base | Rate |
229
+ |-----|------|------|
230
+ | ICMS | Goods and services | 7-35% (varies by state/product) |
231
+ | ITCMD | Inheritance and gifts | Up to 8% |
232
+
233
+ #### Municipal Taxes
234
+
235
+ | Tax | Base | Rate |
236
+ |-----|------|------|
237
+ | ISS | Services | 2-5% |
238
+ | IPTU | Urban property | Varies |
239
+ | ITBI | Real estate transfer | Varies |
240
+
241
+ ### 4.3 Tax Reform (EC 132/2023 + LC 214/2025 + LC 224/2025)
242
+
243
+ **5 taxes extinguished -> 3 new:**
244
+ - **CBS** (federal) -> replaces PIS, COFINS, IPI
245
+ - **IBS** (state/municipal) -> replaces ICMS, ISS
246
+ - **IS** (Selective Tax) -> goods harmful to health/environment
247
+
248
+ **Transition timeline:**
249
+
250
+ | Year | Event |
251
+ |------|-------|
252
+ | 2026 | Test phase: CBS 0.9% + IBS 0.1% (informational, no collection) |
253
+ | 2027 | CBS effective (~8.8%). PIS/COFINS extinguished. IS effective |
254
+ | 2028 | CBS adjustments and consolidation |
255
+ | 2029 | IBS begins: ICMS/ISS reduced to 9/10, IBS covers 1/10 |
256
+ | 2030 | ICMS/ISS at 8/10, IBS at 2/10 |
257
+ | 2031 | ICMS/ISS at 7/10, IBS at 3/10 |
258
+ | 2032 | ICMS/ISS at 6/10, IBS at 4/10 |
259
+ | 2033 | ICMS/ISS extinguished. IBS fully effective (~17.7%) |
260
+
261
+ **Combined reference rate: ~26.5%** (CBS ~8.8% + IBS ~17.7%) -- among the highest IVA rates globally (EU avg: 21%, OECD avg: 19%).
262
+
263
+ **Accounting impacts:**
264
+ - Complete redesign of accounting controls
265
+ - New bookkeeping and assessment methods
266
+ - Broad financial credit (every acquisition generates credit)
267
+ - Split payment (automatic collection at payment time)
268
+ - Cashback for low-income population
269
+ - Updated ERP systems required
270
+
271
+ ---
272
+
273
+ ## 5. Controllership
274
+
275
+ ### 5.1 Balanced Scorecard (BSC)
276
+
277
+ Created by Robert Kaplan and David Norton (1992). Translates strategy into performance indicators across 4 perspectives:
278
+
279
+ | Perspective | Key Question | KPI Examples |
280
+ |-------------|-------------|-------------|
281
+ | Financial | "How do we look to shareholders?" | ROE, EBITDA, EVA, net margin |
282
+ | Customer | "How do customers see us?" | NPS, market share, churn, satisfaction |
283
+ | Internal Processes | "What must we excel at?" | Lead time, defect rate, OEE |
284
+ | Learning & Growth | "How can we keep improving?" | R&D investment, turnover, training hours |
285
+
286
+ **Strategy Map:** Cause-effect across perspectives. Training (learning) -> better processes (internal) -> higher satisfaction (customer) -> more revenue (financial).
287
+
288
+ ### 5.2 Financial KPIs
289
+
290
+ | KPI | Formula | Benchmark |
291
+ |-----|---------|-----------|
292
+ | EBITDA | Operating Profit + D&A | Sector-specific |
293
+ | EBITDA Margin | EBITDA / Net Revenue x 100 | >15% healthy |
294
+ | ROE | Net Income / Avg Equity x 100 | >15% |
295
+ | ROA | Net Income / Avg Total Assets x 100 | >5% |
296
+ | ROIC | NOPAT / Invested Capital x 100 | >WACC |
297
+ | EVA | NOPAT - (Invested Capital x WACC) | >0 (creates value) |
298
+ | Current Ratio | Current Assets / Current Liabilities | >1.5 |
299
+ | Debt Ratio | Total Liabilities / Total Assets x 100 | <60% |
300
+ | Asset Turnover | Net Revenue / Avg Total Assets | Sector-specific |
301
+ | Financial Cycle | DSO + DIO - DPO | Lower = better |
302
+
303
+ ### 5.3 Cost Centers
304
+
305
+ | Type | Description | Example |
306
+ |------|-------------|---------|
307
+ | Productive | Direct contribution to product/service | Assembly line |
308
+ | Support | Supports productive centers | Maintenance, warehouse |
309
+ | Administrative | Management areas | HR, finance, legal |
310
+ | Commercial | Sales and marketing | Sales team, advertising |
311
+
312
+ ### 5.4 Trends
313
+
314
+ - Continuous Planning replacing annual cycles
315
+ - AI-powered forecasting
316
+ - FP&A as strategic function
317
+ - xP&A (Extended Planning & Analysis) -- beyond financial
318
+ - ESG metrics integrated into BSC (5th perspective)
319
+
320
+ ---
321
+
322
+ ## 6. Auditing
323
+
324
+ ### 6.1 Internal vs External
325
+
326
+ | Aspect | Internal | External |
327
+ |--------|----------|----------|
328
+ | Relationship | Company employee | Independent firm |
329
+ | Objective | Improve operations and controls | Opine on financial statements |
330
+ | Audience | Management, audit committee | Shareholders, market |
331
+ | Regulation | IIA | IAASB (ISA), CVM, CFC |
332
+ | Frequency | Continuous | Annual |
333
+ | Scope | Broad (operational, compliance, IT) | Financial statements |
334
+
335
+ ### 6.2 COSO Framework
336
+
337
+ **COSO ICIF (Internal Control -- Integrated Framework, 2013):**
338
+
339
+ | Component | Description | Principles |
340
+ |-----------|-------------|-----------|
341
+ | Control Environment | Leadership tone, ethics, governance | 1-5 |
342
+ | Risk Assessment | Identify and evaluate risks | 6-9 |
343
+ | Control Activities | Policies and procedures | 10-12 |
344
+ | Information & Communication | Information quality | 13-15 |
345
+ | Monitoring | Continuous and point-in-time evaluation | 16-17 |
346
+
347
+ **COSO ERM (Enterprise Risk Management, 2017):**
348
+ Evolution to corporate risk management with 5 components and 20 principles, integrating strategy with risk management.
349
+
350
+ ### 6.3 ISA / NBC TA Mapping
351
+
352
+ | ISA | NBC TA | Topic |
353
+ |-----|--------|-------|
354
+ | ISA 200 | NBC TA 200 | General objectives of the auditor |
355
+ | ISA 240 | NBC TA 240 | Responsibility for fraud |
356
+ | ISA 315 | NBC TA 315 | Identifying misstatement risks |
357
+ | ISA 330 | NBC TA 330 | Auditor's response to risks |
358
+ | ISA 500 | NBC TA 500 | Audit evidence |
359
+ | ISA 700 | NBC TA 700 | Forming an opinion |
360
+ | ISA 701 | NBC TA 701 | Key Audit Matters (KAM) |
361
+
362
+ ### 6.4 Continuous Auditing
363
+
364
+ - **Continuous monitoring** -- automated indicator tracking
365
+ - **Continuous data assurance** -- automatic data validation
366
+ - **Exception reporting** -- automatic anomaly alerts
367
+ - **Data analytics** -- 100% transaction analysis (vs. traditional sampling)
368
+
369
+ Tools: ACL, IDEA, CaseWare Analytics, Power BI with audit models.
370
+
371
+ ### 6.5 Big Four in Brazil
372
+
373
+ | Firm | Since | Notable Clients |
374
+ |------|-------|----------------|
375
+ | Deloitte | 1911 | Petrobras, Ambev, Magazine Luiza |
376
+ | EY | 1930 | Itau, Vale, JBS |
377
+ | KPMG | 1945 | Bradesco, Natura, Embraer |
378
+ | PwC | 1915 | Banco do Brasil, Gerdau, Eletrobras |
379
+
380
+ ### 6.6 Trends
381
+
382
+ - AI audit -- 100% data analysis, anomaly detection
383
+ - Blockchain audit trails -- immutable, verifiable records
384
+ - ESG assurance -- sustainability report auditing
385
+ - Continuous auditing as standard for large corporations
386
+
387
+ ---
388
+
389
+ ## 7. Digital Accounting & Automation
390
+
391
+ ### 7.1 ERP Landscape (Brazil)
392
+
393
+ | ERP | Target | Highlight |
394
+ |-----|--------|-----------|
395
+ | SAP S/4HANA | Large enterprises | ~24% global market share, FI/CO module |
396
+ | TOTVS Protheus | Most used in Brazil | ~50% Brazilian market, native SPED/eSocial |
397
+ | Oracle NetSuite | Mid-market | Cloud-native, strong in SaaS |
398
+ | Omie | SMEs | Modern interface, API-first |
399
+ | Bling | Micro/small | E-commerce integrated |
400
+ | Conta Azul | MEI/ME | Simplicity |
401
+ | Sankhya | Mid-market | Flexibility |
402
+
403
+ ### 7.2 RPA in Accounting
404
+
405
+ | Process | RPA Automation |
406
+ |---------|---------------|
407
+ | Bank reconciliation | Automatic cross-matching statements vs. entries |
408
+ | Journal entries | Automatic classification and posting of invoices |
409
+ | Accessory obligations | Auto-generation and submission of SPED, DCTFWeb |
410
+ | Accounts payable | Invoice processing, approvals, payments |
411
+ | Monthly close | Automation of closing routines |
412
+
413
+ Tools: UiPath, Automation Anywhere, Blue Prism, Power Automate.
414
+
415
+ ### 7.3 AI in Accounting (2025-2026)
416
+
417
+ | Application | Technology | Maturity |
418
+ |------------|-----------|----------|
419
+ | Entry classification | Machine Learning | High |
420
+ | Anomaly detection | Deep Learning | Medium-High |
421
+ | Cash flow forecasting | Time Series / ML | Medium |
422
+ | Document reading (OCR) | Computer Vision + NLP | High |
423
+ | Accounting chatbots | LLMs (GPT, Claude) | Medium |
424
+ | Tax simulation | Generative AI | Emerging |
425
+ | Automated auditing | Data Analytics + ML | Medium |
426
+
427
+ **Generative AI applications:**
428
+ - Automatic generation of explanatory notes
429
+ - Accounting standards analysis and interpretation
430
+ - Tax scenario simulation
431
+ - Virtual assistants for tax queries
432
+ - Narrative management report generation
433
+
434
+ ### 7.4 SPED (Sistema Publico de Escrituracao Digital)
435
+
436
+ Brazil's reference project for electronic tax administration (Decree 6.022/2007).
437
+
438
+ | Module | Content | Frequency |
439
+ |--------|---------|-----------|
440
+ | ECD | Digital accounting books | Annual (May) |
441
+ | ECF | LALUR, IRPJ/CSLL assessment | Annual (July) |
442
+ | EFD ICMS/IPI | ICMS/IPI fiscal records | Monthly |
443
+ | EFD Contribuicoes | PIS/PASEP and COFINS | Monthly |
444
+ | EFD-Reinf | Withholdings and information | Monthly/event |
445
+ | NFe | Electronic invoices | Per operation |
446
+ | CTe | Transport knowledge | Per operation |
447
+ | MDFe | Document manifest | Per trip |
448
+
449
+ **2026 version:** EFD ICMS/IPI gets PVA version 6.0.0 (mandatory from Jan/2026). Practical Guide updated to 3.2.2 (Mar/2026), with NFCom (model 62) fields. Joint Act CGIBS/RFB establishes CBS/IBS regulatory framework in SPED.
450
+
451
+ ### 7.5 eSocial
452
+
453
+ Digital bookkeeping system for fiscal, social security, and labor obligations. Unifies 15 accessory obligations.
454
+
455
+ **Event groups:**
456
+ - S-1000 to S-1080: Tables (positions, functions, schedules)
457
+ - S-2190 to S-2420: Non-periodic (hiring, termination, vacation)
458
+ - S-1200 to S-1299: Periodic (payroll, payments)
459
+ - S-2210 to S-2240: SST (Health and Safety at Work)
460
+
461
+ **Current version:** S-1.3 (mandatory since Jan/2025). Key changes:
462
+ - **DIRF extinction** -- from 2026, withholding info migrates to eSocial + EFD-Reinf (monthly)
463
+ - **CPF as exclusive identifier** -- progressive substitution of other IDs
464
+ - **New SST fields** -- expanded health/safety requirements
465
+ - **Table 03 reformulation** -- new codes (1015, 1799, 1811)
466
+ - **Sectigo digital certificate** -- new security standard (production from Jun/2026)
467
+
468
+ ### 7.6 XBRL
469
+
470
+ eXtensible Business Reporting Language for machine-readable financial reporting.
471
+ - CVM adopted XBRL for form reception (since 2018)
472
+ - Brazilian taxonomy based on IFRS taxonomy
473
+ - Facilitates cross-company and cross-country comparability
474
+
475
+ ### 7.7 Trends
476
+
477
+ - BPaaS (Business Process as a Service) -- accounting as complete cloud service
478
+ - AI-as-a-Service -- subscription AI accounting
479
+ - Real-time accounting -- continuous close instead of monthly
480
+ - Blockchain for immutable audit trails
481
+ - Open Finance/Banking integrated with accounting
482
+ - Low-code/no-code for custom accounting automations
483
+
484
+ ---
485
+
486
+ ## 8. Forensic Accounting
487
+
488
+ ### 8.1 The Fraud Triangle (Donald Cressey)
489
+
490
+ ```
491
+ Pressure/Motivation
492
+ /\
493
+ / \
494
+ / FRAUD \
495
+ /________\
496
+ Opportunity Rationalization
497
+ ```
498
+
499
+ - **Pressure** -- financial problems, unrealistic targets, aggressive bonuses
500
+ - **Opportunity** -- weak controls, lack of supervision, inadequate segregation
501
+ - **Rationalization** -- "everyone does it," "just borrowing," "the company owes me"
502
+
503
+ ### 8.2 Benford's Law
504
+
505
+ In natural data sets, the distribution of first digits is NOT uniform:
506
+
507
+ | Digit | Expected Frequency |
508
+ |-------|-------------------|
509
+ | 1 | 30.1% |
510
+ | 2 | 17.6% |
511
+ | 3 | 12.5% |
512
+ | 4 | 9.7% |
513
+ | 5 | 7.9% |
514
+ | 6 | 6.7% |
515
+ | 7 | 5.8% |
516
+ | 8 | 5.1% |
517
+ | 9 | 4.6% |
518
+
519
+ **Application:** Financial data deviating significantly from Benford's distribution may indicate manipulation. Brazilian studies applied it to detect fraud in Bolsa Familia (210,899 contracts).
520
+
521
+ **Limitations:**
522
+ - Does not work with data restricted to narrow ranges (e.g., prices R$90-R$110)
523
+ - Deviation does not prove fraud -- indicates need for deeper investigation
524
+ - Requires large samples (>500 observations)
525
+
526
+ ### 8.3 Red Flags
527
+
528
+ **Financial Statements:**
529
+ - Revenue growth incompatible with market
530
+ - A/R growing faster than revenues
531
+ - Frequent accounting policy changes
532
+ - Undisclosed related-party transactions
533
+ - Inventory growing faster than sales
534
+ - Negative operating cash flow with growing profit
535
+
536
+ **Behavioral:**
537
+ - Lifestyle incompatible with compensation
538
+ - Resistance to vacations or role rotation
539
+ - Controls dependent on a single person
540
+ - Refusal of audits or information requests
541
+
542
+ **Operational:**
543
+ - Suppliers without verifiable physical address
544
+ - Payments in round numbers
545
+ - Duplicate payments
546
+ - Sequential invoices from same supplier
547
+
548
+ ### 8.4 Brazilian Anti-Corruption Law (12.846/2013)
549
+
550
+ - Objective liability (regardless of fault) for legal entities
551
+ - Fines: 0.1% to 20% of gross revenue
552
+ - Compliance program as mitigating factor
553
+ - Leniency agreement as collaboration instrument
554
+ - CGU as oversight body
555
+
556
+ ### 8.5 Investigation Tools
557
+
558
+ | Tool | Application |
559
+ |------|------------|
560
+ | Benford Analysis | Anomalous patterns in financial data |
561
+ | Data Mining | Hidden patterns in large data volumes |
562
+ | Network Analysis | Mapping relationships between entities |
563
+ | Text Mining | Analysis of emails, contracts, communications |
564
+ | Forensic Data Analytics | ACL, IDEA, Tableau |
565
+ | Blockchain Analysis | Crypto-asset tracing (Chainalysis, Elliptic) |
566
+
567
+ ### 8.6 Key Statistics
568
+
569
+ - Global fraud losses: ~5% of annual revenue (ACFE)
570
+ - Brazil Corruption Perception Index: 107th place, score 34/100 (worst since 2012, Transparency International 2024)
571
+
572
+ ---
573
+
574
+ ## 9. International Accounting
575
+
576
+ ### 9.1 IFRS Convergence Status (2026)
577
+
578
+ | Region | Status |
579
+ |--------|--------|
580
+ | European Union | Mandatory since 2005 |
581
+ | Brazil | Mandatory since 2010 (via CPC) |
582
+ | Canada | Mandatory since 2011 |
583
+ | Australia | Mandatory since 2005 |
584
+ | India | Ind-AS (convergent) since 2016 |
585
+ | China | CAS (substantially convergent) |
586
+ | Japan | Permitted (not mandatory) |
587
+ | USA | Does not adopt (US GAAP) |
588
+
589
+ 140+ jurisdictions require IFRS for listed entities. 166 jurisdictions permit/require IFRS for SMEs.
590
+
591
+ ### 9.2 Consolidation (CPC 36 / IFRS 10)
592
+
593
+ **Process:**
594
+ 1. Sum assets, liabilities, revenues, expenses (line by line)
595
+ 2. Eliminate investment in subsidiary vs. subsidiary equity
596
+ 3. Eliminate intercompany transactions and balances
597
+ 4. Recognize non-controlling interests
598
+ 5. Adjust for uniform accounting policies
599
+
600
+ **Methods:**
601
+
602
+ | Method | When | Standard |
603
+ |--------|------|----------|
604
+ | Full consolidation | Control (>50%) | CPC 36 / IFRS 10 |
605
+ | Equity method | Significant influence (20-50%) | CPC 18 / IAS 28 |
606
+ | Joint ventures | Joint control | CPC 19 / IFRS 11 |
607
+ | Fair value | Financial investments | CPC 48 / IFRS 9 |
608
+
609
+ ### 9.3 Currency Translation (IAS 21 / CPC 02)
610
+
611
+ | Element | Exchange Rate |
612
+ |---------|--------------|
613
+ | Assets and liabilities | Closing rate (spot) |
614
+ | Revenue and expenses | Average rate for the period |
615
+ | Equity | Historical rate |
616
+ | Translation difference | Other comprehensive income (OCI) |
617
+
618
+ ### 9.4 Transfer Pricing -- Law 14.596/2023
619
+
620
+ Brazil abandoned its old idiosyncratic system and aligned with OECD guidelines, adopting the Arm's Length Principle.
621
+
622
+ **Methods:**
623
+
624
+ | Method | Abbreviation | Description |
625
+ |--------|-------------|-------------|
626
+ | Comparable Uncontrolled Price | PIC | Compare with similar independent transactions |
627
+ | Resale Price minus Profit | PRL | Resale price minus adequate margin |
628
+ | Cost plus Profit | MCL | Cost plus adequate margin |
629
+ | Transactional Net Margin | MLT | Net margin of controlled transaction |
630
+ | Profit Split | MDL | Split profit based on contributions |
631
+
632
+ ### 9.5 Trends
633
+
634
+ - IFRS 18 (CPC 51) -- new statement presentation (2027)
635
+ - Pillar Two (OECD) -- 15% global minimum tax
636
+ - AI for automated consolidation and intercompany eliminations
637
+ - Real-time global consolidation (days, not weeks)
638
+
639
+ ---
640
+
641
+ ## 10. Cost Accounting
642
+
643
+ ### 10.1 Cost Classification
644
+
645
+ | Classification | Types | Examples |
646
+ |---------------|-------|---------|
647
+ | By behavior | Fixed, Variable, Semi-fixed, Semi-variable | Rent (fixed), raw material (variable) |
648
+ | By allocation | Direct, Indirect | Direct labor, electricity |
649
+ | By function | Production, Commercial, Administrative | Inputs, freight, accounting |
650
+ | By timing | Historical, Predetermined | Actual cost, standard cost |
651
+
652
+ ### 10.2 Costing Methods
653
+
654
+ #### Absorption Costing
655
+
656
+ All production costs (fixed and variable, direct and indirect) allocated to products.
657
+ - **Accepted by Brazilian tax law** (RIR/2018) and CPC/IFRS (IAS 2)
658
+ - Advantage: fiscal and corporate compliance
659
+ - Disadvantage: diluted fixed costs can distort profitability analysis
660
+
661
+ ```
662
+ Direct Costs -> Product
663
+ Indirect Costs -> Apportionment -> Product
664
+ Expenses -> Income Statement (period)
665
+ ```
666
+
667
+ #### Variable (Direct) Costing
668
+
669
+ Only variable costs allocated to products; fixed costs go to P&L.
670
+ - **NOT accepted for tax purposes in Brazil** (management only)
671
+ - Advantage: facilitates contribution margin analysis and short-term decisions
672
+ - Disadvantage: does not meet tax legislation
673
+
674
+ ```
675
+ Variable Costs -> Product
676
+ Fixed Costs -> Income Statement (period)
677
+ Expenses -> Income Statement (period)
678
+ ```
679
+
680
+ **Key difference:** In absorption costing, inventories "carry" fixed costs. If production > sales, profit is higher (fixed costs remain in inventory). Variable costing eliminates this effect.
681
+
682
+ #### ABC -- Activity-Based Costing
683
+
684
+ Developed by Robert Kaplan and Robin Cooper (1987-1991).
685
+
686
+ ```
687
+ Resources -> (Resource Drivers) -> Activities -> (Activity Drivers) -> Cost Objects
688
+ ```
689
+
690
+ **Process:**
691
+ 1. Identify relevant activities
692
+ 2. Assign resource costs to activities (resource drivers)
693
+ 3. Identify activity drivers
694
+ 4. Assign activity costs to cost objects
695
+
696
+ **Example:**
697
+
698
+ | Activity | Cost | Driver | Product A | Product B |
699
+ |----------|------|--------|-----------|-----------|
700
+ | Machine setup | R$100K | Number of setups | 10 | 40 |
701
+ | Inspection | R$50K | Inspection hours | 100h | 400h |
702
+ | Purchasing | R$30K | Purchase orders | 20 | 80 |
703
+
704
+ - Advantage: more accurate in high-diversity, high-indirect-cost environments
705
+ - Disadvantage: high implementation and maintenance cost
706
+
707
+ #### Standard Costing
708
+
709
+ Predetermined cost based on normal efficiency conditions.
710
+ - Types: Ideal (theoretical), Estimated (expected actual), Current (attainable)
711
+
712
+ **Variance analysis:**
713
+
714
+ | Variance | Formula |
715
+ |----------|---------|
716
+ | Material Price | (Actual Price - Standard Price) x Actual Qty |
717
+ | Material Quantity | (Actual Qty - Standard Qty) x Standard Price |
718
+ | Labor Rate | (Actual Rate - Standard Rate) x Actual Hours |
719
+ | Labor Efficiency | (Actual Hours - Standard Hours) x Standard Rate |
720
+
721
+ ### 10.3 Trends
722
+
723
+ - **TDABC (Time-Driven ABC)** -- simplified version (Kaplan & Anderson)
724
+ - **AI-based cost allocation** -- ML to identify drivers
725
+ - **Real-time costing** -- IoT + ERP for live cost calculation
726
+ - **Lean Accounting** -- aligned with Lean Manufacturing
727
+ - **RCA (Resource Consumption Accounting)** -- alternative to ABC focused on resources
728
+
729
+ ---
730
+
731
+ ## 11. Strategic Accounting
732
+
733
+ ### 11.1 Three Pillars of Strategic Cost Management (Shank & Govindarajan)
734
+
735
+ #### Value Chain Analysis
736
+
737
+ Decompose all activities (company, suppliers, customers) to identify where value is created and costs incurred.
738
+
739
+ **Porter's Value Chain:**
740
+ ```
741
+ Primary Activities:
742
+ [Inbound Logistics] -> [Operations] -> [Outbound Logistics] -> [Marketing & Sales] -> [Service]
743
+
744
+ Support Activities:
745
+ [Infrastructure] | [HR Management] | [Technology Development] | [Procurement]
746
+ ```
747
+
748
+ #### Strategic Positioning Analysis
749
+
750
+ | Strategy | Accounting Focus | Priority Metrics |
751
+ |----------|-----------------|-----------------|
752
+ | Cost Leadership | Cost reduction, efficiency, scale | Unit cost, OEE, economies of scale |
753
+ | Differentiation | Value investment, innovation | R&D/revenue, premium pricing, brand value |
754
+ | Focus | Specific niche, customization | Margin by segment, cost-to-serve |
755
+
756
+ #### Cost Driver Analysis
757
+
758
+ **Structural drivers:** scale, scope, experience (learning curve), technology, portfolio complexity.
759
+
760
+ **Execution drivers:** participative management, TQM, capacity utilization, layout efficiency, product configuration, supplier/customer linkages.
761
+
762
+ ### 11.2 Target Costing (Genka Kikaku)
763
+
764
+ ```
765
+ Target Cost = Market Price - Desired Margin
766
+ ```
767
+
768
+ **Process:**
769
+ 1. Research acceptable market price
770
+ 2. Define desired profit margin
771
+ 3. Calculate target cost
772
+ 4. Design product to achieve target cost
773
+ 5. If projected cost > target -> redesign (value engineering)
774
+
775
+ Intensive use in: automotive (Toyota), electronics, consumer goods.
776
+
777
+ ### 11.3 Kaizen Costing
778
+
779
+ Complements target costing in the production phase. Sets periodic cost reduction targets:
780
+
781
+ ```
782
+ Kaizen Target Cost = Current Actual Cost - Reduction Target
783
+ ```
784
+
785
+ Principle: small continuous improvements yield large results over time.
786
+
787
+ ### 11.4 Lifecycle Costing
788
+
789
+ | Phase | Costs Included |
790
+ |-------|---------------|
791
+ | R&D and Design | Research, prototyping, testing |
792
+ | Production | Materials, labor, overhead |
793
+ | Distribution | Logistics, warehousing, marketing |
794
+ | Customer Use | Maintenance, energy consumption |
795
+ | Disposal | Recycling, decommissioning |
796
+
797
+ **Insight:** 80-90% of lifecycle costs are determined at the design phase.
798
+
799
+ ### 11.5 Throughput Accounting (TOC -- Goldratt)
800
+
801
+ | Metric | Definition |
802
+ |--------|-----------|
803
+ | Throughput | Revenue - Totally Variable Costs |
804
+ | Investment | Money tied up in the system (inventory, equipment) |
805
+ | Operating Expense | Money spent to convert investment into throughput |
806
+
807
+ **Decision rule:** Prioritize products/orders that maximize throughput per unit of constraint.
808
+
809
+ ---
810
+
811
+ ## 12. Historical Timeline
812
+
813
+ | Year | Milestone |
814
+ |------|-----------|
815
+ | 1494 | Luca Pacioli publishes "Summa de Arithmetica" -- double-entry bookkeeping |
816
+ | 1850 | Brazilian Commercial Code -- mandatory bookkeeping |
817
+ | 1946 | CFC (Federal Accounting Council) created |
818
+ | 1976 | Law 6.404 (Corporations Act) -- revolutionizes corporate accounting |
819
+ | 1987 | Kaplan & Cooper publish on ABC |
820
+ | 1992 | Kaplan & Norton launch the Balanced Scorecard |
821
+ | 2005 | CPC (Accounting Pronouncements Committee) created |
822
+ | 2007 | Law 11.638 -- beginning of IFRS convergence in Brazil |
823
+ | 2007 | SPED -- mandatory digital bookkeeping begins |
824
+ | 2010 | Full IFRS adoption by Brazilian listed companies |
825
+ | 2023 | Law 14.596 -- new transfer pricing rules (OECD-aligned) |
826
+ | 2024 | IFRS 18 published by IASB |
827
+ | 2025 | LC 214/2025 (CBS/IBS). LC 224/2025 (Lucro Presumido changes). CPC 51 approved. eSocial S-1.3 mandatory |
828
+ | 2026 | CBS/IBS test phase. IFRS S1/S2 mandatory (CVM 193/23). DIRF definitively extinguished |
829
+ | 2027 | CBS effective (~8.8%). IS effective. PIS/COFINS extinguished. IFRS 18/CPC 51 mandatory |
830
+ | 2033 | ICMS/ISS extinguished. IBS fully effective |
831
+
832
+ ---
833
+
834
+ ## 13. Key People
835
+
836
+ ### Pioneers
837
+
838
+ | Person | Contribution |
839
+ |--------|-------------|
840
+ | Luca Pacioli (1447-1517) | Codified double-entry in "Summa de Arithmetica" (1494) |
841
+ | Josiah Wedgwood (1730-1795) | First to develop cost accounting in industry |
842
+
843
+ ### Brazilian Accounting
844
+
845
+ | Person | Contribution |
846
+ |--------|-------------|
847
+ | Sergio de Iudicibus | Manual de Contabilidade Societaria (FIPECAFI), scientific approach |
848
+ | Eliseu Martins | "Contabilidade de Custos" (10th ed, 2023), USP professor emeritus |
849
+ | Jose Carlos Marion | "Contabilidade Empresarial," prolific Brazilian author |
850
+ | Nelson Carvalho | USP professor, former IASB member, bridge to international standards |
851
+ | Roberto Dias Duarte | Reference in digital transformation of Brazilian accounting |
852
+
853
+ ### Management Accounting & Cost
854
+
855
+ | Person | Contribution |
856
+ |--------|-------------|
857
+ | Robert S. Kaplan | ABC (1987) and BSC (1992), Harvard professor |
858
+ | David P. Norton | BSC co-creator |
859
+ | Robin Cooper | ABC co-developer, strategic cost management |
860
+ | Charles T. Horngren | "Cost Accounting" -- most adopted textbook globally |
861
+ | John K. Shank | Strategic Cost Management (with Govindarajan) |
862
+
863
+ ### Auditing & Governance
864
+
865
+ | Person | Contribution |
866
+ |--------|-------------|
867
+ | James Treadway | Led Treadway Commission (originated COSO) |
868
+ | Larry Sawyer | Father of modern internal auditing |
869
+
870
+ ### Forensic
871
+
872
+ | Person | Contribution |
873
+ |--------|-------------|
874
+ | Frank Benford | Law of the First Digit (1938) |
875
+ | Donald Cressey | Fraud Triangle |
876
+ | Joseph T. Wells | Founded ACFE |
877
+
878
+ ### Tax Reform
879
+
880
+ | Person | Contribution |
881
+ |--------|-------------|
882
+ | Bernard Appy | Intellectual architect of Brazilian tax reform (CBS/IBS) |
883
+
884
+ ---
885
+
886
+ ## 14. Reference Books (Bibles by Sub-Area)
887
+
888
+ ### Financial & Corporate Accounting
889
+
890
+ | Book | Author | Notes |
891
+ |------|--------|-------|
892
+ | Manual de Contabilidade Societaria | FIPECAFI (Iudicibus, Martins, Gelbcke, Santos) | Definitive Brazilian accounting work |
893
+ | Intermediate Accounting | Kieso, Weygandt, Warfield | World reference |
894
+
895
+ ### Cost Accounting
896
+
897
+ | Book | Author | Notes |
898
+ |------|--------|-------|
899
+ | Contabilidade de Custos | Eliseu Martins (10th ed, 2023) | Absolute Brazilian reference |
900
+ | Cost Accounting: A Managerial Emphasis | Horngren, Datar, Rajan (16th ed, 2024) | Most adopted globally |
901
+ | Activity-Based Costing and ABM | Kaplan & Cooper | Defined ABC as a field |
902
+
903
+ ### Management Accounting & Controllership
904
+
905
+ | Book | Author | Notes |
906
+ |------|--------|-------|
907
+ | The Balanced Scorecard | Kaplan & Norton | Defined BSC, 25+ languages |
908
+ | Relevance Lost | Johnson & Kaplan (1987) | Revolutionized management accounting |
909
+ | Management Control Systems | Anthony & Govindarajan | Reference in control systems |
910
+
911
+ ### Auditing
912
+
913
+ | Book | Author | Notes |
914
+ |------|--------|-------|
915
+ | Auditing and Assurance Services | Arens, Elder, Beasley | World reference |
916
+ | Sawyer's Internal Auditing | IIA | Internal audit classic |
917
+ | COSO Internal Control Framework | COSO (2013) | Defines internal controls |
918
+
919
+ ### Forensic
920
+
921
+ | Book | Author | Notes |
922
+ |------|--------|-------|
923
+ | Financial Shenanigans | Schilit & Perler (4th ed, 2018) | Classic on statement manipulation |
924
+ | Benford's Law | Mark Nigrini (2012) | Benford application in auditing |
925
+
926
+ ### Strategic
927
+
928
+ | Book | Author | Notes |
929
+ |------|--------|-------|
930
+ | Strategic Cost Management | Shank & Govindarajan (1993) | Defined the field |
931
+ | Competitive Advantage | Michael Porter (1985) | Value chain framework |
932
+ | The Goal | Eliyahu Goldratt (1984) | Theory of Constraints |
933
+
934
+ ### Taxation
935
+
936
+ | Book | Author | Notes |
937
+ |------|--------|-------|
938
+ | Manual de Contabilidade Tributaria | Paulo Henrique Pegas (12th ed, 2023) | Brazilian tax accounting reference |
939
+ | Direito Tributario Brasileiro | Luciano Amaro | Legal foundation for tax accounting |
940
+
941
+ ---
942
+
943
+ ## 15. Key Organizations
944
+
945
+ | Entity | Abbreviation | Role |
946
+ |--------|-------------|------|
947
+ | Conselho Federal de Contabilidade | CFC | Regulates accounting profession in Brazil |
948
+ | Comite de Pronunciamentos Contabeis | CPC | Issues IFRS-convergent pronouncements |
949
+ | Comissao de Valores Mobiliarios | CVM | Regulates capital markets |
950
+ | IASB | IASB | Issues IFRS globally |
951
+ | FASB | FASB | Issues US GAAP |
952
+ | IIA | IIA | Internal audit standards |
953
+ | ACFE | ACFE | Fraud examination and forensic |
954
+ | FIPECAFI | FIPECAFI | Academic accounting research (USP) |
955
+ | IBRACON | IBRACON | Independent auditors in Brazil |
956
+
957
+ ---
958
+
959
+ ## 16. Actionable Checklists
960
+
961
+ ### Pre-Close Monthly Checklist
962
+
963
+ - [ ] Bank reconciliations completed
964
+ - [ ] Intercompany balances confirmed
965
+ - [ ] Revenue recognition reviewed (CPC 47 criteria)
966
+ - [ ] Provisions and estimates updated
967
+ - [ ] Fixed asset additions/disposals recorded
968
+ - [ ] Tax obligations calculated (IRPJ, CSLL, PIS, COFINS)
969
+ - [ ] SPED files generated and validated
970
+ - [ ] eSocial events transmitted
971
+ - [ ] Variance analysis (actual vs. budget) prepared
972
+ - [ ] Flash report issued to management
973
+
974
+ ### Tax Regime Decision Checklist (Annual)
975
+
976
+ - [ ] Simulate total tax under Simples Nacional (if eligible)
977
+ - [ ] Simulate total tax under Lucro Presumido
978
+ - [ ] Simulate total tax under Lucro Real
979
+ - [ ] Consider PIS/COFINS credit impact (non-cumulative vs. cumulative)
980
+ - [ ] Evaluate payroll impact on Simples (R Factor for Annex III vs. V)
981
+ - [ ] Assess LC 224/2025 impact on Presumido (revenue > R$5M threshold)
982
+ - [ ] Document decision rationale
983
+ - [ ] File regime option by January deadline
984
+
985
+ ### Tax Reform Readiness Checklist (2026)
986
+
987
+ - [ ] ERP updated for CBS/IBS test fields on invoices
988
+ - [ ] Team trained on new tax mechanics (IVA dual)
989
+ - [ ] Credit calculation processes reviewed (broad financial credit)
990
+ - [ ] Pricing models updated for new tax structure
991
+ - [ ] Split payment infrastructure assessed
992
+ - [ ] Parallel operation plan for 2026-2033 transition
993
+ - [ ] Tax incentive phase-out impact quantified
994
+
995
+ ---
996
+
997
+ *Contabilidade Master Reference v1.0 -- SINAPSE squad-finance knowledge base*
998
+ *Source: MS-012 Contabilidade Research (2026-04-06, verified 2026-04-07)*