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,1123 @@
1
+ # Sales & Revenue Master Reference
2
+
3
+ > **Source:** MS-003 — Sales & Revenue Master System (2026-04-07)
4
+ > **Research:** 55+ sources, verified by @research-orqx (Prism)
5
+ > **Purpose:** Comprehensive reference for @commercial-orqx (Pipeline) and squad-commercial specialists
6
+
7
+ ---
8
+
9
+ ## Table of Contents
10
+
11
+ 1. [Market Overview & Key Numbers](#1-market-overview--key-numbers)
12
+ 2. [Sales Methodologies Deep Dive](#2-sales-methodologies-deep-dive)
13
+ 3. [Revenue Operations (RevOps)](#3-revenue-operations-revops)
14
+ 4. [Pipeline Management & Forecasting](#4-pipeline-management--forecasting)
15
+ 5. [CRM & Sales Tech Stack](#5-crm--sales-tech-stack)
16
+ 6. [SDR/BDR Operations & Cadences](#6-sdrbdr-operations--cadences)
17
+ 7. [Enterprise & Complex Sales](#7-enterprise--complex-sales)
18
+ 8. [Pricing & Deal Strategy](#8-pricing--deal-strategy)
19
+ 9. [Customer Success & Expansion](#9-customer-success--expansion)
20
+ 10. [Sales Enablement & Training](#10-sales-enablement--training)
21
+ 11. [Sales Analytics](#11-sales-analytics)
22
+ 12. [AI in Sales](#12-ai-in-sales)
23
+ 13. [Brazilian Sales Context](#13-brazilian-sales-context)
24
+ 14. [Compensation & Incentives (Brazil)](#14-compensation--incentives-brazil)
25
+ 15. [Sales Leadership Frameworks](#15-sales-leadership-frameworks)
26
+ 16. [Essential Reading & References](#16-essential-reading--references)
27
+ 17. [Actionable Checklists](#17-actionable-checklists)
28
+
29
+ ---
30
+
31
+ ## 1. Market Overview & Key Numbers
32
+
33
+ ### Global Sales Market (2025-2026)
34
+
35
+ | Metric | Value | Source |
36
+ |--------|-------|--------|
37
+ | Global CRM market | USD 90.1B (2025), projected USD 304B by 2035 (CAGR 12.9%) | Precedence Research |
38
+ | Sales intelligence market | USD 4.5-4.9B (2025) | Fortune Business Insights |
39
+ | Sales enablement market | USD 6.0B (2025), projected USD 12.8B by 2030 (CAGR 16.3%) | Grand View Research |
40
+ | RevOps software market | USD 3.7B (2023), projected USD 15.9B by 2033 | ORM-Tech |
41
+ | B2B sales professionals worldwide | ~15 million | LinkedIn |
42
+ | Companies using CRM (B2B >50 employees) | 91% | Salesforce State of Sales |
43
+ | Reps hitting quota | ~35-40% (avg attainment ~43%) | RepVue 2024-2025 |
44
+ | Average SDR ramp time | 3.2 months | The Bridge Group |
45
+ | B2B SaaS CAC (SMB) | USD 395-702 | ProfitWell |
46
+
47
+ ### Sales Evolution Timeline
48
+
49
+ | Era | Period | Key Shift |
50
+ |-----|--------|-----------|
51
+ | Transactional | Pre-1950s | Availability and price; charisma-driven |
52
+ | Consultative | 1960s-1990s | SPIN Selling (Rackham, 1988); questions > arguments |
53
+ | Solution Selling | 1990s-2010s | Sell solutions, not products; MEDDIC born (1996) |
54
+ | Challenger & Insight | 2010s | Teach, tailor, take control; insight-led selling |
55
+ | RevOps & PLG | 2015-2022 | Unified revenue function; product as acquisition engine |
56
+ | AI-Augmented | 2023-present | AI SDRs, conversational intelligence, predictive scoring |
57
+
58
+ ---
59
+
60
+ ## 2. Sales Methodologies Deep Dive
61
+
62
+ ### 2.1 SPIN Selling (Rackham, 1988)
63
+
64
+ Based on 35,000 sales calls across 23 countries over 12 years.
65
+
66
+ | Question Type | Purpose | Example |
67
+ |---------------|---------|---------|
68
+ | **S**ituation | Understand current context | "How many salespeople do you have today?" |
69
+ | **P**roblem | Identify difficulties | "What is your biggest challenge with sales forecasting?" |
70
+ | **I**mplication | Amplify pain | "If forecasting stays inaccurate, how does that affect financial planning?" |
71
+ | **N**eed-Payoff | Direct toward solution | "If you could forecast revenue at 90%+ accuracy, what would the impact be?" |
72
+
73
+ **Key insights:**
74
+ - Implication questions are the most powerful and least used
75
+ - Aggressive closes REDUCE conversion in complex sales
76
+ - Top performers ask 4x more Implication questions than average
77
+ - Best for: B2B deals >R$50K, cycles >30 days, multiple stakeholders
78
+
79
+ ### 2.2 The Challenger Sale (Dixon & Adamson, 2011)
80
+
81
+ Research with 6,000+ salespeople in 90 companies:
82
+
83
+ | Profile | % of Sales Force | % of Top Performers |
84
+ |---------|-----------------|-------------------|
85
+ | Relationship Builder | 27% | 7% |
86
+ | Hard Worker | 17% | 10% |
87
+ | Lone Wolf | 15% | 25% |
88
+ | Reactive Problem Solver | 14% | 12% |
89
+ | **Challenger** | **27%** | **39%** |
90
+
91
+ **The 3 Pillars:**
92
+
93
+ 1. **Teach** -- Bring insights the client did not have. Reframe the problem.
94
+ 2. **Tailor** -- Customize messaging per stakeholder (CFO cares about ROI; VP Sales about productivity; end-user about ease of use).
95
+ 3. **Take Control** -- Do not cave to discount pressure. Challenge constructively.
96
+
97
+ **Practical implications:**
98
+ - Hire people with a point of view, not just "people persons"
99
+ - Marketing must produce "Teaching Pitches", not brochures
100
+ - Training should focus on commercial teaching, not product knowledge
101
+
102
+ ### 2.3 MEDDPICC (Dunkel & Napoli, 1996)
103
+
104
+ The dominant enterprise B2B qualification framework:
105
+
106
+ | Letter | Criterion | Key Question | Red Flag |
107
+ |--------|-----------|-------------|----------|
108
+ | **M** | Metrics | What is the measurable impact? | No metrics = no urgency |
109
+ | **E** | Economic Buyer | Who signs the check? | Not identified after discovery |
110
+ | **D** | Decision Criteria | How will they decide? | Vague or shifting criteria |
111
+ | **D** | Decision Process | What is the buying process? | "We'll decide internally" |
112
+ | **P** | Paper Process | How does procurement work? | Legal/compliance unknown |
113
+ | **I** | Identify Pain | What is the real pain? | Superficial pain, no business impact |
114
+ | **C** | Champion | Who fights for you internally? | Nobody selling for you inside |
115
+ | **C** | Competition | Who do you compete against? | "No competition" (illusion) |
116
+
117
+ **Champion Test (the most critical criterion):**
118
+
119
+ A true Champion has 3 characteristics:
120
+ 1. **Power** -- Influence in the decision (someone the EB listens to)
121
+ 2. **Pain** -- Feels the pain personally (the problem affects THEIR day-to-day)
122
+ 3. **Vision** -- Sees how the solution resolves it (articulates the "after" better than you)
123
+
124
+ **MEDDPICC Scoring:**
125
+ - Score each criterion 0-3 (0=Unknown, 1=Identified, 2=Validated, 3=Confirmed by client)
126
+ - Max score: 24
127
+ - Score <12: question the deal
128
+ - Score <8: do NOT put in forecast
129
+
130
+ ### 2.4 Other Key Frameworks
131
+
132
+ **Sandler Selling System (1967) -- 7 Compartments:**
133
+ 1. Bonding & Rapport
134
+ 2. Up-Front Contract (agree on agenda/next steps BEFORE the meeting)
135
+ 3. Pain (3 levels: surface -> business impact -> personal impact)
136
+ 4. Budget (qualify BEFORE presenting solution)
137
+ 5. Decision (map complete decision process)
138
+ 6. Fulfillment (present ONLY what solves identified pain)
139
+ 7. Post-Sell (prevent buyer's remorse)
140
+
141
+ Core principle: "The seller should never work harder than the buyer."
142
+
143
+ **GAP Selling (Keenan, 2018):**
144
+ - Sale only happens when there is a sufficient GAP between Current State and Future State
145
+ - The seller must AMPLIFY the gap, not close quickly
146
+ - Discovery framework: Technical problem -> Business impact -> Root cause -> Emotional impact
147
+
148
+ **Value Selling Framework:**
149
+ ```
150
+ Perceived Value = (Results Delivered x Probability of Success) / (Price + Risk)
151
+ ```
152
+
153
+ **BANT (IBM, 1960s):** Budget, Authority, Need, Timeline -- still useful for SMB/quick qualification but insufficient for enterprise.
154
+
155
+ ### 2.5 Methodology Selection Matrix
156
+
157
+ | Scenario | Primary Framework | Supporting |
158
+ |----------|------------------|-----------|
159
+ | Complex enterprise (>R$200K, 6+ stakeholders) | MEDDPICC | Challenger (teach) + SPIN (discovery) |
160
+ | Mid-market consultative | SPIN | Value Selling |
161
+ | SMB high-volume | BANT or CHAMP | Sandler (qualification) |
162
+ | Status quo disruption | Challenger | GAP Selling |
163
+ | Inbound warm leads | GPCTBA/C&I | SPIN |
164
+ | Competitive displacement | Command of the Message | MEDDPICC |
165
+
166
+ ---
167
+
168
+ ## 3. Revenue Operations (RevOps)
169
+
170
+ ### 3.1 Core Concept
171
+
172
+ RevOps aligns processes, systems, and data across sales, marketing, and customer success under a single operational structure.
173
+
174
+ - **79%** of organizations have a formal RevOps function (2025)
175
+ - Companies with formalized RevOps report **36% higher revenue growth**
176
+ - "VP of Revenue Operations" title grew **300%** in the last 18 months
177
+
178
+ ### 3.2 The 3 Pillars
179
+
180
+ **Pillar 1 -- Process:**
181
+ - Lead-to-Close (Marketing -> Sales)
182
+ - Close-to-Onboard (Sales -> CS)
183
+ - Onboard-to-Expand (CS -> Sales/Marketing)
184
+ - Churn-to-Winback (CS -> Marketing)
185
+
186
+ **Pillar 2 -- Platform (Tech Stack):**
187
+ - CRM as single source of truth
188
+ - Marketing automation (HubSpot, Marketo)
189
+ - Sales engagement (Outreach, Salesloft, Apollo)
190
+ - CS platform (Gainsight, Totango)
191
+ - Revenue intelligence (Gong, Clari, 6sense)
192
+
193
+ **Pillar 3 -- People:**
194
+ - VP/Head of RevOps (reports to CRO or CEO)
195
+ - Sales Ops, Marketing Ops, CS Ops, Revenue Analytics
196
+
197
+ ### 3.3 Unified Data Model
198
+
199
+ | Definition | Description | Who Defines |
200
+ |-----------|-------------|------------|
201
+ | Lead | Individual who demonstrated interest | Marketing + Sales jointly |
202
+ | MQL | Lead with score >= X and fit >= Y | Marketing Ops with Sales validation |
203
+ | SQL | MQL accepted by Sales + qualified | Sales with RevOps criteria |
204
+ | Opportunity | Deal with Champion + Budget + Timeline | Sales Ops |
205
+ | Customer | Contract signed, onboarding started | CS Ops |
206
+ | Expansion | Upsell/cross-sell of active customer | CS + Sales |
207
+ | Churn | Contract not renewed or canceled | CS Ops |
208
+
209
+ ### 3.4 RevOps Metrics
210
+
211
+ **Leading Indicators (prospective):**
212
+ - Pipeline Generation Rate (new pipeline value/week)
213
+ - Pipeline Coverage Ratio (pipeline/quota -- target: 3-4x)
214
+ - Lead Velocity Rate (MoM growth of qualified leads)
215
+ - Activity Metrics (calls, emails, meetings per rep)
216
+
217
+ **Lagging Indicators (retrospective):**
218
+ - Win Rate (deals won / total deals)
219
+ - Average Deal Size (ACV)
220
+ - Sales Cycle Length (avg days)
221
+ - Net Revenue Retention (NRR) -- target: >100% (ideally 110-130%)
222
+ - CAC Payback Period -- target: <18 months
223
+ - LTV:CAC Ratio -- target: >3:1
224
+
225
+ **Operational Metrics:**
226
+ - CRM Data Completeness (% fields filled)
227
+ - SLA Compliance (lead follow-up time)
228
+ - Handoff Efficiency (time between cycle stages)
229
+ - Forecast Accuracy (MAPE)
230
+
231
+ ### 3.5 RevOps Maturity Model
232
+
233
+ | Level | Description | Signals |
234
+ |-------|-------------|---------|
235
+ | 1 -- Ad Hoc | No structure, each team operates independently | Spreadsheets, no CRM or underused CRM |
236
+ | 2 -- Defined | Basic processes defined, CRM implemented | Marketing-Sales SLA exists but not measured |
237
+ | 3 -- Managed | Formal RevOps team, consistent metrics | Shared dashboards, regular forecasting |
238
+ | 4 -- Optimized | Data-driven decisions, advanced automation | Propensity scoring, automated routing, alerts |
239
+ | 5 -- Predictive | AI-powered revenue engine | Predictive forecasting, dynamic territories, AI coaching |
240
+
241
+ ---
242
+
243
+ ## 4. Pipeline Management & Forecasting
244
+
245
+ ### 4.1 Pipeline Velocity Formula
246
+
247
+ ```
248
+ Pipeline Velocity = (# Opportunities x Win Rate x Avg Deal Size) / Sales Cycle in Days
249
+ ```
250
+
251
+ **Example:** (100 opps x 25% win rate x R$50,000 ACV) / 60 days = R$20,833/day in potential revenue
252
+
253
+ Each variable is a lever. Improving ANY ONE accelerates revenue:
254
+ - More opportunities (marketing/SDR investment)
255
+ - Higher win rate (better qualification, demos, competitive positioning)
256
+ - Larger deals (upsell, bundling, value selling)
257
+ - Shorter cycles (better process, champion access, procurement prep)
258
+
259
+ ### 4.2 Stage-to-Stage Conversion Benchmarks (B2B SaaS)
260
+
261
+ | Conversion | Typical Rate |
262
+ |-----------|-------------|
263
+ | Lead -> MQL | 15-30% |
264
+ | MQL -> SQL | 20-40% |
265
+ | SQL -> Opportunity | 40-60% |
266
+ | Opportunity -> Proposal | 50-70% |
267
+ | Proposal -> Closed Won | 20-35% |
268
+ | Overall Lead -> Closed Won | 1-5% |
269
+
270
+ ### 4.3 Pipeline Health Indicators
271
+
272
+ | Signal | Red Flag |
273
+ |--------|----------|
274
+ | Aging | Deals stuck >2x average cycle time in a stage |
275
+ | Pushes | Close date moved forward (deal at risk) |
276
+ | Stage Skip | Deals jumping stages (broken process or very strong deal) |
277
+ | No Activity | No CRM activity in 7+ days |
278
+ | No Champion | Champion not identified after 60 days |
279
+ | Close date pushed 3+ times | Reclassify or remove |
280
+
281
+ ### 4.4 Pipeline Review Best Practices
282
+
283
+ **Weekly ritual -- for each top 10-15 deal:**
284
+ 1. What changed since last review?
285
+ 2. What is the concrete next step and when?
286
+ 3. Who is the Champion and how have we validated?
287
+ 4. What are the risks and how do we mitigate?
288
+
289
+ **Anti-patterns to avoid:**
290
+ - Review that becomes interrogation (destroys morale)
291
+ - Rep reading CRM aloud (zero value)
292
+ - Generic tips without deal context
293
+ - No concrete action items with deadlines
294
+
295
+ ### 4.5 Forecasting Methods
296
+
297
+ | Method | Accuracy | Best For |
298
+ |--------|----------|---------|
299
+ | Rep Call | Low (optimism bias) | Complement only |
300
+ | Stage-Based | Medium | Early-stage orgs |
301
+ | Weighted Pipeline | Medium | Automated baseline |
302
+ | Historical | Medium-High | Orgs with historical data |
303
+ | AI/ML | High | Orgs with rich data |
304
+ | Multi-Signal | Highest | Best practice (rep call + activity + engagement) |
305
+
306
+ **Forecast Categories:**
307
+
308
+ | Category | Confidence |
309
+ |----------|-----------|
310
+ | Commit | >90% -- rep guarantees close in period |
311
+ | Best Case | 50-80% -- closes if everything goes right |
312
+ | Pipeline | 20-50% -- in progress, no commitment |
313
+ | Upside | <20% -- possible but unlikely this period |
314
+
315
+ **MAPE (Mean Absolute Percentage Error):**
316
+ ```
317
+ MAPE = (1/n) x SUM(|Forecast - Actual| / Actual) x 100
318
+ ```
319
+ - <10%: Excellent
320
+ - 10-20%: Good
321
+ - 20-30%: Acceptable
322
+ - >30%: Problematic
323
+
324
+ AI forecasting typically achieves MAPE 8-15% vs. 20-30% for rep-based.
325
+
326
+ ### 4.6 Pipeline Hygiene Rules
327
+
328
+ - Deals without activity >30 days = mandatory review
329
+ - Close date pushed 3+ times = reclassify or remove
330
+ - No Champion identified after 60 days = mark "at risk"
331
+ - Lost deals MUST have categorized loss reason
332
+ - Monthly pipeline scrub: remove dead deals, update real values
333
+
334
+ ---
335
+
336
+ ## 5. CRM & Sales Tech Stack
337
+
338
+ ### 5.1 Global CRM Landscape
339
+
340
+ | CRM | Market Share (2025) | Best For | Price/user/month |
341
+ |-----|-------------------|---------|-----------------|
342
+ | Salesforce | ~21-22% | Enterprise, unlimited customization | USD 25-500+ |
343
+ | HubSpot | ~4-6% | SMB-Mid, inbound-first | USD 0-150 |
344
+ | Microsoft Dynamics 365 | ~8% | Microsoft-centric enterprises | USD 65-200 |
345
+ | Zoho CRM | ~5% | SMB, aggressive pricing | USD 14-65 |
346
+ | Pipedrive | ~4% | SMB, simplicity | USD 14-99 |
347
+
348
+ ### 5.2 Brazilian CRMs
349
+
350
+ | CRM | Focus | Brazilian Differentiators |
351
+ |-----|-------|--------------------------|
352
+ | RD Station CRM | Inbound B2B | Native integration with RD Station Marketing (TOTVS) |
353
+ | Ploomes | Mid-market B2B | Automated proposals, Brazilian ERP integration |
354
+ | Moskit | SMB | Simplicity, affordable, native WhatsApp |
355
+ | Agendor | SMB | Clean interface, usability focus |
356
+ | NectarCRM | Solar/B2B | Vertical-specific |
357
+ | Meets | SMB | Strong WhatsApp integration |
358
+
359
+ ### 5.3 Sales Tech Stack Layers
360
+
361
+ | Layer | Purpose | Tools |
362
+ |-------|---------|-------|
363
+ | **1 -- Core** | Foundation | CRM + Email + Calendar (Calendly) |
364
+ | **2 -- Sales Engagement** | Automated sequences | Outreach, Salesloft, Apollo.io, LinkedIn Sales Nav |
365
+ | **3 -- Intelligence** | Conversation & data | Gong, ZoomInfo, 6sense, Clearbit |
366
+ | **4 -- Revenue Intel** | Forecasting & analytics | Clari, People.ai, Aviso |
367
+ | **5 -- CPQ & Contract** | Proposals & signing | Salesforce CPQ, PandaDoc, DocuSign |
368
+ | **6 -- Enablement** | Content & training | Highspot, Seismic, MindTickle |
369
+
370
+ ### 5.4 Integration Strategy
371
+
372
+ The biggest problem is not tool choice -- it is integration between 10+ systems.
373
+
374
+ **Solutions:**
375
+ - Native integrations (prioritize tools that integrate natively)
376
+ - iPaaS (Workato, Tray.io, Zapier) for middleware
377
+ - CDP (Segment, Salesforce Data Cloud) to unify customer data
378
+ - Reverse ETL (Census, Hightouch) to sync data warehouse to operational tools
379
+
380
+ ---
381
+
382
+ ## 6. SDR/BDR Operations & Cadences
383
+
384
+ ### 6.1 Role Separation (Predictable Revenue Model)
385
+
386
+ | Role | Function | Primary Metrics |
387
+ |------|----------|----------------|
388
+ | SDR (Inbound) | Qualify marketing leads | Speed-to-lead, MQL->SQL conversion, meetings booked |
389
+ | BDR (Outbound) | Proactively prospect target accounts | Activities/day, meetings booked, pipeline generated |
390
+ | AE | Run full sales cycle | Pipeline, win rate, ACV, revenue |
391
+ | AM | Manage existing accounts | NRR, expansion revenue, renewal rate |
392
+ | SE | Technical support in demos/POCs | Demo-to-close rate, POC success rate |
393
+
394
+ ### 6.2 Standard Outbound Cadence (14-21 days)
395
+
396
+ | Day | Touch | Channel | Content |
397
+ |-----|-------|---------|---------|
398
+ | 1 | 1 | Email | Personalized pain-based email |
399
+ | 1 | 2 | LinkedIn | Connection request + note |
400
+ | 3 | 3 | Email | Follow-up with insight/data |
401
+ | 5 | 4 | Phone | Cold call (voicemail if no answer) |
402
+ | 7 | 5 | Email | Case study or social proof |
403
+ | 7 | 6 | LinkedIn | Engage with prospect's post |
404
+ | 10 | 7 | Phone | Second attempt + email |
405
+ | 12 | 8 | Email | Personalized video (Vidyard/Loom) |
406
+ | 14 | 9 | Email | Breakup email ("closing your file") |
407
+ | 21 | 10 | LinkedIn | Nurture via content |
408
+
409
+ ### 6.3 Outbound Benchmarks (B2B SaaS, 2025)
410
+
411
+ | Metric | Benchmark |
412
+ |--------|-----------|
413
+ | Email open rate | 25-45% |
414
+ | Email reply rate (cold) | 3-8% |
415
+ | Email reply rate (warm) | 15-30% |
416
+ | Cold call connect rate | 3-7% |
417
+ | Sequence conversion (meeting booked) | 5-15% |
418
+ | Touches needed per conversion | 8-12 |
419
+
420
+ ### 6.4 Cold Call Framework (John Barrows Method)
421
+
422
+ 1. **Pattern Interrupt** (first 5 seconds decide everything): "Caio, I know you weren't expecting my call -- can I have 30 seconds to explain why I called?"
423
+ 2. **Reason for the Call** (connect with something real -- trigger event, referral, research)
424
+ 3. **Open-Ended Question** (transfer control to the prospect)
425
+ 4. **Book the Meeting** (sell the meeting, NOT the product)
426
+
427
+ **Cold call metrics:**
428
+ - Dials/day: 40-80 (typical SDR target)
429
+ - Connect rate: 3-7%
430
+ - Conversation-to-meeting: 15-25%
431
+ - Meetings/day via phone: 0.5-1.5
432
+
433
+ ### 6.5 Cold Email Anatomy
434
+
435
+ ```
436
+ Subject: [short, relevant, no clickbait] -- e.g., "question about {problem}"
437
+
438
+ [1 line: genuine personalization based on research]
439
+ [2-3 lines: problem you solve, connected to prospect's world]
440
+ [1 line: quick social proof (number or name)]
441
+ [CTA: simple question, low commitment]
442
+ [Signature: clean, with title and company]
443
+ ```
444
+
445
+ **Golden rules:**
446
+ - Subject line: 3-7 words, lowercase, no emojis in enterprise
447
+ - Body: <150 words (ideal: 80-120)
448
+ - One idea per email, one CTA per email
449
+ - Real personalization (5-min research) beats generic merge tags
450
+ - A/B test everything: subject, CTA, timing, sender
451
+
452
+ ### 6.6 SDR/BDR Benchmarks
453
+
454
+ | Metric | Benchmark (B2B SaaS) |
455
+ |--------|---------------------|
456
+ | Monthly quota (meetings) | 12-20 |
457
+ | Ramp time | 3-4 months |
458
+ | Average tenure | 14-18 months |
459
+ | Activities/day | 50-80 (multi-channel) |
460
+ | Pipeline generated/month | 3-5x OTE |
461
+ | % meetings -> opportunities | 40-60% |
462
+ | OTE (USA) | USD 65-85K |
463
+ | OTE (Brazil, SP) | R$6-12K/month (CLT+bonus) |
464
+
465
+ ### 6.7 Social Selling (LinkedIn)
466
+
467
+ - **SSI (Social Selling Index):** Score 0-100. Top performers >75
468
+ - Optimize headline with value, not title: "I help VPs of Sales reduce cycle time by 30%" beats "Account Executive at XYZ"
469
+ - Publish content 2-3x/week
470
+ - Engage with prospects' content BEFORE prospecting
471
+ - Use triggers (job change, funding announcement, expansion) as contact reasons
472
+
473
+ ---
474
+
475
+ ## 7. Enterprise & Complex Sales
476
+
477
+ ### 7.1 Enterprise vs. SMB
478
+
479
+ | Dimension | SMB/Mid-Market | Enterprise |
480
+ |-----------|---------------|-----------|
481
+ | Cycle | 30-90 days | 6-18 months |
482
+ | Stakeholders | 1-3 | 6-12+ |
483
+ | ACV | R$10-200K | R$500K-10M+ |
484
+ | Process | Linear, predictable | Non-linear, political |
485
+ | Champion | Nice-to-have | Mandatory |
486
+
487
+ ### 7.2 Account-Based Selling (ABS)
488
+
489
+ 1. **Account Selection** -- Define ICP, select 50-200 target accounts per AE
490
+ 2. **Account Research** -- Map org chart, strategic initiatives, potential pains, triggers
491
+ 3. **Multi-Threading** -- Engage multiple stakeholders simultaneously
492
+ 4. **Orchestrated Outreach** -- Marketing, SDR, and AE coordinate touches on the same account
493
+ 5. **Personalized Value** -- Each stakeholder gets a message customized for their role/pain
494
+
495
+ **Multi-Threading Rules:**
496
+ - Average buying group has 6-10 members (Gartner)
497
+ - Single-threaded deals have 3x more chance of stalling, 50% lower win rate
498
+ - For deals >R$500K: minimum 3 engaged contacts
499
+ - For deals >R$1M: minimum 5 engaged contacts
500
+
501
+ ### 7.3 Procurement Navigation
502
+
503
+ **Typical enterprise procurement process:**
504
+ 1. Vendor Registration
505
+ 2. RFI (Request for Information)
506
+ 3. RFP (Request for Proposal)
507
+ 4. POC/Pilot
508
+ 5. Security Review (SOC2, ISO 27001, pentest, data privacy)
509
+ 6. Legal Review (contract, SLA, DPA)
510
+ 7. Procurement Negotiation
511
+ 8. Approval/Signature (3-5 approval levels)
512
+
513
+ **Acceleration strategies:**
514
+ - Have security kit ready (SOC2, pentest report, DPA template)
515
+ - Learn procurement process EARLY in cycle (ask in discovery!)
516
+ - Mutual Action Plan (MAP) including procurement steps with dates
517
+ - Engage procurement as a stakeholder, not an adversary
518
+
519
+ ### 7.4 RFP Go/No-Go Framework
520
+
521
+ | Criterion | Go | No-Go |
522
+ |-----------|------|-------|
523
+ | You influenced the RFP? | Yes, helped define requirements | Received cold without context |
524
+ | Have internal Champion? | Yes | Nobody inside knows you |
525
+ | Requirements align with product? | 80%+ fit | <60% fit |
526
+ | Resources to respond well? | Dedicated team | Will be a "me too" response |
527
+ | Value justifies effort? | >R$500K ACV | <R$100K (disproportionate effort) |
528
+
529
+ **Reality:** If you did not help write the RFP, your probability of winning is <10%.
530
+
531
+ ---
532
+
533
+ ## 8. Pricing & Deal Strategy
534
+
535
+ ### 8.1 Pricing Models
536
+
537
+ | Model | How It Works | Best For |
538
+ |-------|-------------|---------|
539
+ | Value-Based | Price = Value Delivered x Capture Rate (typically 10-30%) | Products with measurable ROI |
540
+ | Per-Seat | Price per user/month | SaaS, simple to understand |
541
+ | Usage-Based | Pay for what you use | APIs, infrastructure (Twilio, AWS) |
542
+ | Hybrid | Fixed base + variable usage | Trending in SaaS 2024-2026 (Snowflake, HubSpot) |
543
+ | Cost-Plus | Production cost + desired margin | Commodities |
544
+ | Competitive | Based on competitor pricing | Dangerous (race to bottom) |
545
+
546
+ **Value-Based Pricing Formula:**
547
+ ```
548
+ Price = Value Delivered to Client x Capture Rate (10-30%)
549
+ ```
550
+ Example: If software saves R$500K/year, a price of R$50-150K/year (10-30% capture) is defensible.
551
+
552
+ ### 8.2 Discount Governance Framework
553
+
554
+ | Discount | Authority | Requirements |
555
+ |----------|----------|-------------|
556
+ | 0-10% | AE can approve | Justification in CRM |
557
+ | 11-20% | Sales Manager must approve | Written business case |
558
+ | 21-30% | VP Sales must approve | CFO awareness |
559
+ | >30% | CRO/CEO must approve | Documented exception |
560
+
561
+ **Rules:**
562
+ - Never give a discount without asking for something in return (multi-year, case study, referral, prepayment)
563
+ - First discount defines the "floor" for all future renewals
564
+ - Measure average discount rate per rep, segment, and quarter
565
+ - Discount is not strategy -- it is a failure of value selling
566
+
567
+ ### 8.3 Negotiation Frameworks
568
+
569
+ **Chris Voss Method (Never Split the Difference):**
570
+ - **Mirroring** -- Repeat the last 1-3 words (builds unconscious rapport)
571
+ - **Labeling** -- Name the other side's emotions ("It seems like you're frustrated with the timeline")
572
+ - **Calibrated Questions** -- "How am I supposed to do that?" instead of a direct "No"
573
+ - **Loss Aversion** -- Frame in terms of loss, not gain ("If we don't act, you lose X per month")
574
+ - **Ackerman Model** -- Offer in 4 steps: 65% -> 85% -> 95% -> 100% (with an odd number at the end)
575
+
576
+ **BATNA (Fisher & Ury):**
577
+ - Know YOUR best alternative to a negotiated agreement
578
+ - Estimate the CLIENT's BATNA
579
+ - Never accept less than your BATNA
580
+ - Improve your BATNA before negotiating
581
+
582
+ ### 8.4 Deal Desk
583
+
584
+ Centralized function for complex deal review and approval. Implement when:
585
+ - Discounts are out of control
586
+ - Custom contracts >30% of deals
587
+ - Approval delays slow deals by days/weeks
588
+ - Finance complains about margin erosion
589
+
590
+ ---
591
+
592
+ ## 9. Customer Success & Expansion
593
+
594
+ ### 9.1 Net Revenue Retention (NRR) -- The Definitive Metric
595
+
596
+ ```
597
+ NRR = (MRR Start + Expansion - Contraction - Churn) / MRR Start x 100
598
+ ```
599
+
600
+ | NRR | Quality | Examples |
601
+ |-----|---------|---------|
602
+ | >130% | World-class | Datadog (~130%) |
603
+ | 120-130% | Excellent | Snowflake (~125%), MongoDB (~120%) |
604
+ | 110-120% | Good | Most healthy SaaS |
605
+ | 100-110% | OK but needs improvement | Growth depends on new customers |
606
+ | <100% | Problematic | Leaky bucket -- losing existing revenue |
607
+
608
+ ### 9.2 Health Score Components
609
+
610
+ | Signal | Weight | How to Measure |
611
+ |--------|--------|---------------|
612
+ | Product Usage | 30% | DAU/MAU, feature adoption, login frequency |
613
+ | Support Tickets | 15% | Volume, severity, resolution time |
614
+ | NPS/CSAT | 15% | Satisfaction score |
615
+ | Engagement | 15% | Email responses, QBR participation |
616
+ | Payment | 10% | On-time payments, downgrades |
617
+ | Champion Status | 15% | Is Champion active and engaged? |
618
+
619
+ **Scoring:** Green (80-100) = healthy, expansion candidate. Yellow (50-79) = attention needed. Red (0-49) = high risk, escalate immediately.
620
+
621
+ ### 9.3 Expansion Playbook
622
+
623
+ | Trigger | Action |
624
+ |---------|--------|
625
+ | Usage hits 80% of limit | Propose upgrade |
626
+ | QBR shows strong ROI | Propose expansion |
627
+ | Client raises round, hires, expands | Propose growth |
628
+ | Renewal (90 days before) | Propose upgrade with incentive |
629
+
630
+ ### 9.4 Churn Early Warning Signals
631
+
632
+ - Login frequency dropped >30% MoM
633
+ - Champion left the company
634
+ - Critical support tickets open >7 days
635
+ - No CSM email response in >2 weeks
636
+ - Missed last QBR
637
+ - Downgrade request or seat reduction
638
+ - Competitor mentioned in calls (captured via Gong)
639
+ - Late payment
640
+
641
+ ### 9.5 QBR Agenda (60 minutes)
642
+
643
+ 1. **Value Review (20 min)** -- ROI metrics, adoption, health score
644
+ 2. **Roadmap (15 min)** -- Product news that specifically benefits the client
645
+ 3. **Voice of Customer (10 min)** -- Feedback, frustrations, unmet needs
646
+ 4. **Action Plan (15 min)** -- Next steps, goals for next quarter, expansion opportunities
647
+
648
+ ---
649
+
650
+ ## 10. Sales Enablement & Training
651
+
652
+ ### 10.1 Content by Sales Stage
653
+
654
+ | Stage | Content | Format |
655
+ |-------|---------|--------|
656
+ | Prospecting | Pain-point emails, insight reports | Email, 1-pager |
657
+ | Discovery | Discovery guides, industry benchmarks | Doc, template |
658
+ | Demo/Solution | Demo scripts, use case decks | Slides, video |
659
+ | Proposal | Case studies, ROI calculators | PDF, spreadsheet |
660
+ | Negotiation | Objection handlers, competitive battle cards | Doc, 1-pager |
661
+ | Close | Contract templates, implementation plans | Doc |
662
+
663
+ ### 10.2 Competitive Battle Cards
664
+
665
+ 1-2 page documents covering:
666
+ - How to position against competitor X
667
+ - Trap-setting questions (expose competitor weaknesses)
668
+ - "Why We Win" and "Why We Lose" based on real data
669
+ - Common objections and responses
670
+ - Updated quarterly (minimum)
671
+
672
+ ### 10.3 Onboarding Program (30-60-90 Days)
673
+
674
+ **Days 1-30 -- Learn:**
675
+ - Culture, values, how the company operates
676
+ - Product: features, use cases, differentiators
677
+ - ICP, buyer personas, messaging framework
678
+ - CRM and tools: how to use each system
679
+ - Shadow 10+ calls from experienced reps
680
+ - Certification quiz on product and process
681
+
682
+ **Days 31-60 -- Practice:**
683
+ - Roleplay: discovery calls, demos, objection handling
684
+ - Accompanied calls with manager observing
685
+ - Generate first pipeline
686
+ - Weekly 1:1 feedback + coaching session
687
+
688
+ **Days 61-90 -- Perform:**
689
+ - Progressive quota: 50% in month 3 (full quota months 4-6)
690
+ - Independent calls with debriefs
691
+ - First closed deals (with support)
692
+ - Ramp review: on track? What to adjust?
693
+
694
+ ### 10.4 Coaching Framework (GROW Model)
695
+
696
+ - **G**oal -- What does the rep want to achieve?
697
+ - **R**eality -- Where are they today? What is happening?
698
+ - **O**ptions -- What options exist? What could they do?
699
+ - **W**ill -- What will they do? When? How to measure?
700
+
701
+ ---
702
+
703
+ ## 11. Sales Analytics
704
+
705
+ ### 11.1 Metrics Hierarchy
706
+
707
+ **Level 1 -- Executive (Board/CRO):**
708
+ - ARR/MRR and YoY growth
709
+ - NRR, CAC, CAC Payback Period
710
+ - LTV:CAC Ratio
711
+ - Magic Number (Net New ARR / Sales & Marketing Spend)
712
+
713
+ **Level 2 -- Management (VP Sales/Managers):**
714
+ - Pipeline Coverage Ratio, Win Rate, ACV
715
+ - Sales Cycle Length, Quota Attainment
716
+ - Forecast Accuracy (MAPE)
717
+
718
+ **Level 3 -- Rep (Individual Contributor):**
719
+ - Activities (calls, emails, meetings)
720
+ - Pipeline Generated, Opportunities Created
721
+ - Conversion Rates, Average Discount Given
722
+
723
+ ### 11.2 Funnel Analysis Example
724
+
725
+ ```
726
+ Leads 1000 (100%)
727
+ -> MQL 300 (30%) [Drop: 70%]
728
+ -> SQL 120 (40%) [Drop: 60%]
729
+ -> Opportunity 72 (60%) [Drop: 40%]
730
+ -> Proposal 50 (69%) [Drop: 31%]
731
+ -> Negotiation 30 (60%) [Drop: 40%]
732
+ -> Closed Won 18 (60%) [Drop: 40%]
733
+
734
+ Overall conversion: 1.8%
735
+ ```
736
+
737
+ Each drop point is an optimization opportunity. A 10% improvement in SQL->Opp conversion can be worth more than doubling top-of-funnel.
738
+
739
+ ### 11.3 Win/Loss Analysis
740
+
741
+ 1. Interview 10-20 clients who bought (wins)
742
+ 2. Interview 10-20 prospects who did not buy (losses)
743
+ 3. Key questions: decision criteria, process, perceived value, competition, buying experience
744
+ 4. Analyze patterns and recurring themes
745
+ 5. Act: adjust messaging, process, product, pricing
746
+
747
+ ---
748
+
749
+ ## 12. AI in Sales
750
+
751
+ ### 12.1 Current State (2025-2026)
752
+
753
+ McKinsey State of AI 2025: 88% of organizations use AI regularly in at least one business function (vs. 78% in 2024).
754
+
755
+ | Impact Area | Measured Effect |
756
+ |-------------|----------------|
757
+ | Productivity increase | 15-20% |
758
+ | Win rate improvement | 10-15% |
759
+ | Research time reduction | 50-70% |
760
+ | Forecast accuracy improvement | 20-30% |
761
+
762
+ Organizations with strategic AI achieve **43% higher win rate** and **37% faster cycles** (Highspot/MarketsandMarkets 2026).
763
+
764
+ ### 12.2 Conversational Intelligence
765
+
766
+ **Gong (market leader) capabilities:**
767
+ - Record and transcribe all calls
768
+ - Analyze patterns: talk ratio, longest monologue, patience, question frequency, next steps
769
+ - Compare rep vs. top performers
770
+ - Deal intelligence: risk signals, buying signals, competitor mentions
771
+ - Coaching: automatic highlights of coachable moments
772
+
773
+ **Ideal metrics from conversation analysis:**
774
+ - Talk-to-Listen Ratio: 43:57 (rep 43%, prospect 57%)
775
+ - Longest Monologue: <2.5 min (mediocre reps: 4+ min)
776
+ - Question Rate: Top performers 12-15 questions/call vs. avg 6-8
777
+ - Next Steps: Deals with clear next steps at end of call have 2x chance of advancing
778
+
779
+ ### 12.3 AI SDRs -- Market Reality (2026)
780
+
781
+ **What AI SDRs do:**
782
+ - Automated research on accounts and prospects
783
+ - Personalized email outreach at scale
784
+ - Automated follow-up based on engagement signals
785
+ - Direct meeting booking
786
+ - Qualified handoff to human AEs
787
+
788
+ **Tools:** 11x.ai (Alice), AiSDR, Regie.ai, Artisan (Ava), Relevance AI, Amplemarket
789
+
790
+ **Market correction note:** 11x.ai (USD 74M funding from a16z/Benchmark) lost 70-80% of its clients. ZoomInfo tested it for a month and reported "significantly worse" performance than human SDRs. Consensus: AI SDRs work better as copilots to human SDRs than as autonomous replacements.
791
+
792
+ **Current limitations:**
793
+ - Work better in SMB/mid-market (enterprise requires human touch)
794
+ - Personalization quality varies
795
+ - High volume = spam filter risk
796
+ - LGPD/GDPR implications
797
+ - The "uncanny valley" -- prospects detect AI and ignore it
798
+
799
+ ### 12.4 Generative AI Applications
800
+
801
+ | Application | Impact | Maturity |
802
+ |-------------|--------|---------|
803
+ | Email drafting | High -- saves 30-60 min/day | Mainstream |
804
+ | Call summaries | High -- eliminates manual notetaking | Mainstream |
805
+ | Research briefs | High -- 5 min vs. 30 min pre-call | Mainstream |
806
+ | Proposal generation | Medium -- draft + human review | Growing |
807
+ | Objection handling | Medium -- real-time suggestions | Emerging |
808
+ | Roleplay/training | Medium -- practice against AI | Emerging |
809
+ | Deal coaching | High -- automatic MEDDPICC analysis | Emerging |
810
+ | Forecasting | High -- multi-signal prediction | Maturing |
811
+
812
+ ### 12.5 AI Risks & Ethics
813
+
814
+ - **Bias:** Models trained on historical data may perpetuate biases
815
+ - **Privacy:** Call recording requires consent (LGPD Art. 7)
816
+ - **Authenticity:** Prospects who discover they are talking to AI may lose trust
817
+ - **Dependency:** Reps who stop developing skills because "AI does it"
818
+ - **Regulatory:** LGPD, GDPR, CAN-SPAM -- AI does not exempt from compliance
819
+
820
+ ---
821
+
822
+ ## 13. Brazilian Sales Context
823
+
824
+ ### 13.1 Inside Sales in Brazil
825
+
826
+ Brazil adopted inside sales faster and deeper than many countries due to:
827
+ - Continental geography (expensive/slow travel)
828
+ - Growing digital infrastructure (WhatsApp, Zoom, Google Meet)
829
+ - COVID-19 accelerated adoption by 5-10 years
830
+ - Talent concentrated in few cities (SP, BH, CWB, Floripa, POA)
831
+
832
+ **Brazil-specific behaviors:**
833
+ - **WhatsApp as commercial channel** -- Not informal in Brazil; official business channel for BDRs (prospecting), AEs (follow-up), CS (support)
834
+ - **Video calls as default** -- Google Meet/Zoom replaced in-person meetings even post-COVID
835
+ - **Schedule** -- Meetings typically 9h-18h BRT. Avoid Friday after 4 PM
836
+ - **Time zones** -- BRT (UTC-3) with Manaus (UTC-4). Impacts sales to North/Northeast
837
+
838
+ ### 13.2 Tax Impact on Sales (Pre-Tax Reform)
839
+
840
+ | Tax | Incidence | Typical Rate |
841
+ |-----|-----------|-------------|
842
+ | ICMS | Goods sales, some services | 7-18% (varies by state) |
843
+ | ISS | Services | 2-5% (varies by municipality) |
844
+ | PIS | Revenue | 0.65% (cumulative) or 1.65% (non-cumulative) |
845
+ | COFINS | Revenue | 3% (cumulative) or 7.6% (non-cumulative) |
846
+ | IPI | Industrialized products | 0-300% (varies by product) |
847
+
848
+ ### 13.3 Tax Reform 2026-2033 (Lei Complementar 214)
849
+
850
+ - **2026 is a test year:** CBS (0.9%) and IBS (0.1%) enter with symbolic informational rates -- no effective collection, but taxpayers must calculate and report
851
+ - CBS (replacing PIS/COFINS) starts effective 2027
852
+ - IBS (replacing ICMS/ISS) gradual transition through 2033
853
+ - Dual IVA with reference rate estimated at **~28%** (CBS ~9.3% + IBS ~18.7%), among the highest in the world
854
+ - **Impact on pricing:** Companies must recalculate prices under new regime; existing contracts may require amendments
855
+
856
+ **Nota Fiscal:** All invoicing in Brazil requires NF-e (products) or NFS-e (services). Brazilian CRMs typically integrate with NF systems. International CRMs need API integration with local ERPs (TOTVS, Omie, Bling).
857
+
858
+ ### 13.4 Brazilian Sales Tech Ecosystem
859
+
860
+ | Company | Product | Category |
861
+ |---------|---------|----------|
862
+ | RD Station (TOTVS) | CRM + Marketing Automation | CRM/Marketing |
863
+ | Meetime | Sales engagement + intelligence | Sales engagement |
864
+ | Exact Sales (RD Station) | Pre-sales / qualification | Sales engagement |
865
+ | Econodata | Data enrichment / prospecting | Intelligence |
866
+ | Ramper | Outbound automation | Sales engagement |
867
+ | Ploomes | CRM + proposals | CRM |
868
+ | Moskit | CRM SMB | CRM |
869
+ | Leadster | Conversion chatbot | Lead gen |
870
+ | Pipefy | Process automation | Ops |
871
+ | Conta Azul | SME ERP | Finance/Ops |
872
+
873
+ ### 13.5 Brazilian Sales Culture
874
+
875
+ **What works in Brazil:**
876
+ - Personal rapport before business -- asking about family, football, weekend is a prerequisite
877
+ - WhatsApp first, email second -- response rate 3-5x higher on WhatsApp
878
+ - Flexibility -- "o combinado nao sai caro" -- culture values adaptability
879
+ - Referrals (indicacao) -- "who referred you?" opens doors. Networking is strong currency
880
+ - Patience with bureaucracy -- purchasing processes (especially government) are slow
881
+
882
+ **What does NOT work:**
883
+ - Cold emails in English (even for multinational BR companies)
884
+ - Excessive aggressiveness (in Brazil, "pushy" burns relationships)
885
+ - Ignoring hierarchy (in traditional companies, talking to subordinates before the boss can offend)
886
+ - Rigid deadlines without margin (Brazilian culture operates with "safety margin" in timelines)
887
+
888
+ ### 13.6 Government Sales (B2G)
889
+
890
+ - **Licitacao** -- Law 14.133/2021 (New Procurement Law) governs public purchases
891
+ - **Pregao Eletronico** -- Most common modality for common goods and services
892
+ - **Comprasnet/PNCP** -- Government procurement portals
893
+ - **Nota de Empenho** -- Budget commitment document (equivalent to PO)
894
+ - **Payment** -- Typical cycle 30-90 days after delivery + bureaucracy
895
+
896
+ ---
897
+
898
+ ## 14. Compensation & Incentives (Brazil)
899
+
900
+ ### 14.1 OTE Splits
901
+
902
+ | Role | Base : Variable | Rationale |
903
+ |------|----------------|----------|
904
+ | SDR/BDR | 70:30 | More control over output (activities) |
905
+ | AE (SMB) | 50:50 | Market standard, incentivizes performance |
906
+ | AE (Enterprise) | 60:40 | Long cycles, more base for stability |
907
+ | AM/CSM | 70:30 or 80:20 | Retention-focused, less volatility |
908
+ | Sales Manager | 60:40 | Combines team + individual performance |
909
+
910
+ ### 14.2 Brazil Compensation Benchmarks (2025-2026, CLT, Sao Paulo)
911
+
912
+ | Role | Monthly Base (R$) | Monthly Variable (R$) |
913
+ |------|-------------------|----------------------|
914
+ | SDR/BDR Junior | 3,500-5,000 | 1,500-3,000 |
915
+ | SDR/BDR Senior | 5,000-7,000 | 2,000-4,000 |
916
+ | AE SMB | 6,000-9,000 | 3,000-6,000 |
917
+ | AE Mid-Market | 8,000-14,000 | 5,000-10,000 |
918
+ | AE Enterprise | 12,000-20,000 | 8,000-20,000 |
919
+ | Sales Manager | 15,000-25,000 | 8,000-15,000 |
920
+ | Head of Sales | 20,000-40,000 | 10,000-30,000 |
921
+ | VP/CRO | 35,000-60,000+ | 20,000-50,000+ |
922
+
923
+ Note: SP pays 20-40% above national average.
924
+
925
+ ### 14.3 Commission Structures
926
+
927
+ **Tiered/Ramp (best practice):**
928
+ - 0-80% quota: 8% commission
929
+ - 80-100% quota: 10% commission
930
+ - 100-120% quota: 14% commission (accelerator)
931
+ - >120% quota: 18% commission (super-accelerator)
932
+
933
+ **Key rules:**
934
+ - Quota should be 4-6x OTE variable (e.g., R$100K variable -> R$400-600K quota)
935
+ - Accelerators are crucial for retaining top performers
936
+ - Clawbacks: typically full if churn 0-3 months, 50% if 4-6 months, 0% after 6 months
937
+
938
+ ### 14.4 SPIFs (Sales Performance Incentive Funds)
939
+
940
+ Temporary incentives for specific behaviors. Rules:
941
+ - Short duration (1-4 weeks)
942
+ - Specific, measurable objective
943
+ - Accessible to all (not just top performers)
944
+ - Paid quickly after achievement
945
+ - Do not fatigue the team with constant SPIFs
946
+
947
+ ---
948
+
949
+ ## 15. Sales Leadership Frameworks
950
+
951
+ ### 15.1 Hiring -- The 5 Traits That Predict Success (Mark Roberge)
952
+
953
+ Based on regression analysis with 1,000+ hires at HubSpot:
954
+
955
+ 1. **Coachability** -- Ability to absorb and apply feedback (strongest correlation with performance)
956
+ 2. **Curiosity** -- Genuine desire to understand the client and their business
957
+ 3. **Prior Success** -- Track record of exceeding goals (not necessarily in sales)
958
+ 4. **Intelligence** -- Analytical and problem-solving capacity
959
+ 5. **Work Ethic** -- Discipline and consistency in effort
960
+
961
+ **What does NOT matter as much as expected:**
962
+ - Previous sales experience (coachability matters more)
963
+ - Charisma/extroversion (Adam Grant's research: ambiverts perform best)
964
+ - Technical product knowledge (can be taught)
965
+
966
+ ### 15.2 1:1 Structure (30 min weekly)
967
+
968
+ 1. **Rep owns the agenda (first 15 min):** What do you need from me? Deals needing help? Blockers?
969
+ 2. **Manager coaches (last 15 min):** Quick pipeline review (top 3 deals). Skill development (1 focus area per month). Career development (when appropriate).
970
+
971
+ **Anti-patterns:** 1:1 that becomes status update; canceled every week; manager talks 100%; exclusive number focus without skill coaching.
972
+
973
+ ### 15.3 High-Performance Sales Culture
974
+
975
+ - **Accountability without blame** -- Results matter, but failures are learning opportunities
976
+ - **Transparency** -- Public dashboards, leaderboards, shared results
977
+ - **Celebration** -- Ring the bell, public recognition, deal of the week
978
+ - **Healthy competition** -- Gamification without backstabbing
979
+ - **Learning culture** -- Call reviews, best practice sharing, win/loss sessions
980
+ - **Work-life balance** -- Burnout in sales is epidemic. Sustainable cultures outperform long-term
981
+
982
+ ---
983
+
984
+ ## 16. Essential Reading & References
985
+
986
+ ### Tier 1 -- Mandatory Reading
987
+
988
+ | Book | Author | Year | Why It Matters |
989
+ |------|--------|------|---------------|
990
+ | SPIN Selling | Neil Rackham | 1988 | Empirical basis for consultative selling |
991
+ | The Challenger Sale | Dixon & Adamson | 2011 | Redefines what works in B2B sales |
992
+ | Predictable Revenue | Aaron Ross | 2011 | Blueprint for B2B SaaS sales engine |
993
+ | The Sales Acceleration Formula | Mark Roberge | 2015 | Scaling sales with data and process |
994
+ | Never Split the Difference | Chris Voss | 2016 | Advanced negotiation applicable to any deal |
995
+
996
+ ### Tier 2 -- Highly Recommended
997
+
998
+ | Book | Author | Year | Focus |
999
+ |------|--------|------|-------|
1000
+ | Fanatical Prospecting | Jeb Blount | 2015 | Disciplined multi-channel prospecting |
1001
+ | Gap Selling | Keenan | 2018 | Modern discovery and diagnosis |
1002
+ | The Sales Development Playbook | Trish Bertuzzi | 2016 | SDR team blueprint |
1003
+ | Revenue Operations | Diorio & Hummel | 2022 | RevOps as discipline |
1004
+ | MEDDICC | Andy Whyte | 2020 | Practical MEDDPICC guide |
1005
+
1006
+ ### Key People in Sales
1007
+
1008
+ | Person | Key Contribution |
1009
+ |--------|-----------------|
1010
+ | Neil Rackham | SPIN Selling -- empirical research that revolutionized sales |
1011
+ | Matt Dixon & Brent Adamson | Challenger Sale -- redefined the ideal seller profile |
1012
+ | Aaron Ross | Predictable Revenue -- SDR/AE separation, Cold Calling 2.0 |
1013
+ | Mark Roberge | Sales Acceleration Formula -- hiring and process with data |
1014
+ | Jacco van der Kooij | Winning by Design -- Revenue Architecture, Bowtie Model |
1015
+ | Jason Lemkin | SaaStr -- largest SaaS community, metrics expertise |
1016
+ | Chris Voss | FBI negotiation applied to business |
1017
+ | David Sandler | Anti-sales philosophy, buyer qualifies |
1018
+
1019
+ ### Conferences & Communities
1020
+
1021
+ | Event | Focus |
1022
+ |-------|-------|
1023
+ | SaaStr Annual | SaaS sales/revenue (largest) |
1024
+ | Pavilion | Revenue leadership community |
1025
+ | Dreamforce (Salesforce) | Salesforce ecosystem |
1026
+ | RD Summit | Marketing and sales (Brazil) |
1027
+ | Vendas B2B Summit (Meetime) | Inside sales (Brazil) |
1028
+
1029
+ ---
1030
+
1031
+ ## 17. Actionable Checklists
1032
+
1033
+ ### New Sales Operation Setup Checklist
1034
+
1035
+ - [ ] Define ICP (Ideal Customer Profile) with firmographic and behavioral criteria
1036
+ - [ ] Choose and implement CRM (consider Brazilian needs: NF integration, WhatsApp)
1037
+ - [ ] Define unified funnel stages with entry/exit criteria
1038
+ - [ ] Establish lead scoring methodology (MQL, SQL definitions)
1039
+ - [ ] Create outbound cadence templates (email, phone, LinkedIn, WhatsApp)
1040
+ - [ ] Build discovery call framework (SPIN or GAP Selling)
1041
+ - [ ] Create proposal and pricing templates
1042
+ - [ ] Define discount governance (approval thresholds)
1043
+ - [ ] Set up pipeline review cadence (weekly)
1044
+ - [ ] Implement forecasting process (categories: commit, best case, pipeline)
1045
+ - [ ] Create competitive battle cards
1046
+ - [ ] Design compensation plan (OTE, splits, accelerators)
1047
+ - [ ] Build onboarding program (30-60-90 days)
1048
+ - [ ] Establish win/loss analysis process
1049
+
1050
+ ### Pre-Deal Qualification Checklist (MEDDPICC)
1051
+
1052
+ - [ ] **M**etrics: Quantified business impact identified
1053
+ - [ ] **E**conomic Buyer: Identified and engaged (or clear path to access)
1054
+ - [ ] **D**ecision Criteria: Documented and validated with client
1055
+ - [ ] **D**ecision Process: Steps, timeline, and stakeholders mapped
1056
+ - [ ] **P**aper Process: Procurement, legal, security requirements known
1057
+ - [ ] **I**dentify Pain: Real pain validated with business impact
1058
+ - [ ] **C**hampion: Identified with power, pain, and vision confirmed
1059
+ - [ ] **C**ompetition: Known competitors and positioning strategy defined
1060
+
1061
+ ### Pipeline Review Checklist (Weekly)
1062
+
1063
+ - [ ] Review pipeline coverage ratio (target: 3-4x quota)
1064
+ - [ ] Flag deals with no activity in 7+ days
1065
+ - [ ] Flag deals with close date pushed 2+ times
1066
+ - [ ] Validate Champion status on top 10 deals
1067
+ - [ ] Review MEDDPICC score on deals >R$100K
1068
+ - [ ] Identify deals in aging (>2x average stage duration)
1069
+ - [ ] Update forecast categories (commit, best case, pipeline)
1070
+ - [ ] Remove dead deals (monthly deep scrub)
1071
+
1072
+ ### AI Integration Checklist
1073
+
1074
+ - [ ] Implement conversation intelligence (Gong or similar)
1075
+ - [ ] Set up AI-powered lead scoring
1076
+ - [ ] Deploy email drafting AI for SDR/BDR team
1077
+ - [ ] Enable automated call summaries and CRM notes
1078
+ - [ ] Implement AI forecasting as complement to human forecast
1079
+ - [ ] Establish AI ethics policy (consent for recordings, bias audits)
1080
+ - [ ] Train team on AI as copilot (not replacement)
1081
+ - [ ] Monitor AI SDR performance vs. human benchmarks monthly
1082
+
1083
+ ### Brazilian Market Compliance Checklist
1084
+
1085
+ - [ ] NF-e/NFS-e integration with CRM or ERP
1086
+ - [ ] Tax calculation system for ICMS/ISS/PIS/COFINS (and CBS/IBS transition)
1087
+ - [ ] WhatsApp Business API integration for sales communications
1088
+ - [ ] LGPD compliance for lead data collection and processing
1089
+ - [ ] Nota de Empenho handling for government sales
1090
+ - [ ] Brazilian payment methods support (boleto, PIX, cartao)
1091
+ - [ ] Clawback provisions aligned with CLT labor law
1092
+
1093
+ ---
1094
+
1095
+ ## Cross-References
1096
+
1097
+ | Topic | Detailed File |
1098
+ |-------|--------------|
1099
+ | Methodology comparison | `sales-methodology-comparison.md` |
1100
+ | Qualification deep dive | `sales-qualification-methodology.md` |
1101
+ | Funnel architecture | `funnel-architecture-reference.md` |
1102
+ | Account-based selling | `account-based-selling.md` |
1103
+ | AI in sales | `ai-in-sales.md` |
1104
+ | Brazilian context | `brazilian-sales-context.md` |
1105
+ | Negotiation | `negotiation-frameworks.md` |
1106
+ | Pricing/offer design | `offer-design-frameworks.md` |
1107
+ | Prospecting | `prospecting-pipeline-generation.md` |
1108
+ | Revenue models | `revenue-architecture-models.md` |
1109
+ | Compensation (Brazil) | `sales-compensation-brazil.md` |
1110
+ | Tech stack | `commercial-tech-stack-guide.md` |
1111
+ | Customer success | `customer-success-operations.md` |
1112
+ | Analytics | `commercial-analytics-reporting.md` |
1113
+ | Sales enablement | `sales-enablement-playbook.md` |
1114
+ | PLG/PLS | `plg-pls-framework.md` |
1115
+ | Hormozi frameworks | `hormozi-business-frameworks.md` |
1116
+ | Competitive response | `competitive-response-playbook.md` |
1117
+ | Productization | `agency-productization-playbook.md` |
1118
+ | AI as infrastructure | `ai-as-competitive-infrastructure.md` |
1119
+
1120
+ ---
1121
+
1122
+ *Sales & Revenue Master Reference v1.0 -- SINAPSE squad-commercial knowledge base*
1123
+ *Source: MS-003 research (55+ sources, quality-verified)*