File size: 54,959 Bytes
57e442a |
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 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Equipe de Marketing com IA - Automatize 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">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
:root {
--primary: #6d28d9;
--secondary: #8b5cf6;
--dark: #1e1b4b;
--light: #f5f3ff;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--light);
color: var(--dark);
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.hero-text {
text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
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% {
box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(109, 40, 217, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
}
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.ai-agent-card {
border-left: 4px solid var(--primary);
transition: all 0.3s ease;
}
.ai-agent-card:hover {
border-left-width: 8px;
}
.glow-text {
text-shadow: 0 0 10px rgba(255,255,255,0.8);
}
.checklist-item {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236d28d9"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
padding-left: 30px;
margin-bottom: 12px;
background-size: 20px;
}
.guarantee-badge {
border: 2px dashed #6d28d9;
animation: pulse 2s infinite;
}
</style>
</head>
<body class="antialiased">
<!-- Floating particles background -->
<div class="fixed inset-0 overflow-hidden -z-10">
<div id="particles-js" class="absolute inset-0"></div>
</div>
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="text-2xl font-bold text-purple-900">
<span class="gradient-text bg-clip-text text-transparent bg-gradient-to-r from-purple-700 to-pink-600">AI</span>Team
</div>
<button class="gradient-bg text-white px-6 py-2 rounded-full font-bold text-sm hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
COMPRAR AGORA
</button>
</nav>
<!-- ==================== -->
<!-- 1. Bloco - Vender o curso Sozinho -->
<!-- ==================== -->
<section class="relative py-20 px-6">
<div class="absolute inset-0 bg-gradient-to-br from-purple-100 to-white opacity-50 -z-10"></div>
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-extrabold leading-tight mb-6 text-purple-900 hero-text">
Tenha sua própria equipe de marketing e vendas com IA
</h1>
<p class="text-xl md:text-2xl text-purple-800 mb-8">
<span class="font-semibold">Sem precisar pensar no que postar, no que falar ou em como vender.</span>
Aprenda a usar agentes de IA para impulsionar seus resultados automaticamente.
</p>
<div class="bg-white p-6 rounded-xl shadow-xl mb-8 border-l-8 border-purple-600">
<div class="flex items-center">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-bolt text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-purple-900">OFERTA POR TEMPO LIMITADO</h3>
<p class="text-purple-700">De <span class="line-through">R$297</span> por apenas <span class="font-bold text-2xl text-purple-900">R$67</span></p>
</div>
</div>
</div>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO MEU TIME DE IA AGORA
</button>
</div>
<div class="mt-8 flex items-center space-x-2 text-purple-900">
<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/44.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
</div>
<span class="text-sm font-medium">+2.500 empresários já transformaram seus negócios</span>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="relative floating">
<div class="absolute -top-10 -left-10 w-32 h-32 bg-purple-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div>
<div class="absolute -bottom-10 -right-10 w-32 h-32 bg-pink-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div>
<div class="relative bg-white rounded-2xl shadow-2xl overflow-hidden border-8 border-white">
<img src="https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80" alt="AI Team Dashboard" class="w-full h-auto">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
<h3 class="text-white text-xl font-bold glow-text">Seu time de IA em ação</h3>
<p class="text-purple-200">Gerando conteúdo, vendas e resultados automaticamente</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 2. Bloco - Depoimentos -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">O Que Dizem Quem Já Usa</h2>
<p class="text-xl text-purple-800 max-w-3xl mx-auto">
Empresários reais, resultados reais - veja o que estão falando sobre o método
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Ana Silva" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-purple-900">Ana Silva</h4>
<p class="text-sm text-purple-600">@anasilvaempreendedora</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"Minhas vendas no WhatsApp triplicaram em 2 semanas com a IA Consultora que aprendi a usar no curso. Não preciso mais ficar respondendo mensagem o dia todo!"
</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>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/54.jpg" alt="Carlos Mendes" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-purple-900">Carlos Mendes</h4>
<p class="text-sm text-purple-600">CEO - Mendes Consultoria</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"A IA de Roteiros salvou meu Instagram. Em 1 mês meu engajamento aumentou 400% e consegui 3 clientes só pelo Reels que aprendi a criar no curso."
</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>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Juliana Costa" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-purple-900">Juliana Costa</h4>
<p class="text-sm text-purple-600">Fundadora - JC Cosméticos</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"Nunca fui boa em criar anúncios. Com a IA Criativa do curso, fiz campanhas que reduziram meu CPA em 60%. Estou vendendo muito mais gastando menos."
</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>
</div>
</div>
</div>
<div class="mt-16 text-center">
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO TER RESULTADOS COMO ESSES
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 3. Bloco - Dor latente -->
<!-- ==================== -->
<section class="py-20 px-6 bg-purple-50">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">Você Se Identifica Com Alguma Dessas Situações?</h2>
<p class="text-xl text-purple-800 max-w-3xl mx-auto">
Esses são os problemas que nosso curso resolve definitivamente
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-clock"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Falta de Tempo</h3>
<p class="text-gray-600">
Você passa horas criando conteúdo, atendendo clientes e ainda assim não vê os resultados que gostaria. A IA pode fazer isso tudo por você em minutos.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-brain"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Bloqueio Criativo</h3>
<p class="text-gray-600">
Não sabe mais o que postar, como criar roteiros ou anúncios que convertem. As IAs geram ideias virais e copys que vendem automaticamente.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-comments-dollar"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Vendas Estagnadas</h3>
<p class="text-gray-600">
Seu WhatsApp silencioso, poucas mensagens e menos vendas ainda. A IA pode atender, negociar e fechar vendas 24/7 por você.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Resultados Inconsistentes</h3>
<p class="text-gray-600">
Um dia vende bem, no outro não vende nada. As IAs otimizam constantemente seu marketing baseado nos resultados para maximizar suas vendas.
</p>
</div>
</div>
<div class="mt-16 text-center">
<h3 class="text-2xl md:text-3xl font-bold text-purple-900 mb-6">Se você se identificou com pelo menos UMA dessas situações...</h3>
<p class="text-xl text-purple-800 max-w-3xl mx-auto mb-8">
Nosso curso vai te ensinar passo a passo como usar a IA para resolver esses problemas e alavancar seus resultados.
</p>
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO RESOLVER ESSES PROBLEMAS
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 4. Bloco - Passo a Passo -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">O Método Passo a Passo</h2>
<p class="text-xl text-purple-800 max-w-3xl mx-auto">
Veja como é simples implementar e começar a ver resultados
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="gradient-bg text-white w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mb-4 md:mb-0 md:mr-8 shrink-0">1</div>
<div>
<h3 class="text-2xl font-bold text-purple-900 mb-3">Configuração Rápida</h3>
<p class="text-gray-600">
Te ensinamos exatamente como configurar cada agente de IA para seu negócio específico. Mesmo que você nunca tenha usado IA antes, em menos de 1 hora estará pronto.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="gradient-bg text-white w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mb-4 md:mb-0 md:mr-8 shrink-0">2</div>
<div>
<h3 class="text-2xl font-bold text-purple-900 mb-3">Treinamento dos Agentes</h3>
<p class="text-gray-600">
Você vai aprender o método exato para "ensinar" suas IAs sobre seu negócio, produtos e tom de voz. Elas vão replicar seu estilo e conhecimentos automaticamente.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="gradient-bg text-white w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mb-4 md:mb-0 md:mr-8 shrink-0">3</div>
<div>
<h3 class="text-2xl font-bold text-purple-900 mb-3">Automação Completa</h3>
<p class="text-gray-600">
Com tudo configurado, suas IAs vão trabalhar 24/7 criando conteúdo, atendendo clientes e gerando vendas. Você só precisa aprovar e acompanhar os resultados.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start">
<div class="gradient-bg text-white w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mb-4 md:mb-0 md:mr-8 shrink-0">4</div>
<div>
<h3 class="text-2xl font-bold text-purple-900 mb-3">Otimização Contínua</h3>
<p class="text-gray-600">
Você vai aprender como analisar os resultados e ajustar suas IAs para melhorar constantemente. Seus resultados vão crescer mês após mês.
</p>
</div>
</div>
</div>
<div class="mt-16 text-center">
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO APRENDER ESSE MÉTODO
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 5. Bloco - Tudo que você vai receber -->
<!-- ==================== -->
<section class="py-20 px-6 gradient-bg text-white">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 glow-text">Tudo Que Você Vai Receber</h2>
<p class="text-xl text-purple-200 max-w-3xl mx-auto">
Um sistema completo para transformar seu marketing e vendas com IA
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-film"></i>
</div>
<h3 class="text-xl font-bold mb-3">Módulo 1: IA de Roteiros para Reels</h3>
<p class="opacity-90">
Aprenda a criar roteiros virais em segundos, ideias de conteúdo diárias e edição automática para dominar o Instagram.
</p>
</div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-store"></i>
</div>
<h3 class="text-xl font-bold mb-3">Módulo 2: IA de Stories para Venda</h3>
<p class="opacity-90">
Storytelling + copy prática para converter seguidores em clientes sem esforço.
</p>
</div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fab fa-whatsapp"></i>
</div>
<h3 class="text-xl font-bold mb-3">Módulo 3: IA Consultor de WhatsApp</h3>
<p class="opacity-90">
Ouro puro que resolve a dor real de conversão no seu atendimento.
</p>
</div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-ad"></i>
</div>
<h3 class="text-xl font-bold mb-3">Módulo 4: IA Criativa para Anúncios</h3>
<p class="opacity-90">
Ajuda direta no que mais gera dinheiro: anúncios que convertem.
</p>
</div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-chart-pie"></i>
</div>
<h3 class="text-xl font-bold mb-3">Módulo 5: Estratégia de Implementação</h3>
<p class="opacity-90">
Como integrar todas as IAs em um sistema que trabalha para você 24/7.
</p>
</div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 hover:border-opacity-40 transition">
<div class="w-16 h-16 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-tools"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ferramentas Exclusivas</h3>
<p class="opacity-90">
Templates, prompts prontos e checklists para implementação rápida.
</p>
</div>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 6. Bloco - Bônus exclusivos -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">Bônus Exclusivos</h2>
<p class="text-xl text-purple-800 max-w-3xl mx-auto">
Para quem agir agora, esses bônus vão acelerar ainda mais seus resultados
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<div class="bg-purple-50 p-8 rounded-xl border-2 border-purple-200 hover:border-purple-500 transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-gem"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Bônus 1: Coleção de Prompts Ouro</h3>
<p class="text-gray-600">
Os prompts exatos que usamos para fazer as IAs gerarem conteúdo e respostas que vendem. Valem ouro e vão poupar horas do seu tempo.
</p>
</div>
<div class="bg-purple-50 p-8 rounded-xl border-2 border-purple-200 hover:border-purple-500 transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-calendar-alt"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Bônus 2: Calendário de Conteúdo</h3>
<p class="text-gray-600">
Um calendário pronto com temas virais para cada dia da semana, adaptável para qualquer nicho. Só seguir e postar.
</p>
</div>
<div class="bg-purple-50 p-8 rounded-xl border-2 border-purple-200 hover:border-purple-500 transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-comment-dollar"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Bônus 3: Scripts de Venda</h3>
<p class="text-gray-600">
Os scripts exatos que fazem suas IAs fecharem vendas no WhatsApp enquanto você dorme.
</p>
</div>
<div class="bg-purple-50 p-8 rounded-xl border-2 border-purple-200 hover:border-purple-500 transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-users"></i>
</div>
<h3 class="text-xl font-bold text-purple-900 mb-3">Bônus 4: Comunidade Exclusiva</h3>
<p class="text-gray-600">
Acesso a um grupo privado onde compartilhamos atualizações, estratégias e respondemos dúvidas.
</p>
</div>
</div>
<div class="mt-12 text-center">
<div class="inline-block bg-yellow-100 text-yellow-800 px-6 py-3 rounded-full text-sm font-bold mb-6">
ATENÇÃO: Esses bônus estão disponíveis apenas para as primeiras 100 compras!
</div>
<p class="text-purple-800 max-w-2xl mx-auto mb-8">
Depois que as vagas se esgotarem ou o timer chegar a zero, esses bônus serão removidos para sempre.
</p>
<div class="bg-white p-6 rounded-xl shadow-xl border-2 border-purple-500 max-w-xl mx-auto mb-8">
<div class="text-3xl font-bold text-purple-900 mb-2">TEMPO LIMITADO</div>
<div class="text-4xl font-extrabold gradient-text bg-clip-text text-transparent bg-gradient-to-r from-purple-600 to-pink-500" id="countdown">
03:59:59
</div>
<p class="text-purple-700 mt-2">para garantir todos os bônus</p>
</div>
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO GARANTIR MEUS BÔNUS
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 7. Bloco - Para quem serve -->
<!-- ==================== -->
<section class="py-20 px-6 bg-purple-50">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">Para Quem Serve Esse Curso?</h2>
<p class="text-xl text-purple-800 max-w-3xl mx-auto">
Se você se encaixa em algum desses perfis, esse curso foi feito para você
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-user-tie"></i>
</div>
<h3 class="text-xl font-bold text-purple-900">Empreendedores Digitais</h3>
</div>
<p class="text-gray-600">
Donos de infoprodutos, cursos online, agências e negócios digitais que querem escalar vendas sem aumentar custos.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-store"></i>
</div>
<h3 class="text-xl font-bold text-purple-900">Donos de Negócios Locais</h3>
</div>
<p class="text-gray-600">
Donos de restaurantes, academias, clínicas e comércios que querem atrair mais clientes pelo Instagram e WhatsApp.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold text-purple-900">Profissionais de Marketing</h3>
</div>
<p class="text-gray-600">
Social media, gestores de tráfego e vendedores que querem se destacar usando IA para entregar melhores resultados.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-6">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-rocket"></i>
</div>
<h3 class="text-xl font-bold text-purple-900">Iniciantes no Digital</h3>
</div>
<p class="text-gray-600">
Quem está começando e quer pular anos de tentativa e erro, usando IA desde o início para crescer rápido.
</p>
</div>
</div>
<div class="mt-16 text-center">
<div class="bg-white p-6 rounded-xl shadow-xl border-2 border-purple-500 max-w-2xl mx-auto mb-8">
<h3 class="text-2xl font-bold text-purple-900 mb-2">NÃO SERVE PARA:</h3>
<p class="text-gray-600">
Pessoas que não estão dispostas a implementar ou que esperam resultados sem nenhum esforço. Esse curso é para quem quer colocar a mão na massa com a ajuda da IA.
</p>
</div>
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
ESSE CURSO É PARA MIM!
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 8. Bloco - Lista de tudo que vai receber -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">Tudo Que Você Vai Levar Hoje</h2>
<p class="text-xl text-purple-800">
Veja o valor real do que você está recebendo por apenas R$67
</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm mb-8">
<div class="checklist-item text-lg font-medium text-purple-900">Módulo 1: IA de Roteiros para Reels (valor R$97)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Módulo 2: IA de Stories para Venda (valor R$97)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Módulo 3: IA Consultor de WhatsApp (valor R$197)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Módulo 4: IA Criativa para Anúncios (valor R$97)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Módulo 5: Estratégia de Implementação (valor R$147)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Ferramentas Exclusivas (valor R$67)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Bônus 1: Coleção de Prompts Ouro (valor R$97)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Bônus 2: Calendário de Conteúdo (valor R$47)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Bônus 3: Scripts de Venda (valor R$97)</div>
<div class="checklist-item text-lg font-medium text-purple-900">Bônus 4: Comunidade Exclusiva (valor R$47)</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-purple-900 mb-2">Valor Total: <span class="line-through">R$987</span></div>
<div class="text-4xl font-extrabold gradient-text bg-clip-text text-transparent bg-gradient-to-r from-purple-600 to-pink-500 mb-4">HOJE POR APENAS R$67</div>
<div class="bg-yellow-100 text-yellow-800 px-6 py-3 rounded-full text-sm font-bold mb-6 inline-block">
OFERTA POR TEMPO LIMITADO
</div>
<p class="text-purple-800 mb-8">
Esse preço especial está disponível apenas durante o lançamento. Após essa fase, o curso voltará ao preço normal de R$297.
</p>
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
QUERO GARANTIR MEU ACESSO
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 9. Bloco - Valor (Botão para comprar) -->
<!-- ==================== -->
<section class="py-20 px-6 gradient-bg text-white">
<div class="container mx-auto max-w-4xl text-center">
<h2 class="text-3xl md:text-5xl font-bold mb-6 glow-text">Invista no Seu Crescimento</h2>
<p class="text-xl text-purple-200 mb-8">
Menos que o salário de um estagiário, mas com o poder de uma equipe inteira
</p>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 max-w-2xl mx-auto">
<div class="text-5xl font-bold mb-4">R$67</div>
<p class="opacity-90 mb-6">Pagamento único. Sem mensalidades.</p>
<button class="w-full gradient-bg text-white px-8 py-4 rounded-lg font-bold hover:opacity-90 transition shadow-lg hover:shadow-2xl pulse">
COMPRAR AGORA
</button>
</div>
<div class="mt-8 bg-white bg-opacity-10 p-6 rounded-xl backdrop-filter backdrop-blur-sm border border-white border-opacity-20 max-w-2xl mx-auto">
<div class="flex items-center justify-center">
<div class="gradient-bg text-white w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-shield-alt"></i>
</div>
<div>
<h3 class="text-lg font-bold">Garantia Incondicional de 7 Dias</h3>
<p class="text-sm opacity-90">Se não gostar, devolvemos seu dinheiro sem perguntas.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 10. Bloco - Conversa Séria -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-4">Uma Conversa Séria</h2>
<p class="text-xl text-purple-800">
Vamos falar a verdade sobre o que você pode esperar
</p>
</div>
<div class="bg-purple-50 p-8 rounded-xl shadow-sm mb-8">
<h3 class="text-2xl font-bold text-purple-900 mb-4">O Que Este Curso NÃO É:</h3>
<ul class="space-y-4 text-gray-600">
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1">X</div>
<span>Não é uma fórmula mágica que vai fazer você ficar rico sem esforço</span>
</li>
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1">X</div>
<span>Não vai substituir completamente seu trabalho - vai potencializá-lo</span>
</li>
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1">X</div>
<span>Não vai funcionar se você não implementar o que ensinamos</span>
</li>
</ul>
</div>
<div class="bg-purple-50 p-8 rounded-xl shadow-sm mb-8">
<h3 class="text-2xl font-bold text-purple-900 mb-4">O Que Este Curso É:</h3>
<ul class="space-y-4 text-gray-600">
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1"><i class="fas fa-check"></i></div>
<span>Um método comprovado para economizar horas do seu dia usando IA</span>
</li>
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1"><i class="fas fa-check"></i></div>
<span>Um atalho para criar conteúdo e vender mais sem precisar ser expert em marketing</span>
</li>
<li class="flex items-start">
<div class="gradient-bg text-white w-6 h-6 rounded-full flex items-center justify-center text-xs mr-3 mt-1"><i class="fas fa-check"></i></div>
<span>Uma forma de competir com grandes empresas mesmo com orçamento limitado</span>
</li>
</ul>
</div>
<div class="text-center">
<p class="text-xl text-purple-800 mb-8">
Se você está disposto a implementar, este curso pode ser o divisor de águas no seu negócio.
</p>
<button class="gradient-bg text-white px-8 py-4 rounded-full font-bold text-lg hover:opacity-90 transition shadow-lg hover:shadow-xl pulse">
EU QUERO IMPLEMENTAR
</button>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 11. Bloco - Autoridade -->
<!-- ==================== -->
<section class="py-20 px-6 bg-purple-50">
<div class="container mx-auto max-w-5xl">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-8 md:mb-0">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Lucas Mendes" class="w-48 h-48 rounded-full border-4 border-white shadow-xl mx-auto">
</div>
<div class="md:w-2/3 md:pl-12">
<h2 class="text-3xl md:text-4xl font-bold text-purple-900 mb-4">Quem é Lucas Mendes?</h2>
<p class="text-gray-600 mb-4">
Especialista em Marketing Digital e IA, já ajudou mais de 2.500 empresários a transformarem seus negócios usando tecnologia.
</p>
<p class="text-gray-600 mb-4">
Fundador da AI Team, uma das primeiras agências no Brasil a implementar soluções de IA em escala para pequenos e médios negócios.
</p>
<p class="text-gray-600 mb-6">
Seu trabalho já foi destaque em veículos como Forbes, Entrepreneur e Harvard Business Review.
</p>
<div class="flex flex-wrap gap-4 justify-center md:justify-start">
<img src="https://logo.clearbit.com/forbes.com" alt="Forbes" class="h-8 opacity-80">
<img src="https://logo.clearbit.com/entrepreneur.com" alt="Entrepreneur" class="h-8 opacity-80">
<img src="https://logo.clearbit.com/harvard.edu" alt="Harvard" class="h-8 opacity-80">
</div>
</div>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 12. Bloco - Valor (Botão para comprar) -->
<!-- ==================== -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto max-w-4xl text-center">
<h2 class="text-3xl md:text-5xl font-bold text-purple-900 mb-6">Pronto para Transformar seu Negócio?</h2>
<p class="text-xl text-purple-800 mb-8">
Comece agora e em menos de 1 hora você já estará usando suas primeiras IAs
</p>
<div class="bg-purple-50 p-8 rounded-xl shadow-xl border-2 border-purple-200 max-w-2xl mx-auto mb-8">
<div class="text-5xl font-bold text-purple-900 mb-2">R$67</div>
<p class="text-purple-700 mb-6">Pagamento único. Acesso vitalício.</p>
<div class="bg-white p-4 rounded-lg shadow-sm mb-6">
<div class="flex items-center justify-center">
<div class="gradient-bg text-white w-8 h-8 rounded-full flex items-center justify-center text-sm mr-3">
<i class="fas fa-check"></i>
</div>
<span class="font-medium text-purple-900">7 dias de garantia</span>
</div>
</div>
<button class="w-full gradient-bg text-white px-8 py-4 rounded-lg font-bold hover:opacity-90 transition shadow-lg hover:shadow-2xl pulse">
QUERO MEU TIME DE IA AGORA
</button>
</div>
<div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-8">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-700 mr-3">
<i class="fas fa-lock"></i>
</div>
<span class="text-sm text-purple-700">Pagamento 100% seguro</span>
</div>
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-700 mr-3">
<i class="fas fa-shield-alt"></i>
</div>
<span class="text-sm text-purple-700">Garantia de 7 dias</span>
</div>
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-700 mr-3">
<i class="fas fa-headset"></i>
</div>
<span class="text-sm text-purple-700">Suporte especializado</span>
</div>
</div>
</div>
</section>
<!-- ==================== -->
<!-- 13. Bloco - Rodapé -->
<!-- ==================== -->
<footer class="bg-purple-900 text-white py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-2xl font-bold mb-4">AITeam</h3>
<p class="text-purple-200">Sua equipe de marketing e vendas 24/7 powered by AI.</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Produto</h4>
<ul class="space-y-2">
<li><a href="#" class="text-purple-200 hover:text-white">Módulos</a></li>
<li><a href="#" class="text-purple-200 hover:text-white">Bônus</a></li>
<li><a href="#" class="text-purple-200 hover:text-white">Garantia</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Empresa</h4>
<ul class="space-y-2">
<li><a href="#" class="text-purple-200 hover:text-white">Sobre Nós</a></li>
<li><a href="#" class="text-purple-200 hover:text-white">Termos</a></li>
<li><a href="#" class="text-purple-200 hover:text-white">Política de Privacidade</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Contato</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-purple-800 flex items-center justify-center hover:bg-purple-700">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-purple-800 flex items-center justify-center hover:bg-purple-700">
<i class="fab fa-whatsapp"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-purple-800 flex items-center justify-center hover:bg-purple-700">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-purple-200">[email protected]</p>
</div>
</div>
<div class="border-t border-purple-800 mt-12 pt-8 text-center text-purple-300">
© 2023 AITeam. Todos os direitos reservados.
</div>
</div>
</footer>
<!-- Floating WhatsApp Button -->
<div class="fixed bottom-6 right-6">
<a href="#" class="gradient-bg text-white w-16 h-16 rounded-full flex items-center justify-center shadow-xl hover:shadow-2xl transition">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
</div>
<script>
// Simple FAQ toggle
document.querySelectorAll('button').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
if (content && content.classList.contains('hidden')) {
content.classList.remove('hidden');
if (icon) icon.classList.add('transform', 'rotate-180');
} else if (content) {
content.classList.add('hidden');
if (icon) icon.classList.remove('transform', 'rotate-180');
}
});
});
// Countdown timer
function updateCountdown() {
const now = new Date();
const end = new Date();
end.setHours(23, 59, 59); // Set to midnight
const diff = end - now;
const hours = Math.floor(diff / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('countdown').textContent =
`${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
}
setInterval(updateCountdown, 1000);
updateCountdown();
// GSAP Animations
gsap.registerPlugin(ScrollTrigger);
gsap.from("nav", {
duration: 1,
y: -50,
opacity: 0,
ease: "power3.out"
});
gsap.from(".hero-text", {
duration: 1,
y: 50,
opacity: 0,
ease: "power3.out",
delay: 0.3
});
gsap.utils.toArray(".ai-agent-card").forEach((card, i) => {
gsap.from(card, {
scrollTrigger: {
trigger: card,
start: "top 80%",
toggleActions: "play none none none"
},
duration: 0.8,
y: 50,
opacity: 0,
ease: "power3.out",
delay: i * 0.1
});
});
// Floating particles effect (simplified)
document.addEventListener('DOMContentLoaded', function() {
const particlesContainer = document.getElementById('particles-js');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('absolute', 'rounded-full', 'bg-purple-300', 'opacity-20');
// Random size between 2px and 6px
const size = Math.random() * 4 + 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}%`;
// Animation
const duration = Math.random() * 20 + 10;
const xMovement = (Math.random() - 0.5) * 100;
const yMovement = (Math.random() - 0.5) * 100;
gsap.to(particle, {
x: xMovement,
y: yMovement,
duration: duration,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
particlesContainer.appendChild(particle);
}
});
</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=murilofnt/ai-team" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |