lib/ ├── main.dart ├── screens/ │ ├── home_screen.dart │ ├── product_detail_screen.dart │ ├── cart_screen.dart │ ├── checkout_screen.dart │ ├── order_status_screen.dart │ └── admin_panel_screen.dart ← (opcional) ├── widgets/ │ ├── product_card.dart │ ├── cart_item.dart │ ├── category_selector.dart │ └── custom_button.dart ├── models/ │ ├── product.dart │ ├── cart_item.dart │ └── order.dart ├── services/ │ ├── api_service.dart │ ├── pix_payment_service.dart │ └── order_service.dart assets/ ├── images/ ├── icons/ pubspec.yaml