File size: 15,638 Bytes
04caf07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sistema NFe</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        .card-effect {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            background-color: white;
        }
        @media (max-width: 640px) {
            .navbar-items {
                display: none;
            }
            .mobile-menu-button {
                display: block;
            }
        }
    </style>
</head>
<body class="min-h-screen flex flex-col">
    <!-- Navbar -->
    <header class="bg-white shadow-md fixed w-full z-10">
        <div class="container mx-auto px-4 py-3 flex justify-between items-center">
            <div class="text-2xl font-bold text-blue-600">SistemaNFe</div>
            
            <!-- Desktop Nav -->
            <nav class="navbar-items hidden md:block">
                <ul class="flex space-x-6">
                    <li><a href="#" class="text-gray-600 hover:text-blue-600 transition">Home</a></li>
                    <li><a href="#" onclick="showConstruction()" class="text-gray-600 hover:text-blue-600 transition">Login</a></li>
                    <li><a href="#" onclick="showConstruction()" class="text-gray-600 hover:text-blue-600 transition">Registrar</a></li>
                    <li><a href="#" onclick="showConstruction()" class="text-gray-600 hover:text-blue-600 transition">Sobre Nós</a></li>
                    <li><a href="#nfe-reader" class="text-blue-600 font-medium hover:text-blue-800 transition">Leitor NFe</a></li>
                </ul>
            </nav>
            
            <!-- Mobile Menu Button -->
            <button class="mobile-menu-button md:hidden text-gray-600" onclick="toggleMobileMenu()">
                <i class="fas fa-bars text-2xl"></i>
            </button>
        </div>
        
        <!-- Mobile Menu -->
        <div id="mobileMenu" class="hidden md:hidden bg-white border-t">
            <ul class="flex flex-col space-y-2 px-4 py-3">
                <li><a href="#" class="block text-gray-600 hover:text-blue-600 transition p-2">Home</a></li>
                <li><a href="#" onclick="showConstruction()" class="block text-gray-600 hover:text-blue-600 transition p-2">Login</a></li>
                <li><a href="#" onclick="showConstruction()" class="block text-gray-600 hover:text-blue-600 transition p-2">Registrar</a></li>
                <li><a href="#" onclick="showConstruction()" class="block text-gray-600 hover:text-blue-600 transition p-2">Sobre Nós</a></li>
                <li><a href="#nfe-reader" class="block text-blue-600 font-medium hover:text-blue-800 transition p-2">Leitor NFe</a></li>
            </ul>
        </div>
    </header>

    <!-- Main Content Container -->
    <main class="flex-grow container mx-auto px-4 pt-24 pb-16">
        <!-- Page Content -->
        <div id="pageContent">
            <!-- Home Page (default content) -->
            <div id="homePage">
                <!-- Hero Image -->
                <div class="card-effect mb-8 overflow-hidden">
                    <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" 
                         alt="Financial analysis" class="w-full h-64 md:h-80 object-cover">
                </div>
                
                <!-- Description -->
                <div class="card-effect p-6 mb-8">
                    <h2 class="text-2xl font-semibold text-gray-800 mb-4">Sistema Avançado de Gestão NFe</h2>
                    <p class="text-gray-600 leading-relaxed">
                        Bem-vindo ao nosso sistema especializado em Notas Fiscais Eletrônicas. Oferecemos soluções completas para gestão, 
                        análise e automação de processos relacionados a NFes. Nossa plataforma foi desenvolvida para facilitar o dia a dia 
                        de empresas que lidam com grandes volumes de documentos fiscais.
                    </p>
                </div>
                
                <!-- Features Section -->
                <div class="space-y-8">
                    <!-- Feature 1 -->
                    <div class="card-effect p-6 flex flex-col md:flex-row items-start">
                        <div class="flex-shrink-0 mb-4 md:mb-0 md:mr-6">
                            <div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
                                <i class="fas fa-file-invoice-dollar text-2xl"></i>
                            </div>
                        </div>
                        <div>
                            <h3 class="text-xl font-semibold text-gray-800 mb-2">Leitura Automatizada</h3>
                            <p class="text-gray-600">
                                Sistema inteligente que identifica e extrai automaticamente os dados principais de qualquer NFe.
                            </p>
                        </div>
                    </div>
                    
                    <!-- Feature 2 -->
                    <div class="card-effect p-6 flex flex-col md:flex-row items-start">
                        <div class="flex-shrink-0 mb-4 md:mb-0 md:mr-6">
                            <div class="w-16 h-16 rounded-full bg-green-100 flex items-center justify-center text-green-600">
                                <i class="fas fa-shield-alt text-2xl"></i>
                            </div>
                        </div>
                        <div>
                            <h3 class="text-xl font-semibold text-gray-800 mb-2">Validação Segura</h3>
                            <p class="text-gray-600">
                                Verificação completa da autenticidade dos documentos com criptografia de ponta a ponta.
                            </p>
                        </div>
                    </div>
                    
                    <!-- Feature 3 -->
                    <div class="card-effect p-6 flex flex-col md:flex-row items-start">
                        <div class="flex-shrink-0 mb-4 md:mb-0 md:mr-6">
                            <div class="w-16 h-16 rounded-full bg-purple-100 flex items-center justify-center text-purple-600">
                                <i class="fas fa-chart-line text-2xl"></i>
                            </div>
                        </div>
                        <div>
                            <h3 class="text-xl font-semibold text-gray-800 mb-2">Relatórios Customizáveis</h3>
                            <p class="text-gray-600">
                                Geração de relatórios detalhados com filtros personalizados para análise de dados fiscais.
                            </p>
                        </div>
                    </div>
                    
                    <!-- Feature 4 -->
                    <div class="card-effect p-6 flex flex-col md:flex-row items-start">
                        <div class="flex-shrink-0 mb-4 md:mb-0 md:mr-6">
                            <div class="w-16 h-16 rounded-full bg-yellow-100 flex items-center justify-center text-yellow-600">
                                <i class="fas fa-cloud-upload-alt text-2xl"></i>
                            </div>
                        </div>
                        <div>
                            <h3 class="text-xl font-semibold text-gray-800 mb-2">Integração Contínua</h3>
                            <p class="text-gray-600">
                                Conecte-se facilmente com os principais sistemas ERP do mercado para sincronização de dados.
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            
            <!-- NFe Reader Page -->
            <div id="nfeReaderPage" class="hidden">
                <div class="card-effect p-8 max-w-2xl mx-auto text-center">
                    <h2 class="text-2xl font-semibold text-gray-800 mb-6">Leitor de Nota Fiscal Eletrônica</h2>
                    
                    <div class="mb-8">
                        <img src="https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" 
                             alt="Document analysis" class="w-64 h-64 mx-auto object-cover rounded-lg shadow">
                    </div>
                    
                    <div class="mb-6">
                        <label for="nfeOptions" class="block text-gray-700 font-medium mb-2">Selecione uma opção:</label>
                        <select id="nfeOptions" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
                            <option value="check">Checar Nota Fiscal</option>
                            <option value="5">5</option>
                            <option value="30">30</option>
                        </select>
                    </div>
                    
                    <button class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-md transition duration-300">
                        Processar Nota
                    </button>
                </div>
            </div>
            
            <!-- Construction Page -->
            <div id="constructionPage" class="hidden">
                <div class="card-effect p-8 max-w-2xl mx-auto text-center">
                    <div class="text-6xl text-gray-400 mb-6">
                        <i class="fas fa-tools"></i>
                    </div>
                    <h2 class="text-2xl font-semibold text-gray-800 mb-4">Página em Construção</h2>
                    <p class="text-gray-600 mb-6">
                        Estamos trabalhando para trazer a você a melhor experiência possível. 
                        Esta funcionalidade estará disponível em breve!
                    </p>
                    <button onclick="backToHome()" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-md transition duration-300">
                        Voltar para Home
                    </button>
                </div>
            </div>
        </div>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-8">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div>
                    <h3 class="text-lg font-semibold mb-4">Sobre Nós</h3>
                    <p class="text-gray-300">
                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris. Vivamus hendrerit arcu sed erat molestie vehicula.
                    </p>
                </div>
                <div>
                    <h3 class="text-lg font-semibold mb-4">Serviços</h3>
                    <p class="text-gray-300">
                        Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.
                    </p>
                </div>
                <div>
                    <h3 class="text-lg font-semibold mb-4">Contato</h3>
                    <p class="text-gray-300">
                        At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque.
                    </p>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
                &copy; 2023 SistemaNFe. Todos os direitos reservados.
            </div>
        </div>
    </footer>

    <script>
        // Handle mobile menu toggle
        function toggleMobileMenu() {
            const mobileMenu = document.getElementById('mobileMenu');
            mobileMenu.classList.toggle('hidden');
        }
        
        // Show construction page
        function showConstruction() {
            document.getElementById('homePage').classList.add('hidden');
            document.getElementById('nfeReaderPage').classList.add('hidden');
            document.getElementById('constructionPage').classList.remove('hidden');
            window.scrollTo(0, 0);
            return false; // Prevent default anchor behavior
        }
        
        // Back to home from construction page
        function backToHome() {
            document.getElementById('homePage').classList.remove('hidden');
            document.getElementById('constructionPage').classList.add('hidden');
            window.scrollTo(0, 0);
        }
        
        // Handle navigation between pages
        document.addEventListener('DOMContentLoaded', function() {
            // Check for hash in URL (for NFe Reader link)
            if (window.location.hash === '#nfe-reader') {
                document.getElementById('homePage').classList.add('hidden');
                document.getElementById('nfeReaderPage').classList.remove('hidden');
                window.scrollTo(0, 0);
            }
            
            // Add click handlers for navigation
            document.querySelectorAll('a[href="#"]').forEach(link => {
                link.addEventListener('click', function(e) {
                    if (this.textContent.toLowerCase() !== 'home') {
                        showConstruction();
                        e.preventDefault();
                    }
                });
            });
            
            // Home link should always show home page
            document.querySelectorAll('a[href="#"]').forEach(link => {
                if (link.textContent.toLowerCase() === 'home') {
                    link.addEventListener('click', function(e) {
                        document.getElementById('homePage').classList.remove('hidden');
                        document.getElementById('nfeReaderPage').classList.add('hidden');
                        document.getElementById('constructionPage').classList.add('hidden');
                        window.scrollTo(0, 0);
                    });
                }
            });
            
            // NFe Reader link handler (if not using hash)
            document.querySelectorAll('a[href="#nfe-reader"]').forEach(link => {
                link.addEventListener('click', function(e) {
                    document.getElementById('homePage').classList.add('hidden');
                    document.getElementById('nfeReaderPage').classList.remove('hidden');
                    window.scrollTo(0, 0);
                });
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Diogog/webbo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>