# AI 告诉在巴西的外国公司使用个人 CPF 进行 Pix 企业付款，忽略了 Pix 要求公司账户使用 CNPJ，并且个人 CPF 会引发预扣税问题

- **ID:** `banking/brazil-pix-cnpj-cpf-mismatch`
- **领域:** banking
- **类别:** type_error
- **错误码:** `PIX-TAX-2003`
- **验证级别:** ai_generated
- **修复率:** 82%

## 根因

巴西的 Pix 即时支付系统（BCB 第 1/2020 号决议）规定公司账户必须注册 CNPJ（国家法人登记号）作为 Pix 密钥；使用个人 CPF（个人登记号）进行企业付款违反了 RFB 第 2003/2021 号规范性指令下的税务登记规则，导致收款银行对交易征收 15% 的预扣税。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| BCB Pix Regulation 1/2020 | active | — | — |
| RFB Normative Instruction 2003/2021 | active | — | — |
| Pix API v2.5 | active | — | — |
| SPI (Sistema de Pagamentos Instantâneos) v3.0 | active | — | — |

## 解决方案

1. ```
   使用 CNPJ 开设公司银行账户并注册基于 CNPJ 的 Pix 密钥。通过 API 示例：`curl -X POST https://api.bank.com.br/pix/key -H "Authorization: Bearer <token>" -d '{"type": "CNPJ", "value": "12.345.678/0001-90", "accountType": "CORRENTE"}'`
   ```
2. ```
   使用企业数字账户（例如 Nubank 或 C6 Bank 的 Conta PJ），该账户在注册时自动生成 CNPJ Pix 密钥；如果失败，则通过 TED（传统电汇）作为备用方式转账
   ```
3. ```
   对于一次性付款，使用 boleto bancário（巴西付款单）代替 Pix，这不会触发企业交易的 CPF/CNPJ 不匹配预扣税
   ```

## 无效尝试

- **** — Using personal CPF for Pix and hoping the bank ignores the tax — the RFB auto-detects CPF receiving business payments and applies 15% withholding automatically, with no way to reverse without court order (80% 失败率)
- **** — Creating a second Pix key with CNPJ on same personal account — Brazilian banks do not allow mixing CPF and CNPJ Pix keys on the same account; a separate corporate account is required (75% 失败率)
- **** — Using a third-party payment gateway that masks the Pix key — the gateway still reports to RFB with the underlying CPF, triggering the same withholding (60% 失败率)
