Spaces:
Running
Running
File size: 38,968 Bytes
23bc9f4 99e0c2e 23bc9f4 99e0c2e 23bc9f4 99e0c2e 23bc9f4 99e0c2e 23bc9f4 99e0c2e 23bc9f4 99e0c2e 23bc9f4 | 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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | <!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Masterclass de Fidelização - Multiplique Suas Vendas</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>
.gradient-bg {
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center">
<div class="bg-white rounded-full p-2 mr-3">
<i class="fas fa-crown text-purple-600 text-2xl"></i>
</div>
<h1 class="text-xl md:text-2xl font-bold">Fidelização<span class="text-yellow-300">Master</span></h1>
</div>
<a href="#inscricao" class="bg-yellow-400 hover:bg-yellow-300 text-gray-900 font-bold py-2 px-4 md:py-3 md:px-6 rounded-full transition duration-300 transform hover:scale-105">
Garantir minha vaga
</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="gradient-bg 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">
<div class="bg-white bg-opacity-10 rounded-lg inline-block px-3 py-1 mb-4">
<span class="text-sm font-semibold">MASTERCLASS EXCLUSIVA</span>
</div>
<h1 class="text-3xl md:text-5xl font-bold leading-tight mb-4">
Aprenda a <span class="text-yellow-300">fidelizar clientes</span> e multiplicar suas vendas com quem já comprou de você
</h1>
<p class="text-xl md:text-2xl mb-8 opacity-90">
Usando a mesma estratégia que me fez vender <span class="font-bold">5 milhões para um único cliente</span>
</p>
<div class="bg-white bg-opacity-20 rounded-xl p-6 mb-8">
<div class="flex items-center mb-4">
<i class="far fa-calendar-alt text-yellow-300 mr-3 text-xl"></i>
<div>
<p class="font-bold">Dias 15 e 16 de Novembro</p>
<p class="text-sm">19h às 21h (Horário de Brasília)</p>
</div>
</div>
<div class="flex items-center">
<i class="fas fa-laptop text-yellow-300 mr-3 text-xl"></i>
<div>
<p class="font-bold">100% Online</p>
<p class="text-sm">Valor especial por tempo limitado</p>
</div>
</div>
</div>
<div id="countdown" class="mb-8">
<p class="text-sm mb-2">INSCRIÇÕES ENCERRAM EM:</p>
<div class="flex space-x-2">
<div class="bg-white bg-opacity-20 rounded-lg text-center py-2 px-4">
<div class="text-2xl font-bold" id="days">00</div>
<div class="text-xs">DIAS</div>
</div>
<div class="bg-white bg-opacity-20 rounded-lg text-center py-2 px-4">
<div class="text-2xl font-bold" id="hours">00</div>
<div class="text-xs">HORAS</div>
</div>
<div class="bg-white bg-opacity-20 rounded-lg text-center py-2 px-4">
<div class="text-2xl font-bold" id="minutes">00</div>
<div class="text-xs">MIN</div>
</div>
<div class="bg-white bg-opacity-20 rounded-lg text-center py-2 px-4">
<div class="text-2xl font-bold" id="seconds">00</div>
<div class="text-xs">SEG</div>
</div>
</div>
</div>
<a href="#inscricao" class="bg-yellow-400 hover:bg-yellow-300 text-gray-900 font-bold py-4 px-8 rounded-full text-lg inline-block transition duration-300 transform hover:scale-105 pulse">
QUERO ME INSCREVER AGORA
</a>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884974?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Especialista em fidelização" class="rounded-xl shadow-2xl w-full max-w-md border-4 border-white">
<div class="absolute -bottom-5 -right-5 bg-yellow-400 text-gray-900 font-bold py-2 px-4 rounded-full shadow-lg">
<i class="fas fa-award mr-2"></i> +5.000 alunos
</div>
</div>
</div>
</div>
</section>
<!-- Who is it for -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">PARA QUEM É ESSA MASTERCLASS?</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
<p class="text-xl text-gray-700 max-w-3xl mx-auto">
Empreendedores, gestores e vendedores que querem transformar clientes ocasionais em compradores fiéis e recorrentes.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-xl p-6 border border-gray-200 hover:border-purple-500 transition duration-300 card-hover">
<div class="bg-purple-100 text-purple-800 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-store text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Dono de Negócio</h3>
<p class="text-gray-700">Que quer aumentar o ticket médio e a recorrência dos clientes.</p>
</div>
<div class="bg-gray-50 rounded-xl p-6 border border-gray-200 hover:border-purple-500 transition duration-300 card-hover">
<div class="bg-purple-100 text-purple-800 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-user-tie text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Gestor Comercial</h3>
<p class="text-gray-700">Que precisa melhorar os resultados da equipe de vendas.</p>
</div>
<div class="bg-gray-50 rounded-xl p-6 border border-gray-200 hover:border-purple-500 transition duration-300 card-hover">
<div class="bg-purple-100 text-purple-800 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-handshake text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Vendedor</h3>
<p class="text-gray-700">Que deseja criar relacionamentos duradouros com clientes.</p>
</div>
</div>
</div>
</section>
<!-- What You'll Learn -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">O QUE VOCÊ VAI APRENDER?</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
<p class="text-xl text-gray-700 max-w-3xl mx-auto">
Conteúdo prático e aplicável que vai transformar sua relação com os clientes.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300 card-hover">
<div class="flex items-start">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mt-1 mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">O Ciclo da Fidelização</h3>
<p class="text-gray-700">O passo a passo completo para transformar um cliente novo em um cliente fiel.</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300 card-hover">
<div class="flex items-start">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mt-1 mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Gatilhos de Recompra</h3>
<p class="text-gray-700">Como criar momentos estratégicos para que seu cliente compre novamente.</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300 card-hover">
<div class="flex items-start">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mt-1 mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Programas de Fidelidade</h3>
<p class="text-gray-700">Modelos comprovados que realmente funcionam para aumentar a recorrência.</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300 card-hover">
<div class="flex items-start">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mt-1 mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Upsell Estratégico</h3>
<p class="text-gray-700">Como oferecer produtos complementares sem ser invasivo.</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300 card-hover md:col-span-2">
<div class="flex items-start">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mt-1 mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Caso Real: Como vendi 5 milhões para um único cliente</h3>
<p class="text-gray-700">Detalhes da estratégia completa que usei para transformar um cliente comum em um cliente premium.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">CRONOGRAMA DA MASTERCLASS</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
</div>
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row mb-8 p-6 bg-gray-50 rounded-xl border-l-4 border-purple-600">
<div class="md:w-1/4 mb-4 md:mb-0">
<div class="bg-purple-600 text-white rounded-lg py-2 px-4 inline-block">
<p class="font-bold">DIA 1</p>
<p class="text-sm">15/11 - 19h</p>
</div>
</div>
<div class="md:w-3/4">
<h3 class="text-xl font-bold mb-2">Os Pilares da Fidelização</h3>
<ul class="list-disc list-inside text-gray-700 space-y-1">
<li>Por que a fidelização é 5x mais barata que captação</li>
<li>O erro que 90% das empresas cometem com clientes antigos</li>
<li>Framework completo para mapear o ciclo do seu cliente</li>
</ul>
</div>
</div>
<div class="flex flex-col md:flex-row mb-8 p-6 bg-gray-50 rounded-xl border-l-4 border-purple-600">
<div class="md:w-1/4 mb-4 md:mb-0">
<div class="bg-purple-600 text-white rounded-lg py-2 px-4 inline-block">
<p class="font-bold">DIA 2</p>
<p class="text-sm">16/11 - 19h</p>
</div>
</div>
<div class="md:w-3/4">
<h3 class="text-xl font-bold mb-2">Estratégias Avançadas de Fidelização</h3>
<ul class="list-disc list-inside text-gray-700 space-y-1">
<li>Como criar um programa de fidelidade que realmente funciona</li>
<li>O segredo do Upsell não invasivo</li>
<li>Caso real: Como vendi 5 milhões para um único cliente</li>
<li>Q&A ao vivo para tirar dúvidas</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Bonus -->
<section class="py-16 gradient-bg text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">BÔNUS EXCLUSIVOS</h2>
<div class="w-20 h-1 bg-yellow-400 mx-auto mb-6"></div>
<p class="text-xl opacity-90 max-w-3xl mx-auto">
Para quem se inscrever até <span class="font-bold underline">dia 10/11</span>, esses bônus serão liberados gratuitamente:
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-white bg-opacity-10 rounded-xl p-6 border border-white border-opacity-20 hover:border-opacity-40 transition duration-300 card-hover">
<div class="bg-yellow-400 text-gray-900 rounded-full w-12 h-12 flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-file-alt text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Checklist de Fidelização</h3>
<p class="text-center opacity-90">Um guia passo a passo para implementar imediatamente após a masterclass.</p>
</div>
<div class="bg-white bg-opacity-10 rounded-xl p-6 border border-white border-opacity-20 hover:border-opacity-40 transition duration-300 card-hover">
<div class="bg-yellow-400 text-gray-900 rounded-full w-12 h-12 flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-envelope text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Modelos de E-mails</h3>
<p class="text-center opacity-90">Sequências prontas para nutrir seu cliente após a primeira compra.</p>
</div>
<div class="bg-white bg-opacity-10 rounded-xl p-6 border border-white border-opacity-20 hover:border-opacity-40 transition duration-300 card-hover">
<div class="bg-yellow-400 text-gray-900 rounded-full w-12 h-12 flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-users text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Grupo Exclusivo</h3>
<p class="text-center opacity-90">Acesso a comunidade de alunos para networking e dúvidas.</p>
</div>
</div>
<div class="mt-12 text-center">
<div class="inline-block bg-red-500 text-white text-sm font-bold py-1 px-3 rounded-full mb-4 animate-pulse">
<i class="fas fa-exclamation-circle mr-1"></i> BÔNUS POR TEMPO LIMITADO
</div>
<p class="text-lg mb-6 max-w-2xl mx-auto">
Esses bônus estarão disponíveis apenas para quem se inscrever até o dia 10/11. Depois dessa data, o acesso será encerrado.
</p>
<a href="#inscricao" class="bg-yellow-400 hover:bg-yellow-300 text-gray-900 font-bold py-4 px-8 rounded-full text-lg inline-block transition duration-300 transform hover:scale-105">
GARANTIR MEU ACESSO E BÔNUS
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">O QUE DIZEM QUEM JÁ PARTICIPOU</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="bg-gray-50 rounded-xl p-6 shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Depoimento" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Carolina S.</h4>
<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>
</div>
</div>
</div>
<p class="text-gray-700">
"Implementei as estratégias e em 3 meses aumentei em 40% as vendas para clientes antigos. Absurdo de bom!"
</p>
</div>
<div class="bg-gray-50 rounded-xl p-6 shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Depoimento" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Ricardo F.</h4>
<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>
</div>
</div>
</div>
<p class="text-gray-700">
"O case dos 5 milhões foi revelador. Adaptei para meu negócio e já fechamos um contrato de 12 meses com um cliente."
</p>
</div>
<div class="bg-gray-50 rounded-xl p-6 shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Depoimento" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Amanda T.</h4>
<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>
</div>
</div>
</div>
<p class="text-gray-700">
"Finalmente entendi como criar um programa de fidelidade que funciona. Nossos clientes estão comprando 3x mais!"
</p>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section id="inscricao" class="py-16 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<div class="max-w-6xl mx-auto bg-gray-800 rounded-xl p-8 md:p-12 shadow-lg">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<div class="text-center mb-8">
<h2 class="text-3xl md:text-4xl font-bold mb-4">INSCREVA-SE AGORA</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
</div>
<form id="leadForm" class="space-y-6" onsubmit="submitForm(event)">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="nome" class="block text-sm font-medium mb-1">Nome Completo*</label>
<input type="text" id="nome" name="nome" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:border-purple-500 focus:outline-none transition duration-300" required>
</div>
<div>
<label for="email" class="block text-sm font-medium mb-1">E-mail*</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:border-purple-500 focus:outline-none transition duration-300" required>
</div>
</div>
<div>
<label for="telefone" class="block text-sm font-medium mb-1">WhatsApp*</label>
<input type="tel" id="telefone" name="telefone" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:border-purple-500 focus:outline-none transition duration-300" required>
</div>
<div>
<label for="empresa" class="block text-sm font-medium mb-1">Qual seu negócio/área de atuação?*</label>
<input type="text" id="empresa" name="empresa" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:border-purple-500 focus:outline-none transition duration-300" required>
</div>
<div class="pt-4">
<button type="submit" class="w-full gradient-bg hover:opacity-90 text-white font-bold py-4 px-6 rounded-lg text-lg transition duration-300 transform hover:scale-105">
QUERO ME INSCREVER AGORA
</button>
</div>
</form>
<script>
function submitForm(e) {
e.preventDefault();
const form = document.getElementById('leadForm');
const formData = new FormData(form);
const data = Object.fromEntries(formData);
// Send email notification
fetch('https://formspree.io/f/mqkreqza', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: 'edson.assis@vsxconsulting.com',
subject: 'Novo Lead - Masterclass Fidelização',
message: `Novo lead cadastrado:\n\nNome: ${data.nome}\nEmail: ${data.email}\nWhatsApp: ${data.telefone}\nNegócio: ${data.empresa}`
})
});
// Redirect to Hotmart checkout
window.location.href = 'https://pay.hotmart.com/O96088683N?sck=HOTMART_PRODUCT_PAGE&off=pt7xqkya&hotfeature=32,34&_gl=1*1gsxdsl*_gcl_au*MTU3ODk2MzI3MS4xNzUzNzA3MTUxLjEzMzgzMjQxNTUuMTc1MzcyMDUxNC4xNzUzNzIwNTMy*_ga*MTcwNDAyOTQ3MS4xNzQxMzYxMTIx*_ga_GQH2V1F11Q*czE3NTM3MzQ1NzMkbzIyJGcxJHQxNzUzNzM2MDgzJGo1NSRsMCRoMA..&bid=1753741036765';
}
</script>
</div>
<div class="flex flex-col items-center justify-center text-center">
<div class="mb-6">
<span class="text-gray-400 line-through text-xl">De R$497,00</span>
<div class="text-5xl font-bold text-yellow-300 my-2">R$49,97</div>
<p class="text-gray-300">ou 12x de R$4,99</p>
</div>
<div class="bg-gray-700 rounded-lg p-4 mb-6 w-full max-w-xs">
<p class="font-bold mb-2">Formas de pagamento:</p>
<div class="flex justify-center space-x-4">
<i class="fab fa-cc-visa text-3xl text-blue-400"></i>
<i class="fab fa-cc-mastercard text-3xl text-red-400"></i>
<i class="fab fa-cc-amex text-3xl text-blue-500"></i>
<i class="fab fa-cc-paypal text-3xl text-blue-600"></i>
</div>
</div>
</div>
</div>
<div class="text-center text-sm opacity-80">
<p>Suas informações estão seguras conosco. Nunca compartilharemos seus dados.</p>
</div>
</form>
</div>
<div class="mt-12 text-center">
<div class="inline-flex items-center bg-red-500 text-white text-sm font-bold py-2 px-4 rounded-full mb-4">
<i class="fas fa-exclamation-triangle mr-2"></i> VAGAS LIMITADAS
</div>
<p class="text-lg mb-6 max-w-2xl mx-auto">
Devido à interação ao vivo, estamos limitando o número de participantes. Garanta sua vaga agora!
</p>
</div>
</div>
</section>
<!-- FAQ -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">PERGUNTAS FREQUENTES</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto mb-6"></div>
</div>
<div class="max-w-3xl mx-auto space-y-4">
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<button class="faq-toggle w-full text-left p-6 focus:outline-none">
<div class="flex justify-between items-center">
<h3 class="text-lg font-bold">A masterclass é realmente gratuita?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-700">Sim, a masterclass é 100% gratuita. Nosso objetivo é compartilhar conhecimento valioso sobre fidelização de clientes. Durante o evento, você terá a oportunidade de conhecer nosso trabalho e, se quiser, se aprofundar mais com nossos cursos pagos.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<button class="faq-toggle w-full text-left p-6 focus:outline-none">
<div class="flex justify-between items-center">
<h3 class="text-lg font-bold">Como vou receber o acesso?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-700">Imediatamente após sua inscrição, você receberá um e-mail com todas as informações de acesso. Também enviaremos lembretes 1 hora antes de cada dia de aula. As aulas serão transmitidas via Zoom e ficarão gravadas por 7 dias para quem não puder assistir ao vivo.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<button class="faq-toggle w-full text-left p-6 focus:outline-none">
<div class="flex justify-between items-center">
<h3 class="text-lg font-bold">Preciso ter experiência em vendas?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-700">Não é necessário. A masterclass foi projetada para ser acessível tanto para iniciantes quanto para profissionais experientes. Vamos desde os conceitos básicos até estratégias avançadas, com exemplos práticos de diferentes setores.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<button class="faq-toggle w-full text-left p-6 focus:outline-none">
<div class="flex justify-between items-center">
<h3 class="text-lg font-bold">E se eu não puder assistir ao vivo?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-700">Todas as aulas ficarão gravadas e disponíveis por 7 dias após o evento. Você receberá o link para acessar as gravações mesmo que não possa participar ao vivo. No entanto, recomendamos a participação ao vivo para poder interagir e tirar dúvidas.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<button class="faq-toggle w-full text-left p-6 focus:outline-none">
<div class="flex justify-between items-center">
<h3 class="text-lg font-bold">Os bônus têm custo adicional?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-700">Não, todos os bônus são totalmente gratuitos para quem se inscrever dentro do prazo (até 10/11). Você receberá acesso a eles imediatamente após sua inscrição, sem nenhum custo adicional.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<div class="bg-white rounded-full p-2 mr-3">
<i class="fas fa-crown text-purple-600 text-xl"></i>
</div>
<h1 class="text-xl font-bold">Fidelização<span class="text-yellow-300">Master</span></h1>
</div>
<p class="mt-2 text-gray-400 text-sm">Transformando clientes ocasionais em compradores fiéis.</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 FidelizaçãoMaster. Todos os direitos reservados.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-white text-sm transition duration-300">Termos de Uso</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition duration-300">Política de Privacidade</a>
</div>
</div>
</div>
</footer>
<script>
// Countdown Timer
function updateCountdown() {
const now = new Date();
const targetDate = new Date('November 10, 2023 23:59:59');
const difference = targetDate - now;
if (difference <= 0) {
document.getElementById('countdown').innerHTML = '<p class="text-red-400 font-bold">INSCRIÇÕES ENCERRADAS!</p>';
return;
}
const days = Math.floor(difference / (1000 * 60 * 60 * 24));
const hours = Math.floor((difference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((difference % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((difference % (1000 * 60)) / 1000);
document.getElementById('days').textContent = days.toString().padStart(2, '0');
document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
}
setInterval(updateCountdown, 1000);
updateCountdown();
// FAQ Toggle
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).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=edsonassisvsx/masterclass" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |