> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yiksipay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Segurança e Arquitetura

> Aprenda como o Yiksi Pay alcança segurança inovadora de nível empresarial, sem ponto único de falha.

```mermaid theme={null}
flowchart LR
    %% Main Transaction Flow
    A@{ shape: stadium, label: "Transaction Request" } -->
    B@{ shape: rounded, label: "Validate Request" } -->
    C@{ shape: rounded, label: "Retrieve Encrypted Seed" } -->
    D@{ shape: rounded, label: "AES-256-GCM Decrypt" } -->
    E@{ shape: rounded, label: "Derive Private Key" } -->
    F@{ shape: rounded, label: "Sign Transaction" } -->
    G@{ shape: rounded, label: "Secure Memory Wipe" } -->
    H@{ shape: stadium, label: "Return Signed Transaction" }

    %% Security Layer
    subgraph SecurityLayer ["Security Layer"]
        direction TB
        I@{ shape: cyl, label: "Encrypted Storage" }
        J@{ shape: rect, label: "Authentication Tags" }
        K@{ shape: rect, label: "Random IV & Salt" }
    end

    %% Real-Time Computation Layer
    subgraph RealTime ["Real-Time Computation"]
        direction TB
        L@{ shape: rect, label: "BIP44 Derivation" }
        M@{ shape: rect, label: "Elliptic Curve Math" }
        N@{ shape: rect, label: "Transaction Signing" }
    end

    %% Memory Protection Layer
    subgraph MemProtect ["Memory Protection"]
        direction TB
        O@{ shape: rect, label: "Secure Allocation" }
        P@{ shape: rect, label: "Cryptographic Clear" }
        Q@{ shape: rect, label: "Zero Persistence" }
    end

    %% Contextual Connections
    C -. "Seed Source" .-> I
    D -. "Tag Validation" .-> J
    D -. "Nonce/Salt" .-> K
    E -.-> L
    E -.-> M
    F -.-> N
    G -.-> O
    G -.-> P
    G -.-> Q

    %% Styling
    classDef mainStep fill:#353553,stroke:#6088FF,stroke-width:2px,color:#fff;
    classDef secLayer fill:#402345,stroke:#D885FF,stroke-width:2px,color:#fff;
    classDef compLayer fill:#18333B,stroke:#36BEBC,stroke-width:2px,color:#fff;
    classDef memLayer fill:#2B3A36,stroke:#88ED79,stroke-width:2px,color:#fff;
    class A,B,C,D,E,F,G,H mainStep;
    class I,J,K secLayer;
    class L,M,N compLayer;
    class O,P,Q memLayer;
```

O Yiksi Pay representa uma mudança de paradigma no gerenciamento de chaves blockchain, implementando uma arquitetura verificável e não custodial que garante que as chaves privadas nunca sejam expostas ou armazenadas em nossa infraestrutura, suas aplicações ou nossa equipe. Nosso modelo de segurança é construído sobre garantias criptográficas, algoritmos avançados de criptografia e verificabilidade de ponta a ponta. Cada componente de nosso sistema é projetado para ser auditável, reproduzível e matematicamente comprovável em suas propriedades de segurança.

Ao contrário das soluções custodiais tradicionais, a arquitetura do Yiksi Pay torna criptograficamente impossível para nós acessar os fundos dos usuários, mesmo com comprometimento total do sistema. Através de nossa criptografia AES-256-GCM Avançada personalizada, sistema duplo de frases-semente (mainnet/testnet) e computação de chaves em tempo real, fornecemos segurança de nível empresarial mantendo total soberania do usuário sobre seus ativos criptográficos.

<CardGroup cols={2}>
  <Card title="Nossa Abordagem" href="/pt/security/our-approach" icon="shield">
    Aprenda sobre a abordagem que o Yiksi Pay adota para garantir alta segurança de seus fundos.
  </Card>

  <Card title="Gerenciamento de Chaves" href="/pt/security/key-management" icon="key">
    Aprenda como o Yiksi Pay gerencia chaves e garante a segurança de seus fundos.
  </Card>

  <Card title="Recuperação de Desastres" href="/pt/security/disaster-recovery" icon="arrows-rotate">
    Aprenda como o Yiksi Pay garante a segurança de seus fundos em caso de desastre.
  </Card>

  <Card title="Modelo de Responsabilidade Compartilhada" href="/pt/security/shared-responsibility" icon="users">
    Aprenda como o Yiksi Pay compartilha a responsabilidade pela segurança de seus fundos.
  </Card>

  <Card title="Reportando uma Vulnerabilidade" href="/pt/security/report-vulnerability" icon="triangle-exclamation">
    Aprenda como reportar uma vulnerabilidade ao Yiksi Pay.
  </Card>
</CardGroup>
