Spaces:
Running
Running
File size: 26,801 Bytes
afd059e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | <!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Receitas Sem Glúten - Delícias Saudáveis</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #fafafa;
}
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #e4f0fb 100%);
}
.recipe-card {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.recipe-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
</style>
</head>
<body class="gradient-bg">
<!-- Header -->
<header class="py-6 px-4 md:px-8 lg:px-16">
<div class="container mx-auto flex justify-between items-center">
<div class="text-2xl font-bold text-indigo-700">BOLOS fofinhos
Sem Glúten</div>
<div class="hidden md:flex space-x-6">
<a href="#features" class="text-gray-700 hover:text-indigo-600 transition">Benefícios</a>
<a href="#testimonials" class="text-gray-700 hover:text-indigo-600 transition">Depoimentos</a>
<a href="#faq" class="text-gray-700 hover:text-indigo-600 transition">Dúvidas</a>
</div>
<button class="md:hidden text-gray-700">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="py-12 px-4 md:px-8 lg:px-16">
<div class="container mx-auto 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 text-gray-800 leading-tight mb-6">
Receitas Testadas e Aprovadas <br>
<span class="text-indigo-600">Sem Leite e Sem Açúcar</span>
</h1>
<p class="text-lg text-gray-600 mb-8">Ingredientes acessíveis para bolos incríveis que todos podem desfrutar, sem comprometer o sabor ou a textura.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
</i><a href="https://pay.cakto.com.br/hsmu2gd_368320" target="_blank">
<button class="btn-primary text-white font-semibold py-4 px-8 rounded-full pulse">
<i class="fas fa-download mr-2"></i> BAIXAR MINHA CÓPIA
</button>
</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/1.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/2.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/3.jpg" alt="">
</div>
<div class="ml-4">
<p class="text-sm text-gray-600">Mais de <span class="font-bold text-indigo-600">5.000</span> pessoas já baixaram</p>
<div class="flex 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>
<span class="text-gray-600 ml-2">4.9 (1.234 avaliações)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1620228885517-9ee9a581f8e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Bolo de milho com coco"
class="rounded-2xl shadow-xl w-full max-w-md transform rotate-3">
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-xl shadow-lg">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fas fa-check text-green-500 text-xl"></i>
</div>
<div>
<p class="font-bold text-gray-800">Receitas testadas</p>
<p class="text-sm text-gray-600">100% aprovadas</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 px-4 md:px-8 lg:px-16 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-16">Você deve estar se perguntando:</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="recipe-card bg-white p-8 rounded-xl">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-utensils text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 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>
<!-- Feature 2 -->
<div class="recipe-card bg-white p-8 rounded-xl">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shopping-basket text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 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>
<!-- Feature 3 -->
<div class="recipe-card bg-white p-8 rounded-xl">
<div class="bg-pink-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-user-graduate text-pink-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 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>
<!-- Feature 4 -->
<div class="recipe-card bg-white p-8 rounded-xl">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-bolt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Como vou receber as Receitas?</h3>
<p class="text-gray-600">Receba instantaneamente após o pagamento por e-mail e ou Plataforma de Membros Cakto. Zero espera! Toda semana você receberá uma novidade na sua area de Membros !!! </p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 px-4 md:px-8 lg:px-16 gradient-bg">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-4">Avaliações de Clientes</h2>
<p class="text-center text-gray-600 mb-12">O que nossos clientes estão dizendo</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Nayara Soares">
<div>
<h4 class="font-bold text-gray-800">Nayara Soares</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"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>
<p class="text-sm text-gray-400">3 semanas atrás</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Márcia Maria">
<div>
<h4 class="font-bold text-gray-800">Márcia Maria</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"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>
<p class="text-sm text-gray-400">3 semanas atrás</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Tatiane Araújo Moraes">
<div>
<h4 class="font-bold text-gray-800">Tatiane Araújo Moraes</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"Oi comprei seu ebook estou apaixonada vou imprimir e encadernar, vou fazer uma receita agorinha❤️"</p>
<p class="text-sm text-gray-400">3 semanas atrás</p>
</div>
</div>
<!-- Additional testimonials (hidden by default, can be toggled) -->
<div id="more-testimonials" class="hidden mt-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 4 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/28.jpg" alt="Tamires Reis">
<div>
<h4 class="font-bold text-gray-800">Tamires Reis</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"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>
<p class="text-sm text-gray-400">4 semanas atrás</p>
</div>
<!-- Testimonial 5 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/65.jpg" alt="Marlene Costa">
<div>
<h4 class="font-bold text-gray-800">Marlene Costa</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"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>
<p class="text-sm text-gray-400">6 semanas atrás</p>
</div>
<!-- Testimonial 6 -->
<div class="testimonial-card p-6">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/72.jpg" alt="Simone Oliveira">
<div>
<h4 class="font-bold text-gray-800">Simone Oliveira</h4>
<div class="flex text-yellow-400 text-sm">
<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>
</div>
<p class="text-gray-600 mb-4">"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>
<p class="text-sm text-gray-400">12 semanas atrás</p>
</div>
</div>
<div class="text-center mt-8">
<button id="toggle-testimonials" class="text-indigo-600 font-semibold hover:text-indigo-800 transition">
<i class="fas fa-chevron-down mr-2"></i> Ver mais avaliações
</button>
</div>
</div>
</section>
<!-- Guarantee Section -->
<section class="py-16 px-4 md:px-8 lg:px-16 bg-white">
<div class="container mx-auto text-center max-w-4xl">
<div class="bg-indigo-50 inline-flex p-4 rounded-full mb-6">
<i class="fas fa-shield-alt text-indigo-600 text-3xl"></i>
</div>
<h2 class="text-3xl font-bold text-gray-800 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>
<p class="text-lg font-semibold text-indigo-600 mb-8">Experimente Sem Riscos</p>
<div class="bg-gradient-to-r from-indigo-50 to-purple-50 p-8 rounded-xl">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Desvende os Segredos dos Bolos Sem Glúten Perfeitos e saboreie hoje mesmo!</h3>
<div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-6">
<div class="flex items-center bg-white p-4 rounded-lg">
<i class="fas fa-bolt text-yellow-500 text-2xl mr-3"></i>
<span class="font-semibold">Acesso Imediato</span>
</div>
<button class="btn-primary text-white font-semibold py-4 px-8 rounded-full">
<i class="fas fa-download mr-2"></i> BAIXAR MINHA CÓPIA
</button>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-16 px-4 md:px-8 lg:px-16 gradient-bg">
<div class="container mx-auto max-w-4xl">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Perguntas Frequentes</h2>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="bg-white rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<span class="text-lg font-semibold text-gray-800">Quais tipos de receitas estão incluídas?</span>
<i class="fas fa-chevron-down text-indigo-600 transition-transform"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">Nosso livro contém mais de 10 receitas muitos especiais e variadas de bolos, incluindo opções para café da manhã, sobremesas especiais e opções para ocasiões festivas. Todas sem glúten, sem leite e sem açúcar refinado.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-white rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<span class="text-lg font-semibold text-gray-800">Posso substituir ingredientes nas receitas?</span>
<i class="fas fa-chevron-down text-indigo-600 transition-transform"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">Sim! Fornecemos um guia completo de substituições para ajudar você a adaptar las receitas de acordo com suas preferências ou restrições alimentares adicionais.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-white rounded-xl overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<span class="text-lg font-semibold text-gray-800">Como funciona a garantia de satisfação?</span>
<i class="fas fa-chevron-down text-indigo-600 transition-transform"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">Se por qualquer motivo você não ficar satisfeito com o material, basta nos enviar um e-mail dentro de 7 dias após a compra e devolveremos 100% do seu dinheiro, sem questionamentos.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="py-12 px-4 md:px-8 lg:px-16 bg-indigo-700 text-white">
<div class="container mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Pronto para transformar sua alimentação?</h2>
<p class="text-xl mb-8 opacity-90">Comece hoje mesmo a fazer bolos deliciosos que todos podem desfrutar!</p>
<button class="bg-white text-indigo-700 font-bold py-4 px-12 rounded-full hover:bg-indigo-100 transition">
<i class="fas fa-download mr-2"></i> QUERO MINHA CÓPIA AGORA
</button>
</div>
</section>
<!-- Footer -->
<footer class="py-8 px-4 md:px-8 lg:px-16 bg-gray-900 text-white">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<div class="text-2xl font-bold mb-2">Delícias Sem Glúten</div>
<p class="text-gray-400">Receitas testadas e aprovadas para uma vida mais saudável</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-pinterest"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>Copyright © 2023 Delícias Sem Glúten. Todos os direitos Reservados</p>
</div>
</div>
</footer>
<script>
// Toggle testimonials
document.getElementById('toggle-testimonials').addEventListener('click', function() {
const moreTestimonials = document.getElementById('more-testimonials');
const icon = this.querySelector('i');
if (moreTestimonials.classList.contains('hidden')) {
moreTestimonials.classList.remove('hidden');
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
this.textContent = 'Ver menos avaliações';
this.insertBefore(icon, this.firstChild);
} else {
moreTestimonials.classList.add('hidden');
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
this.textContent = 'Ver mais avaliações';
this.insertBefore(icon, this.firstChild);
}
});
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
} else {
content.classList.add('hidden');
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
}
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=wallysonweb/bolo2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |