Spaces:
Running
Running
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>ChatBot AI - Soluções Inteligentes para WhatsApp</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, #25D366 0%, #128C7E 100%); | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid rgba(18, 140, 126, 0.2); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2); | |
| } | |
| .price-card { | |
| transition: all 0.3s ease; | |
| border: 2px solid rgba(18, 140, 126, 0.2); | |
| } | |
| .price-card:hover { | |
| transform: scale(1.03); | |
| border-color: #25D366; | |
| } | |
| .testimonial-card { | |
| background: rgba(255, 255, 255, 0.9); | |
| box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); | |
| } | |
| .pulse-animation { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| .whatsapp-float { | |
| position: fixed; | |
| width: 60px; | |
| height: 60px; | |
| bottom: 40px; | |
| right: 40px; | |
| background-color: #25D366; | |
| color: #FFF; | |
| border-radius: 50px; | |
| text-align: center; | |
| font-size: 30px; | |
| box-shadow: 2px 2px 3px #999; | |
| z-index: 100; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans bg-gray-50"> | |
| <!-- WhatsApp Float Button --> | |
| <a href="https://wa.me/5511999999999?text=Gostaria%20de%20saber%20mais%20sobre%20os%20ChatBots" class="whatsapp-float pulse-animation" target="_blank"> | |
| <i class="fab fa-whatsapp"></i> | |
| </a> | |
| <!-- Hero Section --> | |
| <header class="gradient-bg text-white"> | |
| <div class="container mx-auto px-4 py-20"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Transforme seu WhatsApp com Inteligência Artificial</h1> | |
| <p class="text-xl mb-8">Automatize atendimentos, venda mais e reduza custos com nossos ChatBots inteligentes para WhatsApp.</p> | |
| <div class="flex flex-col sm:flex-row gap-4"> | |
| <a href="#planos" class="bg-white text-green-700 hover:bg-gray-100 font-bold py-3 px-8 rounded-full text-center transition duration-300"> | |
| <i class="fas fa-tags mr-2"></i> Ver Planos | |
| </a> | |
| <a href="#contato" class="bg-transparent border-2 border-white hover:bg-white hover:text-green-700 font-bold py-3 px-8 rounded-full text-center transition duration-300"> | |
| <i class="fas fa-headset mr-2"></i> Fale Conosco | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <img src="https://cdn-icons-png.flaticon.com/512/733/733585.png" alt="WhatsApp ChatBot" class="w-64 h-64 mx-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Features Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <span class="inline-block bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-semibold mb-2">TECNOLOGIA AVANÇADA</span> | |
| <h2 class="text-3xl font-bold text-gray-800">O que nosso ChatBot pode fazer por você</h2> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-robot text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Atendimento 24/7</h3> | |
| <p class="text-gray-600">Seus clientes serão atendidos a qualquer hora do dia ou noite, sem custo com funcionários extras.</p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-shopping-cart text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Vendas Automatizadas</h3> | |
| <p class="text-gray-600">Realize vendas pelo WhatsApp de forma automática, com catálogo de produtos e pagamento integrado.</p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-brain text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">IA Inteligente</h3> | |
| <p class="text-gray-600">ChatBot com GPT-4 que entende contexto, aprende com conversas e fornece respostas humanizadas.</p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-chart-line text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Relatórios Detalhados</h3> | |
| <p class="text-gray-600">Acompanhe métricas de conversão, satisfação de clientes e desempenho das mensagens.</p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-user-plus text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Cadastro de Clientes</h3> | |
| <p class="text-gray-600">Coleta automática de dados dos clientes para seu CRM ou lista de contatos.</p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="feature-card bg-white rounded-xl p-8"> | |
| <div class="text-green-600 mb-4"> | |
| <i class="fas fa-sync-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Integrações</h3> | |
| <p class="text-gray-600">Conecte com ERP, sistema de pedidos, e-mail marketing e outras ferramentas que você já usa.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <span class="inline-block bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-semibold mb-2">COMO FUNCIONA</span> | |
| <h2 class="text-3xl font-bold text-gray-800">Implementação em 3 Passos Simples</h2> | |
| </div> | |
| <div class="flex flex-col md:flex-row justify-between items-center gap-8 max-w-5xl mx-auto"> | |
| <!-- Step 1 --> | |
| <div class="text-center md:w-1/3 px-4"> | |
| <div class="bg-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 shadow-md text-green-600"> | |
| <span class="text-xl font-bold">1</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Cadastro</h3> | |
| <p class="text-gray-600">Escolha seu plano e crie sua conta em nossa plataforma.</p> | |
| </div> | |
| <div class="hidden md:block text-green-600"> | |
| <i class="fas fa-arrow-right text-2xl"></i> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="text-center md:w-1/3 px-4"> | |
| <div class="bg-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 shadow-md text-green-600"> | |
| <span class="text-xl font-bold">2</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Configuração</h3> | |
| <p class="text-gray-600">Personalize o fluxo de conversas e conecte com seu WhatsApp Business.</p> | |
| </div> | |
| <div class="hidden md:block text-green-600"> | |
| <i class="fas fa-arrow-right text-2xl"></i> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="text-center md:w-1/3 px-4"> | |
| <div class="bg-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 shadow-md text-green-600"> | |
| <span class="text-xl font-bold">3</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Pronto!</h3> | |
| <p class="text-gray-600">Seu ChatBot estará ativo e atendendo automaticamente seus clientes.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section id="planos" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <span class="inline-block bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-semibold mb-2">PLANOS</span> | |
| <h2 class="text-3xl font-bold text-gray-800">Escolha o Melhor Plano para Você</h2> | |
| <p class="text-gray-600 max-w-2xl mx-auto">Planos flexíveis para empresas de todos os tamanhos.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
| <!-- Basic Plan --> | |
| <div class="price-card bg-white rounded-xl shadow-md p-8"> | |
| <div class="text-center mb-6"> | |
| <h3 class="text-2xl font-bold mb-2 text-gray-800">Básico</h3> | |
| <div class="text-4xl font-bold text-green-600 mb-2">R$ 97<span class="text-lg">/mês</span></div> | |
| <p class="text-gray-500 text-sm">Perfeito para pequenas empresas</p> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Até 500 mensagens/mês | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> IA Básica | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> 1 Número WhatsApp | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte por e-mail | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times-circle text-gray-400 mr-2"></i> <span class="line-through">Integrações</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-300"> | |
| Começar Agora | |
| </button> | |
| </div> | |
| <!-- Professional Plan (Featured) --> | |
| <div class="price-card bg-white rounded-xl shadow-lg border-2 border-green-500 relative p-8 transform scale-105"> | |
| <div class="absolute top-0 right-0 bg-green-500 text-white text-xs font-bold px-4 py-1 rounded-bl-lg rounded-tr-lg"> | |
| MAIS POPULAR | |
| </div> | |
| <div class="text-center mb-6"> | |
| <h3 class="text-2xl font-bold mb-2 text-gray-800">Profissional</h3> | |
| <div class="text-4xl font-bold text-green-600 mb-2">R$ 197<span class="text-lg">/mês</span></div> | |
| <p class="text-gray-500 text-sm">Ideal para médias empresas</p> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Até 2.000 mensagens/mês | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> IA Avançada (GPT-4) | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Até 3 Números WhatsApp | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte prioritário | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> 3 Integrações básicas | |
| </li> | |
| </ul> | |
| <button class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300"> | |
| Começar Agora | |
| </button> | |
| </div> | |
| <!-- Enterprise Plan --> | |
| <div class="price-card bg-white rounded-xl shadow-md p-8"> | |
| <div class="text-center mb-6"> | |
| <h3 class="text-2xl font-bold mb-2 text-gray-800">Empresarial</h3> | |
| <div class="text-4xl font-bold text-green-600 mb-2">R$ 497<span class="text-lg">/mês</span></div> | |
| <p class="text-gray-500 text-sm">Para grandes demandas</p> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Mensagens ilimitadas | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> IA Premium (GPT-4 Turbo) | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Números WhatsApp ilimitados | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Suporte 24/7 | |
| </li> | |
| <li class="flex items-center text-gray-600"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> Todas as integrações | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-800 hover:bg-black text-white font-bold py-3 px-4 rounded-lg transition duration-300"> | |
| Fale Conosco | |
| </button> | |
| </div> | |
| </div> | |
| <div class="text-center mt-8"> | |
| <p class="text-gray-600">Precisa de um plano personalizado? <a href="#" class="text-green-600 hover:underline">Fale com nossa equipe</a></p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <span class="inline-block bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-semibold mb-2">DEPOIMENTOS</span> | |
| <h2 class="text-3xl font-bold text-gray-800">O que Nossos Clientes Dizem</h2> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-gray-200 w-12 h-12 rounded-full flex items-center justify-center text-green-600 font-bold"> | |
| A | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Ana Silva</h4> | |
| <p class="text-gray-500 text-sm">Loja de Cosméticos</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"O ChatBot aumentou nossas vendas em 40% e reduziu em 80% o tempo de atendimento. Incrível!"</p> | |
| <div class="flex mt-4 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> | |
| <!-- Testimonial 2 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-gray-200 w-12 h-12 rounded-full flex items-center justify-center text-green-600 font-bold"> | |
| C | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Carlos Mendes</h4> | |
| <p class="text-gray-500 text-sm">Clínica Médica</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"Melhor investimento que fizemos. O ChatBot agenda consultas, envia lembretes e ainda responde dúvidas comuns dos pacientes."</p> | |
| <div class="flex mt-4 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> | |
| <!-- Testimonial 3 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-gray-200 w-12 h-12 rounded-full flex items-center justify-center text-green-600 font-bold"> | |
| L | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Luisa Oliveira</h4> | |
| <p class="text-gray-500 text-sm">Imobiliária</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"Antes perdíamos muitos leads por não responder rápido. Agora nosso ChatBot qualifica os interessados e agenda visitas automaticamente."</p> | |
| <div class="flex mt-4 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-half-alt"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQs --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4 max-w-4xl"> | |
| <div class="text-center mb-16"> | |
| <span class="inline-block bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-semibold mb-2">DÚVIDAS</span> | |
| <h2 class="text-3xl font-bold text-gray-800">Perguntas Frequentes</h2> | |
| </div> | |
| <div class="space-y-4"> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-toggle w-full text-left p-6 hover:bg-gray-50 focus:outline-none"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Preciso saber programar para usar o ChatBot?</h3> | |
| <i class="fas fa-plus text-green-600"></i> | |
| </div> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6 pt-0"> | |
| <p class="text-gray-600">Não! Nossa plataforma é totalmente intuitiva e não requer conhecimentos técnicos. Você pode configurar seus fluxos de conversa através de uma interface visual simples, arrastando e soltando elementos.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-toggle w-full text-left p-6 hover:bg-gray-50 focus:outline-none"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Como o ChatBot se conecta ao meu WhatsApp?</h3> | |
| <i class="fas fa-plus text-green-600"></i> | |
| </div> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6 pt-0"> | |
| <p class="text-gray-600">Utilizamos a API oficial do WhatsApp Business ou soluções homologadas, garantindo total conformidade. Fazemos todo o processo de configuração e aprovação para você, você só precisa nos fornecer o número que deseja utilizar.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-toggle w-full text-left p-6 hover:bg-gray-50 focus:outline-none"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Posso migrar meu ChatBot de outra plataforma?</h3> | |
| <i class="fas fa-plus text-green-600"></i> | |
| </div> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6 pt-0"> | |
| <p class="text-gray-600">Sim! Nossa equipe pode ajudar a migrar seus fluxos de conversa e configurações da maioria das plataformas concorrentes, sem perda de dados ou funcionalidades.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-toggle w-full text-left p-6 hover:bg-gray-50 focus:outline-none"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Há limite para o número de contatos no ChatBot?</h3> | |
| <i class="fas fa-plus text-green-600"></i> | |
| </div> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6 pt-0"> | |
| <p class="text-gray-600">Nosso sistema é escalável e não impõe limites rígidos para contatos. Os planos possuem limites mensais de mensagens, mas você sempre pode escolher um plano superior ou adquirir pacotes adicionais conforme sua necessidade.</p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden"> | |
| <button class="faq-toggle w-full text-left p-6 hover:bg-gray-50 focus:outline-none"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Como funciona o período de teste?</h3> | |
| <i class="fas fa-plus text-green-600"></i> | |
| </div> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6 pt-0"> | |
| <p class="text-gray-600">Oferecemos 7 dias grátis para você testar todas as funcionalidades do plano escolhido. Se não gostar, basta cancelar antes do término do período sem custo algum.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact CTA --> | |
| <section id="contato" class="gradient-bg text-white py-16"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Pronto para revolucionar seu atendimento?</h2> | |
| <p class="text-xl mb-8 max-w-3xl mx-auto">Fale com nossos especialistas e descubra como nosso ChatBot pode impulsionar seus resultados.</p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="https://wa.me/5511999999999?text=Gostaria%20de%20saber%20mais%20sobre%20os%20ChatBots" class="bg-white text-green-700 hover:bg-gray-100 font-bold py-3 px-8 rounded-full text-center transition duration-300 flex items-center justify-center"> | |
| <i class="fab fa-whatsapp text-xl mr-2"></i> WhatsApp | |
| </a> | |
| <a href="tel:+5511999999999" class="bg-transparent border-2 border-white hover:bg-white hover:text-green-700 font-bold py-3 px-8 rounded-full text-center transition duration-300 flex items-center justify-center"> | |
| <i class="fas fa-phone-alt text-xl mr-2"></i> Ligar Agora | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <!-- Logo/About --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">ChatBot AI</h3> | |
| <p class="text-gray-400">Soluções inteligentes de automação para WhatsApp com Inteligência Artificial.</p> | |
| </div> | |
| <!-- Links 1 --> | |
| <div> | |
| <h4 class="font-bold mb-4">Produto</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition">Recursos</a></li> | |
| <li><a href="#" class="hover:text-white transition">Planos</a></li> | |
| <li><a href="#" class="hover:text-white transition">Integrações</a></li> | |
| <li><a href="#" class="hover:text-white transition">Tutoriais</a></li> | |
| </ul> | |
| </div> | |
| <!-- Links 2 --> | |
| <div> | |
| <h4 class="font-bold mb-4">Empresa</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition">Sobre Nós</a></li> | |
| <li><a href="#" class="hover:text-white transition">Depoimentos</a></li> | |
| <li><a href="#" class="hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="hover:text-white transition">Carreiras</a></li> | |
| </ul> | |
| </div> | |
| <!-- Contact --> | |
| <div> | |
| <h4 class="font-bold mb-4">Contato</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt mt-1 mr-3 text-green-500"></i> | |
| <span>Av. Paulista, 1374 - São Paulo, SP</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone-alt mr-3 text-green-500"></i> | |
| <a href="tel:+5511999999999">(11) 99999-9999</a> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope mr-3 text-green-500"></i> | |
| <a href="mailto:contato@chatbotai.com.br">contato@chatbotai.com.br</a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 ChatBot AI. Todos os direitos reservados.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // FAQ Toggle functionality | |
| document.querySelectorAll('.faq-toggle').forEach(button => { | |
| button.addEventListener('click', () => { | |
| const content = button.nextElementSibling; | |
| const icon = button.querySelector('i'); | |
| content.classList.toggle('hidden'); | |
| if (content.classList.contains('hidden')) { | |
| icon.classList.remove('fa-minus'); | |
| icon.classList.add('fa-plus'); | |
| } else { | |
| icon.classList.remove('fa-plus'); | |
| icon.classList.add('fa-minus'); | |
| } | |
| }); | |
| }); | |
| // 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' | |
| }); | |
| }); | |
| }); | |
| // Simple form validation (example) | |
| document.querySelectorAll('button').forEach(button => { | |
| if (button.textContent.includes('Começar Agora')) { | |
| button.addEventListener('click', () => { | |
| alert('Você será redirecionado para nossa página de cadastro. Insira um e-mail válido e escolha seu plano!'); | |
| }); | |
| } | |
| }); | |
| </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=alexandreafd/hyperlion" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
| </html> |