File size: 28,457 Bytes
d3bb3e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MegaChips - Soluções em Marketing Digital</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .feature-icon {
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: #3b82f6;
        }
        .whatsapp-btn {
            background-color: #25D366;
            animation: pulse 2s infinite;
        }
    </style>
</head>
<body class="bg-gray-100 font-sans">
    <!-- Header -->
    <header class="gradient-bg text-white">
        <div class="container mx-auto px-4 py-6">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-2">
                    <i class="fas fa-bolt text-yellow-400 text-2xl"></i>
                    <h1 class="text-2xl font-bold">Mega<span class="text-yellow-400">Chips</span></h1>
                </div>
                <nav class="hidden md:flex space-x-8">
                    <a href="#servicos" class="hover:text-yellow-400 transition">Serviços</a>
                    <a href="#vantagens" class="hover:text-yellow-400 transition">Vantagens</a>
                    <a href="#depoimentos" class="hover:text-yellow-400 transition">Depoimentos</a>
                    <a href="#faq" class="hover:text-yellow-400 transition">FAQ</a>
                </nav>
                <div class="flex items-center space-x-4">
                    <a href="#contato" class="bg-yellow-400 hover:bg-yellow-500 text-blue-900 font-bold py-2 px-6 rounded-full transition">
                        Contato
                    </a>
                    <button class="md:hidden text-2xl">
                        <i class="fas fa-bars"></i>
                    </button>
                </div>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-16 md:py-24">
        <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-12 md:mb-0">
                <h2 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">
                    POTENCIALIZE SEU MARKETING DIGITAL
                </h2>
                <p class="text-xl mb-8 text-blue-100">
                    Chips de alta qualidade e contas Facebook premium para escalar seus negócios
                </p>
                <div class="flex flex-col sm:flex-row gap-4">
                    <a href="#servicos" class="bg-yellow-400 hover:bg-yellow-500 text-blue-900 font-bold py-3 px-8 rounded-full text-lg transition transform hover:scale-105 text-center">
                        <i class="fas fa-shopping-cart mr-2"></i> COMPRAR AGORA
                    </a>
                    <a href="#contato" class="bg-transparent hover:bg-blue-900 text-white font-bold py-3 px-8 rounded-full text-lg transition border-2 border-white text-center">
                        <i class="fas fa-headset mr-2"></i> SUPORTE 24/7
                    </a>
                </div>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="https://via.placeholder.com/600x400/1e3a8a/ffffff?text=MegaChips+Marketing" alt="Marketing Digital" class="rounded-xl shadow-2xl max-w-full">
            </div>
        </div>
    </section>

    <!-- Services Section -->
    <section id="servicos" class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-4 text-blue-900">
                NOSSOS SERVIÇOS PREMIUM
            </h2>
            <p class="text-center text-gray-600 mb-12 max-w-2xl mx-auto">
                Soluções completas para profissionais de marketing digital
            </p>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Service 1 -->
                <div class="bg-gray-50 rounded-xl p-8 card-hover transition">
                    <div class="text-blue-500 text-4xl mb-6">
                        <i class="fas fa-sim-card"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-4 text-blue-900">CHIPS DE ALTA QUALIDADE</h3>
                    <ul class="space-y-3 text-gray-700 mb-6">
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Ativação instantânea
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Compatível com todas operadoras
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Garantia de 30 dias
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte 24/7
                        </li>
                    </ul>
                    <div class="text-2xl font-bold text-blue-900 mb-4">R$ 90,00</div>
                    <button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-lg transition">
                        Comprar Agora
                    </button>
                </div>
                
                <!-- Service 2 -->
                <div class="bg-gray-50 rounded-xl p-8 card-hover transition relative border-2 border-yellow-400">
                    <div class="absolute top-0 right-0 bg-yellow-400 text-blue-900 font-bold px-4 py-1 rounded-bl-lg rounded-tr-lg">
                        MAIS VENDIDO
                    </div>
                    <div class="text-blue-500 text-4xl mb-6">
                        <i class="fab fa-facebook-square"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-4 text-blue-900">CONTAS FACEBOOK PREMIUM</h3>
                    <ul class="space-y-3 text-gray-700 mb-6">
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Contas verificadas e seguras
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Prontas para uso imediato
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Limites altos de anúncios
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte para recuperação
                        </li>
                    </ul>
                    <div class="text-2xl font-bold text-blue-900 mb-4">Consulte valores</div>
                    <button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-lg transition">
                        Saber Mais
                    </button>
                </div>
                
                <!-- Service 3 -->
                <div class="bg-gray-50 rounded-xl p-8 card-hover transition">
                    <div class="text-blue-500 text-4xl mb-6">
                        <i class="fas fa-briefcase"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-4 text-blue-900">BUSINESS MANAGER</h3>
                    <ul class="space-y-3 text-gray-700 mb-6">
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> BM verificadas e estáveis
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Configuração profissional
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Limites altos de gastos
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte especializado
                        </li>
                    </ul>
                    <div class="text-2xl font-bold text-blue-900 mb-4">Entre em contato</div>
                    <button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-lg transition">
                        Consultar Valores
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section id="vantagens" class="py-16 bg-gray-50">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-4 text-blue-900">
                PORQUE ESCOLHER NOSSOS SERVIÇOS
            </h2>
            <p class="text-center text-gray-600 mb-12 max-w-2xl mx-auto">
                Oferecemos as melhores soluções para profissionais sérios de marketing digital
            </p>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
                <div class="bg-white p-6 rounded-xl shadow-md feature-card text-center">
                    <div class="feature-icon text-blue-500 text-4xl mb-4">
                        <i class="fas fa-shield-alt"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2 text-blue-900">Segurança</h3>
                    <p class="text-gray-600">Nossos produtos possuem alta taxa de aprovação e segurança comprovada.</p>
                </div>
                
                <div class="bg-white p-6 rounded-xl shadow-md feature-card text-center">
                    <div class="feature-icon text-blue-500 text-4xl mb-4">
                        <i class="fas fa-rocket"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2 text-blue-900">Performance</h3>
                    <p class="text-gray-600">Produtos testados e aprovados por grandes marketeiros digitais.</p>
                </div>
                
                <div class="bg-white p-6 rounded-xl shadow-md feature-card text-center">
                    <div class="feature-icon text-blue-500 text-4xl mb-4">
                        <i class="fas fa-headset"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2 text-blue-900">Suporte</h3>
                    <p class="text-gray-600">Equipe disponível 24/7 para resolver qualquer problema que surgir.</p>
                </div>
                
                <div class="bg-white p-6 rounded-xl shadow-md feature-card text-center">
                    <div class="feature-icon text-blue-500 text-4xl mb-4">
                        <i class="fas fa-medal"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2 text-blue-900">Qualidade</h3>
                    <p class="text-gray-600">Trabalhamos apenas com produtos de alta qualidade e confiabilidade.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials Section -->
    <section id="depoimentos" class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-4 text-blue-900">
                O QUE NOSSOS CLIENTES DIZEM
            </h2>
            <p class="text-center text-gray-600 mb-12 max-w-2xl mx-auto">
                Veja a opinião de profissionais que já utilizam nossos serviços
            </p>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-gray-50 p-6 rounded-xl">
                    <div class="flex items-center mb-4">
                        <div class="text-yellow-400 text-xl mr-2">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                    <p class="text-gray-700 mb-4">"Os chips são excelentes! Nunca tive problemas com bloqueios e o suporte é muito rápido."</p>
                    <div class="flex items-center">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-10 h-10 flex items-center justify-center mr-3">
                            <i class="fas fa-user"></i>
                        </div>
                        <div>
                            <h4 class="font-bold">Carlos S.</h4>
                            <p class="text-sm text-gray-500">Marketeiro Digital</p>
                        </div>
                    </div>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-xl">
                    <div class="flex items-center mb-4">
                        <div class="text-yellow-400 text-xl mr-2">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                    <p class="text-gray-700 mb-4">"As contas Facebook que comprei aqui são as melhores que já usei. Limites altíssimos e estáveis."</p>
                    <div class="flex items-center">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-10 h-10 flex items-center justify-center mr-3">
                            <i class="fas fa-user"></i>
                        </div>
                        <div>
                            <h4 class="font-bold">Amanda R.</h4>
                            <p class="text-sm text-gray-500">Agencia de Marketing</p>
                        </div>
                    </div>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-xl">
                    <div class="flex items-center mb-4">
                        <div class="text-yellow-400 text-xl mr-2">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                    <p class="text-gray-700 mb-4">"Finalmente encontrei um fornecedor confiável de Business Manager. Recomendo demais!"</p>
                    <div class="flex items-center">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-10 h-10 flex items-center justify-center mr-3">
                            <i class="fas fa-user"></i>
                        </div>
                        <div>
                            <h4 class="font-bold">Roberto F.</h4>
                            <p class="text-sm text-gray-500">Gestor de Tráfego</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- FAQ Section -->
    <section id="faq" class="py-16 bg-gray-50">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-4 text-blue-900">
                PERGUNTAS FREQUENTES
            </h2>
            <p class="text-center text-gray-600 mb-12 max-w-2xl mx-auto">
                Tire suas dúvidas sobre nossos produtos e serviços
            </p>
            
            <div class="max-w-3xl mx-auto">
                <div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
                    <button class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
                        <span class="font-bold text-lg text-blue-900">Como faço para comprar os chips?</span>
                        <i class="fas fa-chevron-down text-blue-500"></i>
                    </button>
                    <div class="px-6 pb-6 hidden">
                        <p class="text-gray-700">Basta clicar no botão "Comprar Agora" no card de chips, selecionar a quantidade desejada e finalizar o pagamento. O chip será enviado imediatamente após a confirmação do pagamento.</p>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
                    <button class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
                        <span class="font-bold text-lg text-blue-900">As contas Facebook têm garantia?</span>
                        <i class="fas fa-chevron-down text-blue-500"></i>
                    </button>
                    <div class="px-6 pb-6 hidden">
                        <p class="text-gray-700">Sim, todas nossas contas possuem garantia de 7 dias contra qualquer problema não causado pelo cliente. Caso ocorra algum problema nesse período, fazemos a substituição imediata.</p>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
                    <button class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
                        <span class="font-bold text-lg text-blue-900">Quais são as formas de pagamento?</span>
                        <i class="fas fa-chevron-down text-blue-500"></i>
                    </button>
                    <div class="px-6 pb-6 hidden">
                        <p class="text-gray-700">Aceitamos PIX, cartão de crédito, boleto bancário e criptomoedas. Para compras acima de R$ 500,00 oferecemos desconto especial no PIX.</p>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
                    <button class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
                        <span class="font-bold text-lg text-blue-900">Como funciona o suporte?</span>
                        <i class="fas fa-chevron-down text-blue-500"></i>
                    </button>
                    <div class="px-6 pb-6 hidden">
                        <p class="text-gray-700">Nosso suporte está disponível 24 horas por dia, 7 dias por semana via WhatsApp. Temos uma equipe especializada pronta para resolver qualquer dúvida ou problema que você possa ter.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contato" class="py-16 bg-blue-900 text-white">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row">
                <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
                    <h2 class="text-3xl font-bold mb-6">ENTRE EM CONTATO</h2>
                    <p class="text-blue-200 mb-8">
                        Tem dúvidas sobre nossos produtos? Quer saber mais sobre valores de Business Manager? Entre em contato agora mesmo com nossa equipe especializada.
                    </p>
                    
                    <div class="space-y-6">
                        <div class="flex items-start">
                            <div class="text-yellow-400 text-xl mr-4 mt-1">
                                <i class="fas fa-phone-alt"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Telefone/WhatsApp</h4>
                                <p class="text-blue-200">+55 54 8141-5632</p>
                            </div>
                        </div>
                        
                        <div class="flex items-start">
                            <div class="text-yellow-400 text-xl mr-4 mt-1">
                                <i class="fas fa-envelope"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Email</h4>
                                <p class="text-blue-200">contato@megachips.com.br</p>
                            </div>
                        </div>
                        
                        <div class="flex items-start">
                            <div class="text-yellow-400 text-xl mr-4 mt-1">
                                <i class="fas fa-clock"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Horário de Atendimento</h4>
                                <p class="text-blue-200">24 horas por dia, 7 dias por semana</p>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="md:w-1/2">
                    <div class="bg-white rounded-xl p-8 text-gray-800">
                        <h3 class="text-2xl font-bold mb-6 text-blue-900">ENVIE UMA MENSAGEM</h3>
                        <form>
                            <div class="mb-4">
                                <label class="block text-gray-700 mb-2" for="name">Nome</label>
                                <input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
                            </div>
                            
                            <div class="mb-4">
                                <label class="block text-gray-700 mb-2" for="email">Email</label>
                                <input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
                            </div>
                            
                            <div class="mb-4">
                                <label class="block text-gray-700 mb-2" for="subject">Assunto</label>
                                <select id="subject" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
                                    <option>Selecione um assunto</option>
                                    <option>Dúvidas sobre chips</option>
                                    <option>Valores de contas Facebook</option>
                                    <option>Business Manager</option>
                                    <option>Suporte técnico</option>
                                    <option>Outros</option>
                                </select>
                            </div>
                            
                            <div class="mb-6">
                                <label class="block text-gray-700 mb-2" for="message">Mensagem</label>
                                <textarea id="message" rows="4" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
                            </div>
                            
                            <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition">
                                Enviar Mensagem
                            </button>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- WhatsApp Float Button -->
    <a href="https://wa.me/555481415632" class="fixed bottom-6 right-6 bg-green-500 hover:bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-lg whatsapp-btn transition transform hover:scale-110">
        <i class="fab fa-whatsapp text-2xl"></i>
    </a>

    <!-- Footer -->
    <footer class="bg-blue-950 text-white py-8">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-6 md:mb-0">
                    <div class="flex items-center space-x-2">
                        <i class="fas fa-bolt text-yellow-400 text-2xl"></i>
                        <h1 class="text-2xl font-bold">Mega<span class="text-yellow-400">Chips</span></h1>
                    </div>
                    <p class="text-blue-300 mt-2">Soluções profissionais para marketing digital</p>
                </div>
                
                <div class="flex space-x-6">
                    <a href="#" class="text-blue-300 hover:text-yellow-400 transition">
                        <i class="fab fa-facebook-f text-xl"></i>
                    </a>
                    <a href="#" class="text-blue-300 hover:text-yellow-400 transition">
                        <i class="fab fa-instagram text-xl"></i>
                    </a>
                    <a href="#" class="text-blue-300 hover:text-yellow-400 transition">
                        <i class="fab fa-linkedin-in text-xl"></i>
                    </a>
                    <a href="#" class="text-blue-300 hover:text-yellow-400 transition">
                        <i class="fab fa-telegram-plane text-xl"></i>
                    </a>
                </div>
            </div>
            
            <div class="border-t border-blue-800 mt-8 pt-8 text-center text-blue-300">
                <p>&copy; 2023 MegaChips. Todos os direitos reservados.</p>
                <p class="mt-2">CNPJ: 12.345.678/0001-99</p>
            </div>
        </div>
    </footer>

    <script>
        // FAQ Accordion
        document.querySelectorAll('#faq button').forEach(button => {
            button.addEventListener('click', () => {
                const content = button.nextElementSibling;
                const icon = button.querySelector('i');
                
                if (content.classList.contains('hidden')) {
                    content.classList.remove('hidden');
                    icon.classList.remove('fa-chevron-down');
                    icon.classList.add('fa-chevron-up');
                } else {
                    content.classList.add('hidden');
                    icon.classList.remove('fa-chevron-up');
                    icon.classList.add('fa-chevron-down');
                }
            });
        });

        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </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=mcbinho/bn" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>