graph TB
subgraph "Monolito - Arka Actual"
UI[Interfaz Web]
BL[Lógica de Negocio]
subgraph "Módulos Acoplados"
INV[Inventario]
ORD[Órdenes]
PAY[Pagos]
NOT[Notificaciones]
end
DB[(Base de Datos Única)]
end
UI --> BL
BL --> INV
BL --> ORD
BL --> PAY
BL --> NOT
INV --> DB
ORD --> DB
PAY --> DB
NOT --> DB
style DB fill:#ff5555,color:#fff
style INV fill:#ffb86c,color:#000
style ORD fill:#ffb86c,color:#000
