File size: 37,568 Bytes
242229c |
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 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeonVision - Revolução em Marketing Digital</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Poppins:wght@400;600;700&display=swap');
:root {
--neon-green: #0ff0b3;
--neon-green-light: #4df8d6;
--neon-green-dark: #00c58e;
--neon-purple: #8a2be2;
--neon-blue: #00b4d8;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #0a0a0a;
color: white;
overflow-x: hidden;
}
.neon-text {
background: linear-gradient(90deg, var(--neon-green), var(--neon-green-light), var(--neon-blue));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 0 5px rgba(79, 255, 210, 0.3);
}
.neon-border {
border: 2px solid transparent;
border-image: linear-gradient(90deg, var(--neon-green), var(--neon-blue)) 1;
box-shadow: 0 0 15px rgba(79, 255, 210, 0.5);
}
.neon-glow {
box-shadow: 0 0 15px rgba(79, 255, 210, 0.7);
}
.neon-button {
background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
color: black;
font-weight: bold;
border: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.neon-button:hover {
transform: translateY(-3px);
box-shadow: 0 0 25px rgba(79, 255, 210, 0.8);
}
.neon-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.neon-button:hover::before {
left: 100%;
}
.secondary-button {
background: transparent;
color: var(--neon-green);
border: 2px solid var(--neon-green);
font-weight: bold;
transition: all 0.3s ease;
}
.secondary-button:hover {
background: rgba(15, 240, 179, 0.1);
box-shadow: 0 0 15px rgba(79, 255, 210, 0.3);
}
.feature-card {
background: rgba(10, 20, 30, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(79, 255, 210, 0.2);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(79, 255, 210, 0.3);
border-color: var(--neon-green);
}
.pricing-card {
background: rgba(10, 20, 30, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(79, 255, 210, 0.2);
transition: all 0.3s ease;
}
.pricing-card:hover {
transform: translateY(-10px);
border-color: var(--neon-green);
}
.popular-plan {
border: 2px solid var(--neon-green);
box-shadow: 0 0 30px rgba(79, 255, 210, 0.4);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.8; }
50% { opacity: 1; }
100% { opacity: 0.8; }
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.bg-grid {
background-image:
linear-gradient(rgba(79, 255, 210, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(79, 255, 210, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
}
.gradient-overlay {
background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, #0a0a0a 100%);
}
</style>
</head>
<body class="bg-grid">
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-bolt text-2xl neon-text"></i>
<span class="text-2xl font-extrabold neon-text">NEONVISION</span>
</div>
<div class="hidden md:flex space-x-8 items-center">
<a href="#features" class="text-white hover:text-neon-green transition">Recursos</a>
<a href="#pricing" class="text-white hover:text-neon-green transition">Planos</a>
<a href="#testimonials" class="text-white hover:text-neon-green transition">Depoimentos</a>
<a href="#" class="text-white hover:text-neon-green transition">FAQ</a>
</div>
<div class="hidden md:flex space-x-4">
<a href="#login" class="secondary-button px-6 py-2 rounded-full">Login</a>
<a href="#test" class="neon-button px-6 py-2 rounded-full">Teste Grátis</a>
</div>
<button class="md:hidden text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-20 md:py-32">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-16 md:mb-0">
<h1 class="text-4xl md:text-6xl font-extrabold mb-6 neon-text">
REVOLUCIONE SEU <span class="text-white">MARKETING</span>
</h1>
<p class="text-lg text-gray-300 mb-8 max-w-lg">
A plataforma de inteligência artificial que transforma sua estratégia digital com análises preditivas e automação avançada.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#test" class="neon-button px-8 py-4 rounded-full text-center font-bold">TESTE GRÁTIS AGORA</a>
<a href="#demo" class="secondary-button px-8 py-4 rounded-full text-center font-bold">VER DEMONSTRAÇÃO</a>
</div>
<div class="mt-8 flex items-center space-x-4">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
</div>
<div>
<p class="text-sm text-gray-400">+5.000 profissionais confiam na NeonVision</p>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span class="text-sm text-gray-300 ml-1">4.9/5</span>
</div>
</div>
</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-500 rounded-full mix-blend-screen opacity-20 animate-pulse"></div>
<div class="absolute -bottom-10 -right-10 w-40 h-40 bg-blue-500 rounded-full mix-blend-screen opacity-20 animate-pulse delay-300"></div>
<div class="relative neon-border p-1 rounded-2xl bg-gray-900/50 backdrop-blur-md">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
class="rounded-2xl w-full h-auto"
alt="Dashboard NeonVision">
</div>
</div>
</div>
</div>
</section>
<!-- Clients Section -->
<section class="container mx-auto px-6 py-12">
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-80">
<img src="https://logo.clearbit.com/google.com?size=80" class="h-8 filter brightness-0 invert" alt="Google">
<img src="https://logo.clearbit.com/amazon.com?size=80" class="h-8 filter brightness-0 invert" alt="Amazon">
<img src="https://logo.clearbit.com/microsoft.com?size=80" class="h-8 filter brightness-0 invert" alt="Microsoft">
<img src="https://logo.clearbit.com/spotify.com?size=80" class="h-8 filter brightness-0 invert" alt="Spotify">
<img src="https://logo.clearbit.com/uber.com?size=80" class="h-8 filter brightness-0 invert" alt="Uber">
</div>
</section>
<!-- Features Section -->
<section id="features" class="container mx-auto px-6 py-20">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-extrabold mb-4 neon-text">PODEROSOS RECURSOS</h2>
<p class="text-lg text-gray-400 max-w-2xl mx-auto">
Descubra como nossa plataforma pode impulsionar seus resultados com tecnologia de ponta
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-brain text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Análise Preditiva</h3>
<p class="text-gray-400">
Nossa IA analisa padrões e prevê tendências de mercado antes que aconteçam, dando a você vantagem competitiva.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-robot text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Automação Inteligente</h3>
<p class="text-gray-400">
Automatize campanhas complexas com regras personalizadas e gatilhos baseados em comportamento do usuário.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-chart-line text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Otimização em Tempo Real</h3>
<p class="text-gray-400">
Algoritmos ajustam automaticamente suas campanhas para maximizar ROI com base em desempenho em tempo real.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-users text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Segmentação Avançada</h3>
<p class="text-gray-400">
Identifique e segmente seu público com precisão cirúrgica usando dados demográficos, comportamentais e psicográficos.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-ad text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Geração de Criativos</h3>
<p class="text-gray-400">
IA que cria anúncios impactantes baseados em dados de desempenho e tendências de design.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card rounded-2xl p-8">
<div class="w-14 h-14 rounded-full bg-gray-800 flex items-center justify-center mb-6 neon-glow">
<i class="fas fa-shield-alt text-2xl neon-text"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Proteção de Dados</h3>
<p class="text-gray-400">
Segurança de nível bancário com criptografia de ponta a ponta e conformidade com todas as regulamentações.
</p>
</div>
</div>
</section>
<!-- Demo Section -->
<section class="relative overflow-hidden py-20">
<div class="absolute inset-0">
<div class="absolute inset-0 bg-gradient-to-r from-green-900/20 to-blue-900/20"></div>
<div class="absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-10"></div>
</div>
<div class="container mx-auto px-6 relative">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0">
<div class="neon-border p-1 rounded-2xl bg-gray-900/50 backdrop-blur-md">
<video autoplay loop muted playsinline class="rounded-2xl w-full h-auto">
<source src="https://assets.mixkit.co/videos/preview/mixkit-digital-animation-of-a-network-connection-41503-large.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="lg:w-1/2 lg:pl-16">
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 neon-text">VEJA A NEONVISION EM AÇÃO</h2>
<p class="text-lg text-gray-300 mb-8">
Nossa plataforma transforma dados complexos em insights acionáveis com visualizações intuitivas e relatórios personalizados.
</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check-circle text-neon-green mt-1 mr-3"></i>
<span class="text-gray-300">Dashboard personalizável com KPIs em tempo real</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-neon-green mt-1 mr-3"></i>
<span class="text-gray-300">Integração com todas as principais plataformas de anúncios</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-neon-green mt-1 mr-3"></i>
<span class="text-gray-300">Alertas inteligentes para oportunidades e ameaças</span>
</li>
</ul>
<a href="#demo" class="neon-button px-8 py-4 rounded-full inline-block font-bold">AGENDAR DEMONSTRAÇÃO</a>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="container mx-auto px-6 py-20">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-extrabold mb-4 neon-text">PLANOS QUE SE ADAPTAM A VOCÊ</h2>
<p class="text-lg text-gray-400 max-w-2xl mx-auto">
Escolha o plano perfeito para suas necessidades e comece a transformar seus resultados hoje
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-5xl mx-auto">
<!-- Free Plan -->
<div class="pricing-card rounded-xl p-6">
<h3 class="text-xl font-bold text-white mb-2">Starter</h3>
<p class="text-gray-400 mb-4">Ideal para quem está começando</p>
<div class="mb-6">
<span class="text-4xl font-extrabold neon-text">R$0</span>
<span class="text-gray-400">/mês</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">1 projeto ativo</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Relatórios básicos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Suporte por e-mail</span>
</li>
<li class="flex items-start text-gray-500">
<i class="fas fa-times mr-2 mt-1"></i>
<span>Automação limitada</span>
</li>
</ul>
<a href="#test" class="secondary-button w-full py-3 rounded-lg text-center font-bold">TESTE GRÁTIS</a>
</div>
<!-- Pro Plan -->
<div class="pricing-card rounded-xl p-6 popular-plan">
<div class="flex justify-between items-start mb-2">
<div>
<h3 class="text-xl font-bold text-white">Pro</h3>
<p class="text-gray-400">Para profissionais e agências</p>
</div>
<span class="bg-neon-green text-black text-xs font-bold px-2 py-1 rounded">POPULAR</span>
</div>
<div class="mb-6">
<span class="text-4xl font-extrabold neon-text">R$97</span>
<span class="text-gray-400">/mês</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">5 projetos ativos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Relatórios avançados</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Suporte prioritário</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Automação completa</span>
</li>
</ul>
<a href="#signup" class="neon-button w-full py-3 rounded-lg text-center font-bold">ASSINAR AGORA</a>
</div>
<!-- Business Plan -->
<div class="pricing-card rounded-xl p-6">
<h3 class="text-xl font-bold text-white mb-2">Business</h3>
<p class="text-gray-400 mb-4">Para equipes e empresas</p>
<div class="mb-6">
<span class="text-4xl font-extrabold neon-text">R$297</span>
<span class="text-gray-400">/mês</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Projetos ilimitados</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Relatórios personalizados</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Suporte dedicado</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Integrações premium</span>
</li>
</ul>
<a href="#signup" class="secondary-button w-full py-3 rounded-lg text-center font-bold">ASSINAR AGORA</a>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card rounded-xl p-6">
<h3 class="text-xl font-bold text-white mb-2">Enterprise</h3>
<p class="text-gray-400 mb-4">Soluções personalizadas</p>
<div class="mb-6">
<span class="text-4xl font-extrabold neon-text">Sob consulta</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Solução sob medida</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Treinamento dedicado</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Contrato personalizado</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-neon-green mr-2 mt-1"></i>
<span class="text-gray-300">Suporte 24/7</span>
</li>
</ul>
<a href="#contact" class="secondary-button w-full py-3 rounded-lg text-center font-bold">FALE CONOSCO</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="container mx-auto px-6 py-20">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-extrabold mb-4 neon-text">O QUE NOSSOS CLIENTES DIZEM</h2>
<p class="text-lg text-gray-400 max-w-2xl mx-auto">
Veja como a NeonVision está transformando negócios como o seu
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<!-- Testimonial 1 -->
<div class="feature-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-white">Ana Carolina</h4>
<p class="text-sm text-gray-400">Diretora de Marketing</p>
</div>
</div>
<p class="text-gray-300 mb-4">
"A NeonVision revolucionou nossa estratégia digital. Em 3 meses, reduzimos nosso CPA em 40% enquanto aumentávamos o volume de leads."
</p>
<div class="flex">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="feature-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-white">Ricardo Almeida</h4>
<p class="text-sm text-gray-400">CEO - E-commerce</p>
</div>
</div>
<p class="text-gray-300 mb-4">
"A automação inteligente nos poupou centenas de horas mensais. Agora nossa equipe pode focar em estratégias criativas em vez de tarefas repetitivas."
</p>
<div class="flex">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="feature-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-white">Fernanda Gomes</h4>
<p class="text-sm text-gray-400">Gerente de Tráfego</p>
</div>
</div>
<p class="text-gray-300 mb-4">
"Os insights preditivos são incríveis. Antecipamos tendências sazonais e ajustamos nossos orçamentos antes da concorrência, garantindo melhores resultados."
</p>
<div class="flex">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="relative overflow-hidden py-20">
<div class="absolute inset-0">
<div class="absolute inset-0 bg-gradient-to-r from-green-900/30 to-blue-900/30"></div>
<div class="absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-10"></div>
</div>
<div class="container mx-auto px-6 relative text-center">
<h2 class="text-3xl md:text-5xl font-extrabold mb-6 neon-text">PRONTO PARA TRANSFORMAR SEU MARKETING?</h2>
<p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto">
Comece hoje mesmo com nossa avaliação gratuita de 14 dias. Sem cartão de crédito necessário.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#test" class="neon-button px-8 py-4 rounded-full font-bold">TESTE GRÁTIS AGORA</a>
<a href="#contact" class="secondary-button px-8 py-4 rounded-full font-bold">FALE COM UM ESPECIALISTA</a>
</div>
</div>
</section>
<!-- Login Modal -->
<div id="login-modal" class="fixed inset-0 bg-black/80 backdrop-blur-md z-50 flex items-center justify-center hidden">
<div class="bg-gray-900/90 backdrop-blur-md rounded-2xl shadow-2xl p-8 max-w-md w-full neon-border">
<div class="flex justify-between items-center mb-6">
<h3 class="text-2xl font-extrabold neon-text">ACESSAR CONTA</h3>
<button id="close-login-modal" class="text-gray-400 hover:text-white">
<i class="fas fa-times"></i>
</button>
</div>
<form>
<div class="mb-4">
<label class="block text-gray-300 mb-2">E-mail</label>
<input type="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-neon-green text-white" placeholder="[email protected]">
</div>
<div class="mb-6">
<label class="block text-gray-300 mb-2">Senha</label>
<input type="password" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-neon-green text-white" placeholder="••••••••">
<a href="#forgot" class="text-sm text-neon-green hover:underline mt-2 inline-block">Esqueceu a senha?</a>
</div>
<button type="submit" class="neon-button w-full py-3 rounded-lg font-bold mb-4">ENTRAR</button>
<div class="text-center text-gray-400">
Não tem uma conta? <a href="#signup" class="text-neon-green hover:underline">Cadastre-se</a>
</div>
</form>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900/50 backdrop-blur-md border-t border-gray-800">
<div class="container mx-auto px-6 py-12">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-bolt text-2xl neon-text"></i>
<span class="text-2xl font-extrabold neon-text">NEONVISION</span>
</div>
<p class="text-gray-400 mb-4">
A plataforma de inteligência artificial para marketing digital que transforma dados em resultados.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-neon-green transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-green transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-green transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-green transition"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Produto</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Recursos</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Planos</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Integrações</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Atualizações</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Suporte</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Documentação</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Tutoriais</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Contato</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Termos de Uso</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Política de Privacidade</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Cookies</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-green transition">Segurança</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-500 text-sm mb-4 md:mb-0">© 2023 NeonVision. Todos os direitos reservados.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-neon-green transition text-sm">Termos</a>
<a href="#" class="text-gray-500 hover:text-neon-green transition text-sm">Privacidade</a>
<a href="#" class="text-gray-500 hover:text-neon-green transition text-sm">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Toggle login modal
document.querySelectorAll('[href="#login"]').forEach(btn => {
btn.addEventListener('click', (e) => {
e.preventDefault();
document.getElementById('login-modal').classList.remove('hidden');
});
});
document.getElementById('close-login-modal').addEventListener('click', () => {
document.getElementById('login-modal').classList.add('hidden');
});
// Close modal when clicking outside
document.getElementById('login-modal').addEventListener('click', (e) => {
if (e.target === document.getElementById('login-modal')) {
document.getElementById('login-modal').classList.add('hidden');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
// Animation on scroll
const observerOptions = {
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, observerOptions);
document.querySelectorAll('.feature-card, .pricing-card').forEach(card => {
observer.observe(card);
});
</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=xlorfx/teste-app" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |