Ravisil commited on
Commit
572a68e
·
verified ·
1 Parent(s): 02aa240

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +521 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 📚
4
- colorFrom: pink
5
- colorTo: yellow
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: test
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: blue
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,521 @@
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>TechMaster - Curso Completo de Informática</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
+ <style>
10
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .feature-card:hover {
14
+ transform: translateY(-10px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .pulse-animation {
18
+ animation: pulse 2s infinite;
19
+ }
20
+ @keyframes pulse {
21
+ 0% {
22
+ transform: scale(1);
23
+ }
24
+ 50% {
25
+ transform: scale(1.05);
26
+ }
27
+ 100% {
28
+ transform: scale(1);
29
+ }
30
+ }
31
+ .testimonial-card {
32
+ transition: all 0.3s ease;
33
+ }
34
+ .testimonial-card:hover {
35
+ background-color: #f8fafc;
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="font-sans bg-gray-50">
40
+ <!-- Header/Navbar -->
41
+ <header class="bg-white shadow-sm sticky top-0 z-50">
42
+ <div class="container mx-auto px-4 py-4 flex justify-between items-center">
43
+ <div class="flex items-center">
44
+ <i class="fas fa-laptop-code text-3xl text-purple-600 mr-2"></i>
45
+ <span class="text-2xl font-bold text-gray-800">TechMaster</span>
46
+ </div>
47
+ <nav class="hidden md:flex space-x-8">
48
+ <a href="#sobre" class="text-gray-600 hover:text-purple-600 font-medium">Sobre</a>
49
+ <a href="#modulos" class="text-gray-600 hover:text-purple-600 font-medium">Módulos</a>
50
+ <a href="#beneficios" class="text-gray-600 hover:text-purple-600 font-medium">Benefícios</a>
51
+ <a href="#depoimentos" class="text-gray-600 hover:text-purple-600 font-medium">Depoimentos</a>
52
+ </nav>
53
+ <button class="md:hidden text-gray-600">
54
+ <i class="fas fa-bars text-2xl"></i>
55
+ </button>
56
+ <a href="#cta" class="hidden md:block bg-purple-600 hover:bg-purple-700 text-white px-6 py-2 rounded-full font-medium transition duration-300">Matricule-se Agora</a>
57
+ </div>
58
+ </header>
59
+
60
+ <!-- Hero Section -->
61
+ <section class="hero-gradient text-white py-20">
62
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
63
+ <div class="md:w-1/2 mb-10 md:mb-0">
64
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Domine a Informática e Impulsione Sua Carreira</h1>
65
+ <p class="text-xl mb-8">O curso mais completo do mercado, do básico ao avançado, com certificado reconhecido e suporte especializado.</p>
66
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
67
+ <a href="#cta" class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-3 rounded-full font-bold text-center pulse-animation">Quero Me Matricular</a>
68
+ <a href="#sobre" class="border-2 border-white hover:bg-white hover:text-purple-600 px-8 py-3 rounded-full font-bold text-center transition duration-300">Saiba Mais</a>
69
+ </div>
70
+ <div class="mt-10 flex items-center">
71
+ <div class="flex -space-x-2">
72
+ <img src="https://randomuser.me/api/portraits/women/32.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Aluna">
73
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Aluno">
74
+ <img src="https://randomuser.me/api/portraits/women/63.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Aluna">
75
+ </div>
76
+ <div class="ml-4">
77
+ <p class="font-medium">+5.000 alunos formados</p>
78
+ <div class="flex text-yellow-400">
79
+ <i class="fas fa-star"></i>
80
+ <i class="fas fa-star"></i>
81
+ <i class="fas fa-star"></i>
82
+ <i class="fas fa-star"></i>
83
+ <i class="fas fa-star"></i>
84
+ <span class="text-white ml-2">4.9/5</span>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ <div class="md:w-1/2 flex justify-center">
90
+ <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Curso de Informática" class="rounded-lg shadow-2xl w-full max-w-md">
91
+ </div>
92
+ </div>
93
+ </section>
94
+
95
+ <!-- Sobre o Curso -->
96
+ <section id="sobre" class="py-20 bg-white">
97
+ <div class="container mx-auto px-4">
98
+ <div class="text-center mb-16">
99
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">O Curso Mais Completo de Informática</h2>
100
+ <div class="w-20 h-1 bg-purple-600 mx-auto"></div>
101
+ </div>
102
+ <div class="flex flex-col md:flex-row items-center">
103
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
104
+ <img src="https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Sobre o curso" class="rounded-lg shadow-lg w-full">
105
+ </div>
106
+ <div class="md:w-1/2">
107
+ <h3 class="text-2xl font-bold text-gray-800 mb-6">Transforme seu conhecimento em oportunidades</h3>
108
+ <p class="text-gray-600 mb-6">Nosso curso de informática foi cuidadosamente desenvolvido para capacitar você desde os conceitos mais básicos até as ferramentas mais avançadas do mercado.</p>
109
+ <ul class="space-y-4 mb-8">
110
+ <li class="flex items-start">
111
+ <i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
112
+ <span class="text-gray-700">Aulas 100% práticas com exercícios reais</span>
113
+ </li>
114
+ <li class="flex items-start">
115
+ <i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
116
+ <span class="text-gray-700">Certificado reconhecido nacionalmente</span>
117
+ </li>
118
+ <li class="flex items-start">
119
+ <i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
120
+ <span class="text-gray-700">Suporte individualizado com instrutores</span>
121
+ </li>
122
+ <li class="flex items-start">
123
+ <i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
124
+ <span class="text-gray-700">Acesso vitalício a todas as atualizações</span>
125
+ </li>
126
+ </ul>
127
+ <a href="#modulos" class="inline-block bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-full font-medium transition duration-300">Ver Conteúdo Programático</a>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </section>
132
+
133
+ <!-- Módulos do Curso -->
134
+ <section id="modulos" class="py-20 bg-gray-50">
135
+ <div class="container mx-auto px-4">
136
+ <div class="text-center mb-16">
137
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">O Que Você Vai Aprender</h2>
138
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Um currículo completo que cobre desde o básico até técnicas avançadas</p>
139
+ <div class="w-20 h-1 bg-purple-600 mx-auto mt-4"></div>
140
+ </div>
141
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
142
+ <!-- Módulo 1 -->
143
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
144
+ <div class="h-48 overflow-hidden">
145
+ <img src="https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1528&q=80" alt="Informática Básica" class="w-full h-full object-cover">
146
+ </div>
147
+ <div class="p-6">
148
+ <div class="flex items-center mb-4">
149
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
150
+ <span class="font-bold">01</span>
151
+ </div>
152
+ <h3 class="text-xl font-bold text-gray-800">Informática Básica</h3>
153
+ </div>
154
+ <p class="text-gray-600 mb-4">Conceitos fundamentais, hardware, software, sistema operacional e navegação segura na internet.</p>
155
+ <ul class="text-gray-600 space-y-2">
156
+ <li class="flex items-start">
157
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
158
+ <span>Conhecendo seu computador</span>
159
+ </li>
160
+ <li class="flex items-start">
161
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
162
+ <span>Configurações essenciais</span>
163
+ </li>
164
+ <li class="flex items-start">
165
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
166
+ <span>Segurança digital básica</span>
167
+ </li>
168
+ </ul>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Módulo 2 -->
173
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
174
+ <div class="h-48 overflow-hidden">
175
+ <img src="https://images.unsplash.com/photo-1581291518633-83b4ebd1d83e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Pacote Office" class="w-full h-full object-cover">
176
+ </div>
177
+ <div class="p-6">
178
+ <div class="flex items-center mb-4">
179
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
180
+ <span class="font-bold">02</span>
181
+ </div>
182
+ <h3 class="text-xl font-bold text-gray-800">Pacote Office Completo</h3>
183
+ </div>
184
+ <p class="text-gray-600 mb-4">Domine Word, Excel, PowerPoint e Outlook com técnicas profissionais para o mercado de trabalho.</p>
185
+ <ul class="text-gray-600 space-y-2">
186
+ <li class="flex items-start">
187
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
188
+ <span>Formatação profissional</span>
189
+ </li>
190
+ <li class="flex items-start">
191
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
192
+ <span>Fórmulas e gráficos no Excel</span>
193
+ </li>
194
+ <li class="flex items-start">
195
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
196
+ <span>Apresentações impactantes</span>
197
+ </li>
198
+ </ul>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Módulo 3 -->
203
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
204
+ <div class="h-48 overflow-hidden">
205
+ <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Internet e Redes" class="w-full h-full object-cover">
206
+ </div>
207
+ <div class="p-6">
208
+ <div class="flex items-center mb-4">
209
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
210
+ <span class="font-bold">03</span>
211
+ </div>
212
+ <h3 class="text-xl font-bold text-gray-800">Internet e Redes</h3>
213
+ </div>
214
+ <p class="text-gray-600 mb-4">Navegação avançada, redes sociais profissionais, cloud computing e configuração de redes domésticas.</p>
215
+ <ul class="text-gray-600 space-y-2">
216
+ <li class="flex items-start">
217
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
218
+ <span>Ferramentas de produtividade</span>
219
+ </li>
220
+ <li class="flex items-start">
221
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
222
+ <span>Segurança digital avançada</span>
223
+ </li>
224
+ <li class="flex items-start">
225
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
226
+ <span>Armazenamento em nuvem</span>
227
+ </li>
228
+ </ul>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Módulo 4 -->
233
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
234
+ <div class="h-48 overflow-hidden">
235
+ <img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Design Gráfico" class="w-full h-full object-cover">
236
+ </div>
237
+ <div class="p-6">
238
+ <div class="flex items-center mb-4">
239
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
240
+ <span class="font-bold">04</span>
241
+ </div>
242
+ <h3 class="text-xl font-bold text-gray-800">Design Gráfico</h3>
243
+ </div>
244
+ <p class="text-gray-600 mb-4">Photoshop e Illustrator para criação de artes profissionais, tratamento de imagens e design básico.</p>
245
+ <ul class="text-gray-600 space-y-2">
246
+ <li class="flex items-start">
247
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
248
+ <span>Edição de fotos</span>
249
+ </li>
250
+ <li class="flex items-start">
251
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
252
+ <span>Criação de logos</span>
253
+ </li>
254
+ <li class="flex items-start">
255
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
256
+ <span>Design para mídias sociais</span>
257
+ </li>
258
+ </ul>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Módulo 5 -->
263
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
264
+ <div class="h-48 overflow-hidden">
265
+ <img src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Programação" class="w-full h-full object-cover">
266
+ </div>
267
+ <div class="p-6">
268
+ <div class="flex items-center mb-4">
269
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
270
+ <span class="font-bold">05</span>
271
+ </div>
272
+ <h3 class="text-xl font-bold text-gray-800">Introdução à Programação</h3>
273
+ </div>
274
+ <p class="text-gray-600 mb-4">Lógica de programação, HTML, CSS e JavaScript para criar suas primeiras páginas web interativas.</p>
275
+ <ul class="text-gray-600 space-y-2">
276
+ <li class="flex items-start">
277
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
278
+ <span>Fundamentos da programação</span>
279
+ </li>
280
+ <li class="flex items-start">
281
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
282
+ <span>Criação de sites básicos</span>
283
+ </li>
284
+ <li class="flex items-start">
285
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
286
+ <span>Interatividade com JavaScript</span>
287
+ </li>
288
+ </ul>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- Módulo 6 -->
293
+ <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
294
+ <div class="h-48 overflow-hidden">
295
+ <img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80" alt="Marketing Digital" class="w-full h-full object-cover">
296
+ </div>
297
+ <div class="p-6">
298
+ <div class="flex items-center mb-4">
299
+ <div class="bg-purple-100 text-purple-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
300
+ <span class="font-bold">06</span>
301
+ </div>
302
+ <h3 class="text-xl font-bold text-gray-800">Marketing Digital</h3>
303
+ </div>
304
+ <p class="text-gray-600 mb-4">Ferramentas digitais para negócios, redes sociais, SEO e análise de dados para tomada de decisão.</p>
305
+ <ul class="text-gray-600 space-y-2">
306
+ <li class="flex items-start">
307
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
308
+ <span>Gestão de redes sociais</span>
309
+ </li>
310
+ <li class="flex items-start">
311
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
312
+ <span>Ferramentas de análise</span>
313
+ </li>
314
+ <li class="flex items-start">
315
+ <i class="fas fa-check text-purple-600 text-xs mt-1 mr-2"></i>
316
+ <span>Estratégias de conteúdo</span>
317
+ </li>
318
+ </ul>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+ </section>
324
+
325
+ <!-- Benefícios -->
326
+ <section id="beneficios" class="py-20 bg-purple-600 text-white">
327
+ <div class="container mx-auto px-4">
328
+ <div class="text-center mb-16">
329
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Por Que Escolher o TechMaster?</h2>
330
+ <p class="text-xl max-w-2xl mx-auto">Diferenciais que fazem nosso curso ser o melhor do mercado</p>
331
+ <div class="w-20 h-1 bg-white mx-auto mt-4"></div>
332
+ </div>
333
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
334
+ <div class="text-center p-6 bg-purple-700 rounded-lg">
335
+ <div class="w-16 h-16 bg-purple-800 rounded-full flex items-center justify-center mx-auto mb-4">
336
+ <i class="fas fa-laptop text-2xl"></i>
337
+ </div>
338
+ <h3 class="text-xl font-bold mb-3">Aulas Práticas</h3>
339
+ <p class="text-purple-100">Mais de 80% do curso é mão na massa, com exercícios reais do mercado de trabalho.</p>
340
+ </div>
341
+ <div class="text-center p-6 bg-purple-700 rounded-lg">
342
+ <div class="w-16 h-16 bg-purple-800 rounded-full flex items-center justify-center mx-auto mb-4">
343
+ <i class="fas fa-user-graduate text-2xl"></i>
344
+ </div>
345
+ <h3 class="text-xl font-bold mb-3">Certificado</h3>
346
+ <p class="text-purple-100">Certificado reconhecido nacionalmente para comprovar suas habilidades.</p>
347
+ </div>
348
+ <div class="text-center p-6 bg-purple-700 rounded-lg">
349
+ <div class="w-16 h-16 bg-purple-800 rounded-full flex items-center justify-center mx-auto mb-4">
350
+ <i class="fas fa-headset text-2xl"></i>
351
+ </div>
352
+ <h3 class="text-xl font-bold mb-3">Suporte Individual</h3>
353
+ <p class="text-purple-100">Tire dúvidas diretamente com instrutores especializados quando precisar.</p>
354
+ </div>
355
+ <div class="text-center p-6 bg-purple-700 rounded-lg">
356
+ <div class="w-16 h-16 bg-purple-800 rounded-full flex items-center justify-center mx-auto mb-4">
357
+ <i class="fas fa-infinity text-2xl"></i>
358
+ </div>
359
+ <h3 class="text-xl font-bold mb-3">Acesso Vitalício</h3>
360
+ <p class="text-purple-100">Acesso permanente ao curso e todas as atualizações futuras sem custo adicional.</p>
361
+ </div>
362
+ </div>
363
+ </div>
364
+ </section>
365
+
366
+ <!-- Depoimentos -->
367
+ <section id="depoimentos" class="py-20 bg-white">
368
+ <div class="container mx-auto px-4">
369
+ <div class="text-center mb-16">
370
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">O Que Nossos Alunos Dizem</h2>
371
+ <p class="text-xl text-gray-600">Veja a transformação na vida de quem já fez o curso</p>
372
+ <div class="w-20 h-1 bg-purple-600 mx-auto mt-4"></div>
373
+ </div>
374
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
375
+ <!-- Depoimento 1 -->
376
+ <div class="bg-gray-50 rounded-lg p-8 testimonial-card">
377
+ <div class="flex items-center mb-6">
378
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Ana Silva" class="w-12 h-12 rounded-full mr-4">
379
+ <div>
380
+ <h4 class="font-bold text-gray-800">Ana Silva</h4>
381
+ <div class="flex text-yellow-400">
382
+ <i class="fas fa-star"></i>
383
+ <i class="fas fa-star"></i>
384
+ <i class="fas fa-star"></i>
385
+ <i class="fas fa-star"></i>
386
+ <i class="fas fa-star"></i>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ <p class="text-gray-600 italic">"Consegui meu primeiro emprego como assistente administrativa graças ao que aprendi no curso. As aulas de Excel foram essenciais para passar no processo seletivo!"</p>
391
+ </div>
392
+
393
+ <!-- Depoimento 2 -->
394
+ <div class="bg-gray-50 rounded-lg p-8 testimonial-card">
395
+ <div class="flex items-center mb-6">
396
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Carlos Oliveira" class="w-12 h-12 rounded-full mr-4">
397
+ <div>
398
+ <h4 class="font-bold text-gray-800">Carlos Oliveira</h4>
399
+ <div class="flex text-yellow-400">
400
+ <i class="fas fa-star"></i>
401
+ <i class="fas fa-star"></i>
402
+ <i class="fas fa-star"></i>
403
+ <i class="fas fa-star"></i>
404
+ <i class="fas fa-star"></i>
405
+ </div>
406
+ </div>
407
+ </div>
408
+ <p class="text-gray-600 italic">"Depois de anos sem trabalhar, o curso me deu a confiança que precisava para voltar ao mercado. Hoje faço freelances de design gráfico graças ao módulo de Photoshop."</p>
409
+ </div>
410
+
411
+ <!-- Depoimento 3 -->
412
+ <div class="bg-gray-50 rounded-lg p-8 testimonial-card">
413
+ <div class="flex items-center mb-6">
414
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Juliana Santos" class="w-12 h-12 rounded-full mr-4">
415
+ <div>
416
+ <h4 class="font-bold text-gray-800">Juliana Santos</h4>
417
+ <div class="flex text-yellow-400">
418
+ <i class="fas fa-star"></i>
419
+ <i class="fas fa-star"></i>
420
+ <i class="fas fa-star"></i>
421
+ <i class="fas fa-star"></i>
422
+ <i class="fas fa-star"></i>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ <p class="text-gray-600 italic">"O suporte dos professores foi incrível. Sempre que tinha dúvidas, recebia respostas rápidas e claras. Recomendo para quem quer aprender de verdade!"</p>
427
+ </div>
428
+ </div>
429
+ </div>
430
+ </section>
431
+
432
+ <!-- CTA Section -->
433
+ <section id="cta" class="py-20 bg-gray-900 text-white">
434
+ <div class="container mx-auto px-4 text-center">
435
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Pronto para Transformar Sua Carreira?</h2>
436
+ <p class="text-xl mb-10 max-w-2xl mx-auto">Matricule-se hoje e comece sua jornada no mundo da informática com o melhor curso do mercado.</p>
437
+
438
+ <div class="bg-white rounded-xl shadow-2xl max-w-4xl mx-auto p-8 text-gray-800 mb-10">
439
+ <div class="flex flex-col md:flex-row items-center justify-between">
440
+ <div class="mb-6 md:mb-0 md:pr-6 text-left">
441
+ <h3 class="text-2xl font-bold mb-2">Curso Completo de Informática</h3>
442
+ <p class="mb-4">Do básico ao avançado com certificado reconhecido</p>
443
+ <div class="flex items-center">
444
+ <span class="text-4xl font-bold text-purple-600">R$ 497</span>
445
+ <span class="ml-4 line-through text-gray-500">R$ 997</span>
446
+ <span class="ml-2 bg-purple-100 text-purple-600 px-2 py-1 rounded text-sm font-bold">50% OFF</span>
447
+ </div>
448
+ <p class="text-sm text-gray-500 mt-2">Ou 12x de R$ 49,70 no cartão</p>
449
+ </div>
450
+ <div>
451
+ <a href="#" class="bg-purple-600 hover:bg-purple-700 text-white px-10 py-4 rounded-full font-bold text-lg inline-block pulse-animation">Quero Me Matricular Agora</a>
452
+ <p class="text-sm text-gray-500 mt-2">7 dias de garantia incondicional</p>
453
+ </div>
454
+ </div>
455
+ </div>
456
+
457
+ <div class="max-w-3xl mx-auto bg-gray-800 rounded-lg p-6">
458
+ <h3 class="text-xl font-bold mb-4">O Que Você Vai Receber:</h3>
459
+ <div class="grid md:grid-cols-2 gap-4 text-left">
460
+ <div class="flex items-start">
461
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
462
+ <span>6 módulos completos com mais de 120 horas de conteúdo</span>
463
+ </div>
464
+ <div class="flex items-start">
465
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
466
+ <span>Certificado digital reconhecido nacionalmente</span>
467
+ </div>
468
+ <div class="flex items-start">
469
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
470
+ <span>Acesso vitalício a todas as atualizações</span>
471
+ </div>
472
+ <div class="flex items-start">
473
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
474
+ <span>Suporte individual com instrutores especializados</span>
475
+ </div>
476
+ <div class="flex items-start">
477
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
478
+ <span>Material complementar em PDF para download</span>
479
+ </div>
480
+ <div class="flex items-start">
481
+ <i class="fas fa-check-circle text-purple-400 mt-1 mr-3"></i>
482
+ <span>Grupo exclusivo para networking com outros alunos</span>
483
+ </div>
484
+ </div>
485
+ </div>
486
+ </div>
487
+ </section>
488
+
489
+ <!-- FAQ -->
490
+ <section class="py-20 bg-gray-50">
491
+ <div class="container mx-auto px-4">
492
+ <div class="text-center mb-16">
493
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Perguntas Frequentes</h2>
494
+ <div class="w-20 h-1 bg-purple-600 mx-auto"></div>
495
+ </div>
496
+ <div class="max-w-3xl mx-auto">
497
+ <!-- Pergunta 1 -->
498
+ <div class="mb-6 border-b border-gray-200 pb-6">
499
+ <button class="faq-toggle flex justify-between items-center w-full text-left">
500
+ <h3 class="text-xl font-bold text-gray-800">Para quem é este curso?</h3>
501
+ <i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
502
+ </button>
503
+ <div class="faq-content mt-4 text-gray-600 hidden">
504
+ <p>O TechMaster é perfeito para iniciantes que querem aprender informática do zero, profissionais que desejam se atualizar ou quem precisa de certificação para comprovar conhecimentos. Não é necessário nenhum conhecimento prévio.</p>
505
+ </div>
506
+ </div>
507
+
508
+ <!-- Pergunta 2 -->
509
+ <div class="mb-6 border-b border-gray-200 pb-6">
510
+ <button class="faq-toggle flex justify-between items-center w-full text-left">
511
+ <h3 class="text-xl font-bold text-gray-800">Como funciona o acesso ao curso?</h3>
512
+ <i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
513
+ </button>
514
+ <div class="faq-content mt-4 text-gray-600 hidden">
515
+ <p>Após a matrícula, você recebe acesso imediato à nossa plataforma online com todos os módulos. Pode assistir às aulas quando e onde quiser, no seu computador, tablet ou smartphone. O acesso é vitalício, sem mensalidades.</p>
516
+ </div>
517
+ </div>
518
+
519
+ <!-- Pergunta 3 -->
520
+ <
521
+ </html>