flowchart TB
C["🚦 Highway Safety<br/>Site A ou Site B?"]
U["⚖️ Utilitarismo<br/>Qual reduz mais o total<br/>de mortes e feridos?"]
K["📏 Teoria Kantiana<br/>Qual distribui o risco<br/>mais igualmente?"]
A1["? resposta pendente"]
A2["? resposta pendente"]
C --> U --> A1
C --> K --> A2
classDef case fill:#3b82f6,stroke:#1d4ed8,stroke-width:2px,color:#fff;
classDef util fill:#10b981,stroke:#047857,stroke-width:2px,color:#fff;
classDef kant fill:#f59e0b,stroke:#b45309,stroke-width:2px,color:#fff;
classDef pending fill:#e5e7eb,stroke:#9ca3af,stroke-width:2px,color:#374151;
class C case;
class U util;
class K kant;
class A1,A2 pending;