|
<!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"> |
|
|
|
<div class="fixed inset-0 overflow-hidden -z-10"> |
|
<div id="particles-js" class="absolute inset-0"></div> |
|
</div> |
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
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'); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
function updateCountdown() { |
|
const now = new Date(); |
|
const end = new Date(); |
|
end.setHours(23, 59, 59); |
|
|
|
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.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 |
|
}); |
|
}); |
|
|
|
|
|
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'); |
|
|
|
|
|
const size = Math.random() * 4 + 2; |
|
particle.style.width = `${size}px`; |
|
particle.style.height = `${size}px`; |
|
|
|
|
|
particle.style.left = `${Math.random() * 100}%`; |
|
particle.style.top = `${Math.random() * 100}%`; |
|
|
|
|
|
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> |