File size: 19,863 Bytes
9d21912
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="pt">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Curso de Inteligência Artificial - Domine a IA e Transforme Seu Futuro</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>
        .hero-gradient {
            background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
        }
        .payment-card {
            transition: all 0.3s ease;
        }
        .payment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .testimonial-card {
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: scale(1.02);
        }
        .floating-button {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="font-sans bg-gray-50">
    <!-- Header/Navigation -->
    <header class="bg-white shadow-sm sticky top-0 z-50">
        <div class="container mx-auto px-4 py-3 flex justify-between items-center">
            <div class="flex items-center">
                <i class="fas fa-robot text-3xl text-blue-600 mr-2"></i>
                <span class="text-xl font-bold text-gray-800">IA Pro Moçambique</span>
            </div>
            <a href="#comprar-agora" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg font-medium transition duration-300">
                Comprar Agora
            </a>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero-gradient 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-10 md:mb-0">
                <h1 class="text-4xl md:text-5xl font-bold mb-6">Domine a Inteligência Artificial e Transforme Seu Futuro</h1>
                <p class="text-xl mb-8">O curso completo que vai te ensinar como usar IA para criar conteúdo, automatizar negócios e gerar renda extra.</p>
                <div class="flex flex-col sm:flex-row gap-4">
                    <a href="#comprar-agora" class="bg-white text-blue-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-lg text-center transition duration-300">
                        Quero Comprar Agora
                    </a>
                    <a href="#depoimentos" class="border-2 border-white text-white hover:bg-white hover:text-blue-600 font-bold py-3 px-6 rounded-lg text-center transition duration-300">
                        Ver Depoimentos
                    </a>
                </div>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="https://images.unsplash.com/photo-1677442135136-760c813a743d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80" alt="IA Transformando Negócios" class="rounded-xl shadow-2xl max-w-full h-auto">
            </div>
        </div>
    </section>

    <!-- Benefits Section -->
    <section class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">O Que Você Vai Aprender?</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-gray-50 p-6 rounded-xl shadow-sm">
                    <div class="text-blue-600 text-4xl mb-4">
                        <i class="fas fa-brain"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-gray-800">Fundamentos da IA</h3>
                    <p class="text-gray-600">Entenda como a inteligência artificial funciona e como aplicá-la no seu dia a dia ou negócio.</p>
                </div>
                <div class="bg-gray-50 p-6 rounded-xl shadow-sm">
                    <div class="text-blue-600 text-4xl mb-4">
                        <i class="fas fa-chart-line"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-gray-800">Automatização</h3>
                    <p class="text-gray-600">Aprenda a automatizar tarefas repetitivas e ganhe tempo para focar no que realmente importa.</p>
                </div>
                <div class="bg-gray-50 p-6 rounded-xl shadow-sm">
                    <div class="text-blue-600 text-4xl mb-4">
                        <i class="fas fa-money-bill-wave"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-gray-800">Geração de Renda</h3>
                    <p class="text-gray-600">Descubra como monetizar seus conhecimentos em IA e criar novas fontes de renda.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials Section -->
    <section id="depoimentos" class="py-16 bg-gray-50">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">O Que Nossos Alunos Dizem</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Testimonial 1 -->
                <div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 font-bold mr-4">JM</div>
                        <div>
                            <h4 class="font-bold text-gray-800">João Matola</h4>
                            <p class="text-gray-500 text-sm">Empreendedor</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"Depois deste curso, consegui automatizar 80% do meu negócio de roupas. Agora tenho mais tempo para focar em estratégias de crescimento!"</p>
                    <div class="mt-4 text-yellow-400">
                        <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>
                
                <!-- Testimonial 2 -->
                <div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 font-bold mr-4">AM</div>
                        <div>
                            <h4 class="font-bold text-gray-800">Ana Muchanga</h4>
                            <p class="text-gray-500 text-sm">Criadora de Conteúdo</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"Aprendi a criar conteúdos incríveis em minutos usando IA. Minhas redes sociais cresceram 300% em apenas 2 meses após o curso!"</p>
                    <div class="mt-4 text-yellow-400">
                        <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>
                
                <!-- Testimonial 3 -->
                <div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 font-bold mr-4">CS</div>
                        <div>
                            <h4 class="font-bold text-gray-800">Carlos Sitoe</h4>
                            <p class="text-gray-500 text-sm">Estudante</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"Como estudante, não tinha dinheiro para investir muito. Esse curso mudou minha vida - agora ganho mais com freelas de IA do que com meu emprego antigo!"</p>
                    <div class="mt-4 text-yellow-400">
                        <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-half-alt"></i>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Payment Section -->
    <section id="comprar-agora" class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Escolha Sua Forma de Pagamento</h2>
            
            <!-- International Payment -->
            <div class="max-w-2xl mx-auto mb-16">
                <div class="payment-card bg-gradient-to-r from-blue-50 to-indigo-50 border border-blue-200 rounded-xl p-6 shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-600 text-white p-3 rounded-full mr-4">
                            <i class="fas fa-globe text-xl"></i>
                        </div>
                        <h3 class="text-2xl font-bold text-gray-800">Pagamento Internacional</h3>
                    </div>
                    <div class="mb-6">
                        <p class="text-gray-600 mb-2">Disponível para todo o mundo via PayPal</p>
                        <p class="text-xl font-bold text-gray-800">💵 Valor: <span class="text-blue-600">15 USD</span></p>
                    </div>
                    <ul class="mb-6 space-y-2 text-gray-700">
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i>
                            Aceita cartão de crédito/débito internacional
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i>
                            Não precisa ter conta no PayPal
                        </li>
                        <li class="flex items-center">
                            <i class="fas fa-check-circle text-green-500 mr-2"></i>
                            Processamento instantâneo
                        </li>
                    </ul>
                    <a href="https://www.paypal.com/ncp/payment/6DWTK5TZ7MXJA" target="_blank" class="block bg-blue-600 hover:bg-blue-700 text-white text-center font-bold py-3 px-6 rounded-lg transition duration-300">
                        <i class="fab fa-paypal mr-2"></i> Pagar com PayPal
                    </a>
                </div>
            </div>
            
            <!-- Local Payments -->
            <h3 class="text-2xl font-bold text-center mb-8 text-gray-800">Para Moçambique</h3>
            <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
                <!-- Emola Payment -->
                <div class="payment-card bg-gradient-to-r from-green-50 to-teal-50 border border-green-200 rounded-xl p-6 shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-600 text-white p-3 rounded-full mr-4">
                            <i class="fas fa-mobile-alt text-xl"></i>
                        </div>
                        <h3 class="text-xl font-bold text-gray-800">Emola (Natércio)</h3>
                    </div>
                    <div class="mb-6">
                        <p class="text-gray-600 mb-2">Transferência via carteira móvel</p>
                        <p class="text-xl font-bold text-gray-800">💰 Valor: <span class="text-green-600">1.000 MTs</span></p>
                    </div>
                    <div class="bg-gray-100 p-4 rounded-lg mb-6">
                        <p class="font-mono text-lg font-bold text-gray-800">+258 875606140</p>
                    </div>
                    <a href="https://wa.me/message/3ICA6DYGBNUHP1" target="_blank" class="block bg-green-600 hover:bg-green-700 text-white text-center font-bold py-3 px-6 rounded-lg transition duration-300">
                        <i class="fab fa-whatsapp mr-2"></i> Enviar Comprovativo
                    </a>
                </div>
                
                <!-- M-Pesa Payment -->
                <div class="payment-card bg-gradient-to-r from-purple-50 to-indigo-50 border border-purple-200 rounded-xl p-6 shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="bg-purple-600 text-white p-3 rounded-full mr-4">
                            <i class="fas fa-wallet text-xl"></i>
                        </div>
                        <h3 class="text-xl font-bold text-gray-800">M-Pesa (Rosa)</h3>
                    </div>
                    <div class="mb-6">
                        <p class="text-gray-600 mb-2">Transferência via carteira móvel</p>
                        <p class="text-xl font-bold text-gray-800">💰 Valor: <span class="text-purple-600">1.000 MTs</span></p>
                    </div>
                    <div class="bg-gray-100 p-4 rounded-lg mb-6">
                        <p class="font-mono text-lg font-bold text-gray-800">+258 851428143</p>
                    </div>
                    <a href="https://wa.me/message/3ICA6DYGBNUHP1" target="_blank" class="block bg-purple-600 hover:bg-purple-700 text-white text-center font-bold py-3 px-6 rounded-lg transition duration-300">
                        <i class="fab fa-whatsapp mr-2"></i> Enviar Comprovativo
                    </a>
                </div>
            </div>
            
            <!-- Important Notice -->
            <div class="max-w-2xl mx-auto mt-12 bg-yellow-50 border-l-4 border-yellow-400 p-4 rounded-r-lg">
                <div class="flex">
                    <div class="flex-shrink-0 text-yellow-500">
                        <i class="fas fa-exclamation-circle text-xl"></i>
                    </div>
                    <div class="ml-3">
                        <p class="text-sm text-yellow-700">
                            <span class="font-bold">Aviso importante:</span> Se tiver dúvidas ou dificuldades ao pagar, fale conosco diretamente no WhatsApp. Nosso suporte está sempre disponível.
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-16 bg-blue-600 text-white">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-3xl font-bold mb-6">Pronto para Transformar Sua Vida com IA?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Não perca esta oportunidade de dominar uma das habilidades mais valiosas do século 21 por um preço acessível.</p>
            <a href="#comprar-agora" class="inline-block bg-white text-blue-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-lg text-center transition duration-300">
                Quero Me Inscrever Agora
            </a>
        </div>
    </section>

    <!-- Floating WhatsApp Button -->
    <a href="https://wa.me/message/3ICA6DYGBNUHP1" target="_blank" class="fixed bottom-6 right-6 bg-green-500 hover:bg-green-600 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg floating-button z-50">
        <i class="fab fa-whatsapp text-2xl"></i>
    </a>

    <!-- Footer -->
    <footer class="bg-gray-800 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-4 md:mb-0">
                    <div class="flex items-center">
                        <i class="fas fa-robot text-2xl text-blue-400 mr-2"></i>
                        <span class="text-xl font-bold">IA Pro Moçambique</span>
                    </div>
                    <p class="text-gray-400 mt-2">Domine a inteligência artificial e transforme seu futuro</p>
                </div>
                <div class="text-center md:text-right">
                    <h4 class="font-bold mb-2">Contato Oficial</h4>
                    <div class="flex flex-col space-y-1">
                        <a href="https://wa.me/258875606140" class="text-gray-300 hover:text-white transition duration-300">
                            <i class="fab fa-whatsapp mr-2"></i> WhatsApp: +258 875606140
                        </a>
                        <a href="mailto:domingosjulio597@gmail.com" class="text-gray-300 hover:text-white transition duration-300">
                            <i class="fas fa-envelope mr-2"></i> Email: domingosjulio597@gmail.com
                        </a>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400 text-sm">
                <p>© 2023 IA Pro Moçambique. Todos os direitos reservados.</p>
            </div>
        </div>
    </footer>

    <script>
        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                
                const targetId = this.getAttribute('href');
                if (targetId === '#') return;
                
                const targetElement = document.querySelector(targetId);
                if (targetElement) {
                    targetElement.scrollIntoView({
                        behavior: 'smooth'
                    });
                }
            });
        });
        
        // Animation on scroll
        function animateOnScroll() {
            const elements = document.querySelectorAll('.testimonial-card, .payment-card');
            
            elements.forEach(element => {
                const elementPosition = element.getBoundingClientRect().top;
                const screenPosition = window.innerHeight / 1.3;
                
                if (elementPosition < screenPosition) {
                    element.style.opacity = '1';
                    element.style.transform = 'translateY(0)';
                }
            });
        }
        
        // Set initial state for animation
        document.querySelectorAll('.testimonial-card, .payment-card').forEach(el => {
            el.style.opacity = '0';
            el.style.transform = 'translateY(20px)';
            el.style.transition = 'all 0.6s ease';
        });
        
        // Run on load and scroll
        window.addEventListener('load', animateOnScroll);
        window.addEventListener('scroll', animateOnScroll);
    </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=Domingosj/curso-d-intelig-ncia-artificial" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>