Gleisonderamos commited on
Commit
087a438
·
verified ·
1 Parent(s): 4bf8124

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +493 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Zaaz Internet Fibra
3
- emoji: 👀
4
- colorFrom: pink
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: zaaz-internet-fibra
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,493 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Zaaz Internet Fibra - A melhor conexão do Brasil</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#FFFFFF',
15
+ accent: '#342F8B',
16
+ highlight: '#F8C32C',
17
+ }
18
+ }
19
+ }
20
+ }
21
+ </script>
22
+ <style>
23
+ .hero-gradient {
24
+ background: linear-gradient(135deg, #342F8B 0%, #1a1661 100%);
25
+ }
26
+ .plan-card:hover {
27
+ transform: translateY(-10px);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
29
+ }
30
+ .feature-icon {
31
+ background-color: rgba(248, 195, 44, 0.1);
32
+ }
33
+ .testimonial-card {
34
+ box-shadow: 0 4px 6px -1px rgba(52, 47, 139, 0.1), 0 2px 4px -1px rgba(52, 47, 139, 0.06);
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="font-sans bg-primary text-gray-800">
39
+ <!-- Header -->
40
+ <header class="bg-accent text-primary py-4 px-6 shadow-md">
41
+ <div class="container mx-auto flex justify-between items-center">
42
+ <div class="flex items-center">
43
+ <img src="https://i.postimg.cc/8kXT8cpm/logo.png" alt="Zaaz Logo" class="h-12">
44
+ </div>
45
+ <nav class="hidden md:flex space-x-8">
46
+ <a href="#benefits" class="hover:text-highlight transition">Benefícios</a>
47
+ <a href="#how-it-works" class="hover:text-highlight transition">Como Funciona</a>
48
+ <a href="#plans" class="hover:text-highlight transition">Planos</a>
49
+ <a href="#testimonials" class="hover:text-highlight transition">Depoimentos</a>
50
+ </nav>
51
+ <button class="md:hidden text-2xl">
52
+ <i class="fas fa-bars"></i>
53
+ </button>
54
+ </div>
55
+ </header>
56
+
57
+ <!-- Hero Section -->
58
+ <section class="hero-gradient text-primary py-20 px-6">
59
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
60
+ <div class="md:w-1/2 mb-10 md:mb-0">
61
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">A velocidade que você precisa, a qualidade que você merece!</h1>
62
+ <p class="text-xl mb-8">Mude agora para a Zaaz Internet Fibra e experimente a conexão mais rápida do Brasil.</p>
63
+ <button class="bg-highlight text-accent font-bold py-3 px-8 rounded-full hover:bg-yellow-500 transition transform hover:scale-105">
64
+ Contrate num Zaazzzzz!
65
+ </button>
66
+ </div>
67
+ <div class="md:w-1/2 flex justify-center">
68
+ <img src="https://i.postimg.cc/8kXT8cpm/logo.png" alt="Zaaz Hero" class="w-full max-w-md">
69
+ </div>
70
+ </div>
71
+ </section>
72
+
73
+ <!-- Benefits Section -->
74
+ <section id="benefits" class="py-16 px-6 bg-gray-50">
75
+ <div class="container mx-auto">
76
+ <h2 class="text-3xl font-bold text-center mb-12 text-accent">Por que escolher a Zaaz?</h2>
77
+
78
+ <div class="grid md:grid-cols-3 gap-8">
79
+ <!-- Benefit 1 -->
80
+ <div class="bg-white p-8 rounded-lg shadow-md text-center">
81
+ <div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
82
+ <i class="fas fa-bolt text-highlight text-2xl"></i>
83
+ </div>
84
+ <h3 class="text-xl font-bold mb-3 text-accent">Qualidade, Velocidade e Estabilidade</h3>
85
+ <p class="text-gray-600">Navegue, jogue e assista suas séries favoritas com uma conexão de fibra de ponta a ponta.</p>
86
+ </div>
87
+
88
+ <!-- Benefit 2 -->
89
+ <div class="bg-white p-8 rounded-lg shadow-md text-center">
90
+ <div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
91
+ <i class="fas fa-home text-highlight text-2xl"></i>
92
+ </div>
93
+ <h3 class="text-xl font-bold mb-3 text-accent">Trabalho e Estudo em Casa</h3>
94
+ <p class="text-gray-600">A internet ideal para videoconferências, downloads rápidos e home office sem estresse.</p>
95
+ </div>
96
+
97
+ <!-- Benefit 3 -->
98
+ <div class="bg-white p-8 rounded-lg shadow-md text-center">
99
+ <div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
100
+ <i class="fas fa-truck text-highlight text-2xl"></i>
101
+ </div>
102
+ <h3 class="text-xl font-bold mb-3 text-accent">Fibra Delivery</h3>
103
+ <p class="text-gray-600">Instalação rápida e sem complicações, tudo do conforto da sua casa.</p>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </section>
108
+
109
+ <!-- How It Works Section -->
110
+ <section id="how-it-works" class="py-16 px-6">
111
+ <div class="container mx-auto">
112
+ <h2 class="text-3xl font-bold text-center mb-12 text-accent">Como Funciona: Passo a Passo para a sua Conexão</h2>
113
+
114
+ <div class="grid md:grid-cols-4 gap-6">
115
+ <!-- Step 1 -->
116
+ <div class="text-center">
117
+ <div class="bg-highlight text-accent w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">1</div>
118
+ <h3 class="font-bold mb-2">Escolha seu plano</h3>
119
+ <p class="text-gray-600">Selecione o que se adapta às suas necessidades.</p>
120
+ </div>
121
+
122
+ <!-- Step 2 -->
123
+ <div class="text-center">
124
+ <div class="bg-highlight text-accent w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">2</div>
125
+ <h3 class="font-bold mb-2">Contrate em minutos</h3>
126
+ <p class="text-gray-600">Tudo pelo nosso site, sem complicação.</p>
127
+ </div>
128
+
129
+ <!-- Step 3 -->
130
+ <div class="text-center">
131
+ <div class="bg-highlight text-accent w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">3</div>
132
+ <h3 class="font-bold mb-2">Instalação em casa</h3>
133
+ <p class="text-gray-600">Receba sua fibra sem precisar de visita técnica.</p>
134
+ </div>
135
+
136
+ <!-- Step 4 -->
137
+ <div class="text-center">
138
+ <div class="bg-highlight text-accent w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">4</div>
139
+ <h3 class="font-bold mb-2">Aproveite a experiência</h3>
140
+ <p class="text-gray-600">Conecte-se e desfrute de uma internet de alta performance!</p>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Testimonials Section -->
147
+ <section id="testimonials" class="py-16 px-6 bg-accent text-primary">
148
+ <div class="container mx-auto">
149
+ <h2 class="text-3xl font-bold text-center mb-12">O que nossos clientes estão dizendo?</h2>
150
+
151
+ <div class="grid md:grid-cols-3 gap-8">
152
+ <!-- Testimonial 1 -->
153
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg">
154
+ <div class="flex items-center mb-4">
155
+ <div class="bg-highlight text-accent w-12 h-12 rounded-full flex items-center justify-center font-bold mr-4">A</div>
156
+ <div>
157
+ <h4 class="font-bold">Ana, 35 anos</h4>
158
+ <p class="text-gray-600">professora</p>
159
+ </div>
160
+ </div>
161
+ <p class="italic">"A Zaaz transformou minha conexão! Agora consigo trabalhar e assistir séries sem travar."</p>
162
+ <div class="flex mt-4 text-highlight">
163
+ <i class="fas fa-star"></i>
164
+ <i class="fas fa-star"></i>
165
+ <i class="fas fa-star"></i>
166
+ <i class="fas fa-star"></i>
167
+ <i class="fas fa-star"></i>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Testimonial 2 -->
172
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg">
173
+ <div class="flex items-center mb-4">
174
+ <div class="bg-highlight text-accent w-12 h-12 rounded-full flex items-center justify-center font-bold mr-4">C</div>
175
+ <div>
176
+ <h4 class="font-bold">Carlos, 29 anos</h4>
177
+ <p class="text-gray-600">gamer</p>
178
+ </div>
179
+ </div>
180
+ <p class="italic">"Uma internet rápida como um foguete! E a instalação foi super fácil."</p>
181
+ <div class="flex mt-4 text-highlight">
182
+ <i class="fas fa-star"></i>
183
+ <i class="fas fa-star"></i>
184
+ <i class="fas fa-star"></i>
185
+ <i class="fas fa-star"></i>
186
+ <i class="fas fa-star"></i>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Testimonial 3 -->
191
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg">
192
+ <div class="flex items-center mb-4">
193
+ <div class="bg-highlight text-accent w-12 h-12 rounded-full flex items-center justify-center font-bold mr-4">M</div>
194
+ <div>
195
+ <h4 class="font-bold">Dona Maria, 87 anos</h4>
196
+ <p class="text-gray-600">aposentada</p>
197
+ </div>
198
+ </div>
199
+ <p class="italic">"Nunca imaginei que teria uma conexão tão boa! E o suporte é 10!"</p>
200
+ <div class="flex mt-4 text-highlight">
201
+ <i class="fas fa-star"></i>
202
+ <i class="fas fa-star"></i>
203
+ <i class="fas fa-star"></i>
204
+ <i class="fas fa-star"></i>
205
+ <i class="fas fa-star"></i>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="mt-12 text-center">
211
+ <p class="text-xl font-bold mb-4">Premiada em mais de 50 cidades e entre os 10 maiores provedores de São Paulo.</p>
212
+ <p class="text-xl">Já são mais de <span class="font-bold text-highlight">170 mil assinantes satisfeitos!</span></p>
213
+ </div>
214
+ </div>
215
+ </section>
216
+
217
+ <!-- Plans Section -->
218
+ <section id="plans" class="py-16 px-6 bg-gray-50">
219
+ <div class="container mx-auto">
220
+ <h2 class="text-3xl font-bold text-center mb-12 text-accent">Planos que cabem no seu bolso!</h2>
221
+
222
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
223
+ <!-- Promotional Plan -->
224
+ <div class="plan-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
225
+ <div class="bg-highlight text-accent py-4 px-6">
226
+ <h3 class="font-bold text-xl">600 Mega</h3>
227
+ <p class="text-sm">Plano Promocional</p>
228
+ </div>
229
+ <div class="p-6">
230
+ <p class="text-3xl font-bold mb-2">R$ 49,90<span class="text-sm font-normal">/mês</span></p>
231
+ <p class="text-sm text-gray-600 mb-4">nos três primeiros meses</p>
232
+ <p class="mb-4">Perfeito para navegar, maratonar e jogar sem travar.</p>
233
+ <ul class="mb-6 space-y-2">
234
+ <li class="flex items-start">
235
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
236
+ <span>Streaming em alta definição</span>
237
+ </li>
238
+ <li class="flex items-start">
239
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
240
+ <span>Jogos online com resposta rápida</span>
241
+ </li>
242
+ <li class="flex items-start">
243
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
244
+ <span>Vários dispositivos conectados com folga</span>
245
+ </li>
246
+ </ul>
247
+ <button class="w-full bg-accent text-white py-2 rounded hover:bg-blue-800 transition">Contratar</button>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Intermediate Plan -->
252
+ <div class="plan-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
253
+ <div class="bg-accent text-white py-4 px-6">
254
+ <h3 class="font-bold text-xl">300 Mega</h3>
255
+ <p class="text-sm">Plano Intermediário</p>
256
+ </div>
257
+ <div class="p-6">
258
+ <p class="text-3xl font-bold mb-2">R$ 89,90<span class="text-sm font-normal">/mês</span></p>
259
+ <p class="mb-4">Ideal para assistir em alta definição e navegar com estabilidade.</p>
260
+ <ul class="mb-6 space-y-2">
261
+ <li class="flex items-start">
262
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
263
+ <span>Filmes e séries em HD</span>
264
+ </li>
265
+ <li class="flex items-start">
266
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
267
+ <span>Aulas, reuniões e tarefas do dia a dia</span>
268
+ </li>
269
+ <li class="flex items-start">
270
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
271
+ <span>Ótimo custo-benefício</span>
272
+ </li>
273
+ </ul>
274
+ <button class="w-full bg-highlight text-accent py-2 rounded hover:bg-yellow-500 transition">Contratar</button>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Advanced Plan -->
279
+ <div class="plan-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
280
+ <div class="bg-accent text-white py-4 px-6">
281
+ <h3 class="font-bold text-xl">800 Mega</h3>
282
+ <p class="text-sm">Plano Avançado</p>
283
+ </div>
284
+ <div class="p-6">
285
+ <p class="text-3xl font-bold mb-2">R$ 119,90<span class="text-sm font-normal">/mês</span></p>
286
+ <p class="mb-4">Feito para quem joga online e assiste em alta definição sem interrupções.</p>
287
+ <ul class="mb-6 space-y-2">
288
+ <li class="flex items-start">
289
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
290
+ <span>Download e upload mais ágeis</span>
291
+ </li>
292
+ <li class="flex items-start">
293
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
294
+ <span>Casas conectadas com muitos aparelhos</span>
295
+ </li>
296
+ <li class="flex items-start">
297
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
298
+ <span>Lives e jogos com baixa latência</span>
299
+ </li>
300
+ </ul>
301
+ <button class="w-full bg-highlight text-accent py-2 rounded hover:bg-yellow-500 transition">Contratar</button>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Premium Plan -->
306
+ <div class="plan-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
307
+ <div class="bg-gray-900 text-white py-4 px-6">
308
+ <h3 class="font-bold text-xl">1 Giga</h3>
309
+ <p class="text-sm">Plano Premium</p>
310
+ </div>
311
+ <div class="p-6">
312
+ <p class="text-3xl font-bold mb-2">R$ 149,90<span class="text-sm font-normal">/mês</span></p>
313
+ <p class="text-sm text-highlight mb-2">(com 2 roteadores inclusos)</p>
314
+ <p class="mb-4">Para quem não abre mão do máximo desempenho em tudo!</p>
315
+ <ul class="mb-6 space-y-2">
316
+ <li class="flex items-start">
317
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
318
+ <span>Experiência top para 4K/8K, jogos competitivos</span>
319
+ </li>
320
+ <li class="flex items-start">
321
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
322
+ <span>Velocidade de sobra para a família inteira</span>
323
+ </li>
324
+ <li class="flex items-start">
325
+ <i class="fas fa-check text-highlight mt-1 mr-2"></i>
326
+ <span>Trabalho remoto pesado</span>
327
+ </li>
328
+ </ul>
329
+ <button class="w-full bg-gray-900 text-white py-2 rounded hover:bg-gray-700 transition">Contratar</button>
330
+ </div>
331
+ </div>
332
+ </div>
333
+
334
+ <div class="mt-8 text-center">
335
+ <p class="text-lg text-accent font-bold">Todos os planos incluem serviços de streaming Zaaz Play!</p>
336
+ </div>
337
+ </div>
338
+ </section>
339
+
340
+ <!-- Final CTA Section -->
341
+ <section class="py-16 px-6 bg-accent text-primary text-center">
342
+ <div class="container mx-auto">
343
+ <h2 class="text-3xl font-bold mb-6">Pronto para mudar sua conexão?</h2>
344
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Não fique de fora! A internet que todo mundo ama está a um clique de distância.</p>
345
+ <button class="bg-highlight text-accent font-bold py-3 px-8 rounded-full hover:bg-yellow-500 transition transform hover:scale-105">
346
+ Mude agora para a Zaaz Internet Fibra!
347
+ </button>
348
+ </div>
349
+ </section>
350
+
351
+ <!-- FAQ Section -->
352
+ <section class="py-16 px-6 bg-gray-50">
353
+ <div class="container mx-auto max-w-4xl">
354
+ <h2 class="text-3xl font-bold text-center mb-12 text-accent">Perguntas Frequentes</h2>
355
+
356
+ <div class="space-y-4">
357
+ <!-- FAQ 1 -->
358
+ <div class="bg-white p-6 rounded-lg shadow-md">
359
+ <div class="flex justify-between items-center cursor-pointer">
360
+ <h3 class="font-bold text-lg">A Zaaz é confiável?</h3>
361
+ <i class="fas fa-plus text-highlight"></i>
362
+ </div>
363
+ <div class="mt-2 hidden">
364
+ <p class="text-gray-600">Sim! Somos premiados e estamos entre os maiores provedores de São Paulo, com mais de 170 mil assinantes satisfeitos.</p>
365
+ </div>
366
+ </div>
367
+
368
+ <!-- FAQ 2 -->
369
+ <div class="bg-white p-6 rounded-lg shadow-md">
370
+ <div class="flex justify-between items-center cursor-pointer">
371
+ <h3 class="font-bold text-lg">E se eu tiver problemas com a conexão?</h3>
372
+ <i class="fas fa-plus text-highlight"></i>
373
+ </div>
374
+ <div class="mt-2 hidden">
375
+ <p class="text-gray-600">Nosso suporte técnico está disponível 24 horas para te ajudar!</p>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- FAQ 3 -->
380
+ <div class="bg-white p-6 rounded-lg shadow-md">
381
+ <div class="flex justify-between items-center cursor-pointer">
382
+ <h3 class="font-bold text-lg">Como funciona a instalação?</h3>
383
+ <i class="fas fa-plus text-highlight"></i>
384
+ </div>
385
+ <div class="mt-2 hidden">
386
+ <p class="text-gray-600">Com o Fibra Delivery, você não precisa de visita técnica. A instalação é rápida e prática!</p>
387
+ </div>
388
+ </div>
389
+
390
+ <!-- FAQ 4 -->
391
+ <div class="bg-white p-6 rounded-lg shadow-md">
392
+ <div class="flex justify-between items-center cursor-pointer">
393
+ <h3 class="font-bold text-lg">Há garantia de satisfação?</h3>
394
+ <i class="fas fa-plus text-highlight"></i>
395
+ </div>
396
+ <div class="mt-2 hidden">
397
+ <p class="text-gray-600">Experimente sem riscos! Contrate agora e tenha 30 dias de garantia. Se não ficar satisfeito, devolvemos seu dinheiro!</p>
398
+ </div>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </section>
403
+
404
+ <!-- Footer -->
405
+ <footer class="bg-gray-900 text-white py-12 px-6">
406
+ <div class="container mx-auto">
407
+ <div class="flex flex-col md:flex-row justify-between items-center mb-8">
408
+ <div class="mb-6 md:mb-0">
409
+ <img src="https://i.postimg.cc/8kXT8cpm/logo.png" alt="Zaaz Logo" class="h-12">
410
+ </div>
411
+ <div class="flex space-x-6">
412
+ <a href="#" class="text-2xl hover:text-highlight transition"><i class="fab fa-facebook"></i></a>
413
+ <a href="#" class="text-2xl hover:text-highlight transition"><i class="fab fa-instagram"></i></a>
414
+ <a href="#" class="text-2xl hover:text-highlight transition"><i class="fab fa-twitter"></i></a>
415
+ <a href="#" class="text-2xl hover:text-highlight transition"><i class="fab fa-youtube"></i></a>
416
+ </div>
417
+ </div>
418
+
419
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
420
+ <div>
421
+ <h4 class="font-bold text-lg mb-4">Empresa</h4>
422
+ <ul class="space-y-2">
423
+ <li><a href="#" class="hover:text-highlight transition">Sobre nós</a></li>
424
+ <li><a href="#" class="hover:text-highlight transition">Carreiras</a></li>
425
+ <li><a href="#" class="hover:text-highlight transition">Imprensa</a></li>
426
+ </ul>
427
+ </div>
428
+ <div>
429
+ <h4 class="font-bold text-lg mb-4">Serviços</h4>
430
+ <ul class="space-y-2">
431
+ <li><a href="#" class="hover:text-highlight transition">Internet Fibra</a></li>
432
+ <li><a href="#" class="hover:text-highlight transition">Zaaz Play</a></li>
433
+ <li><a href="#" class="hover:text-highlight transition">Suporte</a></li>
434
+ </ul>
435
+ </div>
436
+ <div>
437
+ <h4 class="font-bold text-lg mb-4">Legal</h4>
438
+ <ul class="space-y-2">
439
+ <li><a href="#" class="hover:text-highlight transition">Termos de uso</a></li>
440
+ <li><a href="#" class="hover:text-highlight transition">Política de privacidade</a></li>
441
+ <li><a href="#" class="hover:text-highlight transition">Contrato</a></li>
442
+ </ul>
443
+ </div>
444
+ <div>
445
+ <h4 class="font-bold text-lg mb-4">Contato</h4>
446
+ <ul class="space-y-2">
447
+ <li class="flex items-start">
448
+ <i class="fas fa-phone-alt text-highlight mt-1 mr-2"></i>
449
+ <span>0800 123 4567</span>
450
+ </li>
451
+ <li class="flex items-start">
452
+ <i class="fas fa-envelope text-highlight mt-1 mr-2"></i>
453
+ <span>[email protected]</span>
454
+ </li>
455
+ <li class="flex items-start">
456
+ <i class="fas fa-map-marker-alt text-highlight mt-1 mr-2"></i>
457
+ <span>Av. Paulista, 1000 - São Paulo/SP</span>
458
+ </li>
459
+ </ul>
460
+ </div>
461
+ </div>
462
+
463
+ <div class="pt-6 border-t border-gray-700 text-center">
464
+ <p class="text-gray-400">© 2023 Zaaz Internet Fibra. Todos os direitos reservados.</p>
465
+ <p class="mt-2 text-highlight font-bold text-lg">Tá todo mundo com a ZAAZ! Só falta você!</p>
466
+ <button class="mt-4 bg-highlight text-accent font-bold py-2 px-6 rounded-full hover:bg-yellow-500 transition">
467
+ Contrate num Zaazzzzz!
468
+ </button>
469
+ </div>
470
+ </div>
471
+ </footer>
472
+
473
+ <script>
474
+ // FAQ toggle functionality
475
+ document.querySelectorAll('.faq div div:first-child').forEach(question => {
476
+ question.addEventListener('click', () => {
477
+ const answer = question.nextElementSibling;
478
+ const icon = question.querySelector('i');
479
+
480
+ if (answer.classList.contains('hidden')) {
481
+ answer.classList.remove('hidden');
482
+ icon.classList.remove('fa-plus');
483
+ icon.classList.add('fa-minus');
484
+ } else {
485
+ answer.classList.add('hidden');
486
+ icon.classList.remove('fa-minus');
487
+ icon.classList.add('fa-plus');
488
+ }
489
+ });
490
+ });
491
+ </script>
492
+ <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=Gleisonderamos/zaaz-internet-fibra" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
493
+ </html>