File size: 19,076 Bytes
9ba79f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bolo Fofinho Sem Glúten - Receitas Testadas e Aprovadas</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">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#6E48FF',
                        secondary: '#9F7AEA',
                        dark: '#1A202C',
                        light: '#F7FAFC',
                    },
                    fontFamily: {
                        sans: ['Inter', 'sans-serif'],
                    },
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #F7FAFC 0%, #EBF4FF 100%);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #6E48FF 0%, #9F7AEA 100%);
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        .floating-2 {
            animation: floating 5s ease-in-out infinite 1s;
        }
        
        .floating-3 {
            animation: floating 7s ease-in-out infinite 1.5s;
        }
        
        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, 15px); }
            100% { transform: translate(0, -0px); }
        }
        
        .btn-primary {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(110, 72, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(110, 72, 255, 0.4);
        }
        
        .btn-secondary {
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .testimonial-card {
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
        }
    </style>
</head>
<body class="min-h-screen text-dark">
    <!-- Floating Particles Background -->
    <div id="particles-container" class="fixed inset-0 overflow-hidden z-0"></div>
    
    <div class="relative z-10">
        <!-- Hero Section -->
        <section class="relative overflow-hidden">
            <div class="container mx-auto px-4 py-16 md:py-24">
                <div class="flex flex-col lg:flex-row items-center justify-between">
                    <div class="lg:w-1/2 mb-12 lg:mb-0">
                        <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-4">
                            BOLO FOFINHO, <span class="text-primary">simples</span>, rápido de fazer e muito prático!
                        </h1>
                        <h2 class="text-xl md:text-2xl text-gray-700 mb-8">
                            Não abra mão do sabor, deliciosos e <span class="font-semibold">sem Glúten</span>
                        </h2>
                        
                        <div class="mb-10">
                            <h3 class="text-2xl font-bold mb-2">Receitas Testadas e Aprovadas</h3>
                            <p class="text-lg text-gray-600">Sem Leite e Sem Açúcar</p>
                        </div>
                        
                        <div class="flex flex-col sm:flex-row gap-4">
                            <button class="btn-primary bg-primary text-white px-8 py-4 rounded-lg font-bold text-lg">
                                BAIXAR MINHA CÓPIA
                            </button>
                            <button class="btn-secondary border-2 border-primary text-primary px-8 py-4 rounded-lg font-bold text-lg">
                                BAIXAR MINHA RECEITA
                            </button>
                        </div>
                    </div>
                    
                    <div class="lg:w-1/2 relative">
                        <div class="floating">
                            <img src="https://images.unsplash.com/photo-1578985545062-69928b1d9587?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1080&q=80" 
                                 alt="Bolo fofinho sem glúten" 
                                 class="rounded-xl shadow-2xl w-full max-w-lg mx-auto">
                        </div>
                        <div class="absolute -bottom-10 -left-10 w-24 h-24 bg-secondary rounded-full opacity-20 floating-2"></div>
                        <div class="absolute -top-10 -right-10 w-32 h-32 bg-primary rounded-full opacity-20 floating-3"></div>
                    </div>
                </div>
            </div>
        </section>
        
        <!-- Benefits Section -->
        <section class="py-16 bg-white bg-opacity-70 backdrop-blur-sm">
            <div class="container mx-auto px-4">
                <div class="max-w-4xl mx-auto text-center mb-16">
                    <h2 class="text-3xl font-bold mb-6">Perguntas Frequentes</h2>
                </div>
                
                <div class="grid md:grid-cols-3 gap-8">
                    <div class="bg-white p-8 rounded-xl shadow-lg">
                        <div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6">
                            <i class="fas fa-money-bill-wave text-primary text-2xl"></i>
                        </div>
                        <h3 class="text-xl font-bold mb-3">"Essas receitas são caras?"</h3>
                        <p class="text-gray-600">Não! Usamos ingredientes básicos que você provavelmente já tem na cozinha, evitando a necessidade de itens caros ou especializados.</p>
                    </div>
                    
                    <div class="bg-white p-8 rounded-xl shadow-lg">
                        <div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6">
                            <i class="fas fa-thumbs-up text-primary text-2xl"></i>
                        </div>
                        <h3 class="text-xl font-bold mb-3">"O bolo realmente fica gostoso e fofinho?"</h3>
                        <p class="text-gray-600">Sim! Criadas por uma especialista em intolerâncias, nossas receitas garantem bolos fofinhos e deliciosos, comparáveis aos bolos tradicionais.</p>
                    </div>
                    
                    <div class="bg-white p-8 rounded-xl shadow-lg">
                        <div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6">
                            <i class="fas fa-utensils text-primary text-2xl"></i>
                        </div>
                        <h3 class="text-xl font-bold mb-3">"Eu preciso ser experiente na cozinha?"</h3>
                        <p class="text-gray-600">Não! Fizemos receitas pensando em todos os níveis de habilidade, com instruções claras e um passo a passo super simples.</p>
                    </div>
                </div>
                
                <div class="mt-16 bg-primary rounded-xl p-8 text-center text-white">
                    <h3 class="text-2xl font-bold mb-4">Como vou receber as Receitas?</h3>
                    <p class="text-lg mb-6">Após o pagamento. Zero espera! por e-mail ou via plataforma</p>
                    <button class="bg-white text-primary px-8 py-3 rounded-lg font-bold text-lg btn-primary">
                        QUERO MEU E-BOOK AGORA
                    </button>
                </div>
            </div>
        </section>
        
        <!-- Testimonials Section -->
        <section class="py-16">
            <div class="container mx-auto px-4">
                <h2 class="text-3xl font-bold text-center mb-12">Avaliações de Clientes</h2>
                
                <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
                    <!-- Testimonial 1 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Nayara Soares</h4>
                                <p class="text-gray-500 text-sm">12 semanas atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Pensa num e-book maravilhoso as receitas são maravilhosas estou amando real... a Lara é maravilhosa uma benção nos dar suporte tira nossas dúvidas... super indico mil vezes!!!"</p>
                    </div>
                    
                    <!-- Testimonial 2 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Márcia Maria</h4>
                                <p class="text-gray-500 text-sm">1 semana atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Gente gente, o bolo é maravilhoso. Sigam exatamente a receita. Olha sem palavras para descrever a alegria em comer um bolo sem glúten delicioso."</p>
                    </div>
                    
                    <!-- Testimonial 3 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Tatiane Araújo Moraes</h4>
                                <p class="text-gray-500 text-sm">3 semanas atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Oi comprei seu ebook estou apaixonada vou imprimir e encadernar, vou fazer uma receita agorinha❤️"</p>
                    </div>
                    
                    <!-- Testimonial 4 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Tamires Reis</h4>
                                <p class="text-gray-500 text-sm">4 semanas atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Comprei e chegou na hora no e-mail, adorei o material, super bem feitinho, achei ótimo que tem as medidas em xícaras e em gramas também. Logo começo a testar as receitas."</p>
                    </div>
                    
                    <!-- Testimonial 5 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Marlene Costa</h4>
                                <p class="text-gray-500 text-sm">6 semanas atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Fiquei com um pouco de medo de comprar pq tem colocar CPF e celular, mas deu tudo certo e o ebook é super bem feito e com diversas receitas que podemos fazer"</p>
                    </div>
                    
                    <!-- Testimonial 6 -->
                    <div class="testimonial-card bg-white p-6 rounded-xl shadow-lg">
                        <div class="flex items-center mb-4">
                            <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4">
                                <i class="fas fa-user text-primary"></i>
                            </div>
                            <div>
                                <h4 class="font-bold">Simone Oliveira</h4>
                                <p class="text-gray-500 text-sm">12 semanas atrás</p>
                            </div>
                        </div>
                        <p class="text-gray-700 italic">"Boa noite Lara, eu comprei seus e-books e estou amando muito obrigada você é bem talentosa suas receitas são de fácil execução. Ah já imprimi e encadernei, ficou ótimo!"</p>
                    </div>
                </div>
            </div>
        </section>
        
        <!-- Guarantee Section -->
        <section class="py-16 bg-gray-50">
            <div class="container mx-auto px-4">
                <div class="max-w-4xl mx-auto text-center">
                    <div class="inline-block bg-white p-2 rounded-full mb-6">
                        <div class="bg-primary bg-opacity-10 p-4 rounded-full">
                            <i class="fas fa-shield-alt text-primary text-3xl"></i>
                        </div>
                    </div>
                    <h2 class="text-3xl font-bold mb-4">Satisfação garantida ou seu dinheiro de volta</h2>
                    <p class="text-xl text-gray-600 mb-8">Você tem até 7 dias para solicitar a devolução do valor pago pelo produto.</p>
                    
                    <div class="bg-white rounded-xl p-8 shadow-lg max-w-2xl mx-auto">
                        <h3 class="text-2xl font-bold mb-4">Experimente Sem Riscos</h3>
                        <p class="text-gray-600 mb-6">Desvende os Segredos dos Bolos Sem Glúten Perfeitos e saboreie hoje mesmo!</p>
                        <p class="text-primary font-bold text-lg mb-6">Acesso Imediato</p>
                        <button class="btn-primary bg-primary text-white px-8 py-4 rounded-lg font-bold text-lg w-full max-w-md mx-auto">
                            QUERO MEU E-BOOK AGORA
                        </button>
                    </div>
                </div>
            </div>
        </section>
        
        <!-- Footer -->
        <footer class="bg-dark text-white py-8">
            <div class="container mx-auto px-4 text-center">
                <p>© 2023 Bolo Fofinho Sem Glúten. Todos os direitos reservados.</p>
            </div>
        </footer>
    </div>
    
    <script>
        // Create floating particles
        document.addEventListener('DOMContentLoaded', function() {
            const container = document.getElementById('particles-container');
            const particleCount = 20;
            
            for (let i = 0; i < particleCount; i++) {
                const particle = document.createElement('div');
                particle.classList.add('particle');
                
                // Random size between 2px and 5px
                const size = Math.random() * 3 + 2;
                particle.style.width = `${size}px`;
                particle.style.height = `${size}px`;
                
                // Random position
                particle.style.left = `${Math.random() * 100}%`;
                particle.style.top = `${Math.random() * 100}%`;
                
                // Random animation
                const duration = Math.random() * 20 + 10;
                const delay = Math.random() * 5;
                particle.style.animation = `float ${duration}s ease-in-out infinite ${delay}s`;
                
                container.appendChild(particle);
            }
            
            // Add hover effect to buttons
            const primaryButtons = document.querySelectorAll('.btn-primary');
            const secondaryButtons = document.querySelectorAll('.btn-secondary');
            
            primaryButtons.forEach(btn => {
                btn.addEventListener('mouseenter', function() {
                    this.style.transform = 'translateY(-2px)';
                    this.style.boxShadow = '0 6px 12px rgba(110, 72, 255, 0.4)';
                });
                
                btn.addEventListener('mouseleave', function() {
                    this.style.transform = '';
                    this.style.boxShadow = '0 4px 6px rgba(110, 72, 255, 0.3)';
                });
            });
            
            secondaryButtons.forEach(btn => {
                btn.addEventListener('mouseenter', function() {
                    this.style.backgroundColor = 'rgba(255, 255, 255, 0.1)';
                });
                
                btn.addEventListener('mouseleave', function() {
                    this.style.backgroundColor = '';
                });
            });
        });
    </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=wallysonweb/bolo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>