Spaces:
Running
Running
File size: 38,103 Bytes
d84ef18 | 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 | <!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nuvem Sonora da AuraTech - Sua Bolha de Paz Sonora</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Open Sans', sans-serif;
color: #34495E;
}
h1, h2, h3, h4 {
font-family: 'Montserrat', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #2C3E50 0%, #1ABC9C 100%);
}
.testimonial-card {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
}
.feature-icon {
background-color: rgba(26, 188, 156, 0.1);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.product-3d {
transform-style: preserve-3d;
transform: perspective(1000px) rotateY(-15deg);
transition: transform 0.5s ease;
}
.product-3d:hover {
transform: perspective(1000px) rotateY(0deg);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-blue-800 flex items-center justify-center text-white font-bold text-xl mr-3">AT</div>
<span class="text-xl font-bold text-gray-800">AuraTech</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#features" class="text-gray-600 hover:text-blue-800 font-medium">Recursos</a>
<a href="#testimonials" class="text-gray-600 hover:text-blue-800 font-medium">Depoimentos</a>
<a href="#offer" class="text-gray-600 hover:text-blue-800 font-medium">Oferta</a>
<a href="#guarantee" class="text-gray-600 hover:text-blue-800 font-medium">Garantia</a>
</nav>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Cansado do Barulho? Crie Seu Oásis de Paz Instantaneamente.</h1>
<p class="text-xl mb-8 opacity-90">Apresentamos a Nuvem Sonora da AuraTech: A revolução em áudio pessoal que cancela o caos e te imerge no seu mundo sonoro ideal, onde quer que você esteja.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-green-500 hover:bg-green-600 text-white font-bold py-4 px-8 rounded-full text-lg pulse-animation">
QUERO MINHA NUVEM SONORA COM DESCONTO DE LANÇAMENTO!
</button>
<button class="bg-white bg-opacity-20 hover:bg-opacity-30 text-white font-bold py-4 px-8 rounded-full text-lg border border-white border-opacity-30">
<i class="fas fa-play mr-2"></i> Ver Vídeo
</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-white">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white">
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-white">
</div>
<div class="ml-4">
<p class="text-sm opacity-80">+5.000 pessoas já transformaram seus dias</p>
<div class="flex items-center mt-1">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300"></i>
<span class="ml-2 text-sm">4.9/5 (1.234 avaliações)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="product-3d relative">
<img src="https://images.unsplash.com/photo-1618366712010-f4ae9c647dcb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Nuvem Sonora" class="rounded-xl shadow-2xl w-full max-w-md">
<div class="absolute -bottom-6 -right-6 bg-white text-blue-800 py-2 px-4 rounded-full shadow-lg font-bold">
<span class="text-green-500">30% OFF</span> Lançamento
</div>
</div>
</div>
</div>
</section>
<!-- Problem Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-gray-800">O Mundo é Barulhento. Sua Mente Não Precisa Ser.</h2>
<p class="text-lg text-gray-600 mb-10">Open offices, trânsito caótico, vizinhos animados... encontrar um momento de paz ou foco parece impossível? A constante sobrecarga auditiva drena sua energia, prejudica sua concentração e aumenta seu estresse. Você já tentou fones comuns, mas o ruído ainda vaza e o som não te transporta de verdade.</p>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-gray-100 p-4 rounded-lg">
<i class="fas fa-volume-up text-3xl text-blue-800 mb-2"></i>
<p class="font-semibold">+85dB</p>
<p class="text-sm text-gray-600">Exposição diária</p>
</div>
<div class="bg-gray-100 p-4 rounded-lg">
<i class="fas fa-brain text-3xl text-blue-800 mb-2"></i>
<p class="font-semibold">-40%</p>
<p class="text-sm text-gray-600">Produtividade</p>
</div>
<div class="bg-gray-100 p-4 rounded-lg">
<i class="fas fa-heartbeat text-3xl text-blue-800 mb-2"></i>
<p class="font-semibold">3.2x</p>
<p class="text-sm text-gray-600">Mais estresse</p>
</div>
<div class="bg-gray-100 p-4 rounded-lg">
<i class="fas fa-clock text-3xl text-blue-800 mb-2"></i>
<p class="font-semibold">72min</p>
<p class="text-sm text-gray-600">Tempo perdido/dia</p>
</div>
</div>
</div>
</div>
</section>
<!-- Solution Section -->
<section id="features" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Sua Bolha Pessoal de Silêncio e Som Perfeito: Conheça a Nuvem Sonora.</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">A AuraTech desenvolveu a Nuvem Sonora, um dispositivo compacto e inteligente que vai além do cancelamento de ruído tradicional.</p>
</div>
<div class="flex flex-col md:flex-row items-center mb-16">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://images.unsplash.com/photo-1590658268037-6bf12165a8df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Nuvem Sonora em uso" class="rounded-xl shadow-lg w-full">
</div>
<div class="md:w-1/2 md:pl-12">
<h3 class="text-2xl font-bold mb-6 text-gray-800">Tecnologia que Transforma Seu Ambiente</h3>
<p class="text-gray-600 mb-8">Usando inteligência artificial, ele mapeia o som ambiente e cria uma zona de silêncio adaptativa ao seu redor. Ao mesmo tempo, entrega áudio 3D imersivo que te coloca no centro da sua música, podcast ou meditação.</p>
<div class="space-y-6">
<div class="flex">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-headphones text-2xl text-green-500"></i>
</div>
<div>
<h4 class="font-bold text-lg">Cancelamento de Ruído Inteligente</h4>
<p class="text-gray-600">Bloqueia distrações sem te isolar completamente (você define o nível!).</p>
</div>
</div>
<div class="flex">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-soundcloud text-2xl text-green-500"></i>
</div>
<div>
<h4 class="font-bold text-lg">Áudio Imersivo 3D</h4>
<p class="text-gray-600">Sinta o som te envolver como nunca antes. Perfeito para áudio espacial e binaural.</p>
</div>
</div>
<div class="flex">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-brain text-2xl text-green-500"></i>
</div>
<div>
<h4 class="font-bold text-lg">Foco Profundo e Relaxamento</h4>
<p class="text-gray-600">Crie o ambiente ideal para trabalhar, estudar ou simplesmente desligar.</p>
</div>
</div>
</div>
</div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-battery-three-quarters text-2xl text-blue-800"></i>
</div>
<h3 class="text-xl font-bold mb-3">Bateria de Longa Duração</h3>
<p class="text-gray-600">Horas de paz com uma única carga. Carregamento rápido via USB-C.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-2xl text-blue-800"></i>
</div>
<h3 class="text-xl font-bold mb-3">Portátil e Discreto</h3>
<p class="text-gray-600">Leve seu santuário sonoro no bolso. Apenas 85g de tecnologia revolucionária.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-robot text-2xl text-blue-800"></i>
</div>
<h3 class="text-xl font-bold mb-3">Tecnologia Adaptativa</h3>
<p class="text-gray-600">Aprende suas preferências e ajusta-se automaticamente ao ambiente.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Quem Já Está na Sua Nuvem Sonora Aprova:</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Veja o que nossos primeiros usuários estão dizendo sobre a transformação em suas vidas</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Mariana L.</h4>
<p class="text-sm text-gray-600">Designer Freelancer</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Trabalho em um coworking e a Nuvem Sonora mudou meu jogo. Consigo me concentrar como nunca antes, mesmo com todo o movimento ao redor."</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Ricardo P.</h4>
<p class="text-sm text-gray-600">Analista de Sistemas</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Uso no ônibus e no metrô. A diferença é brutal. Chego no trabalho muito menos estressado. O som 3D para podcasts é incrível!"</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sofia C.</h4>
<p class="text-sm text-gray-600">Instrutora de Yoga</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Perfeito para meditar no parque. Cria uma sensação de calma instantânea. Pequeno, leve e super eficaz."</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button class="bg-green-500 hover:bg-green-600 text-white font-bold py-3 px-8 rounded-full">
<i class="fas fa-play-circle mr-2"></i> Ver Mais Depoimentos em Vídeo
</button>
</div>
</div>
</section>
<!-- Offer Section -->
<section id="offer" class="py-16 bg-blue-800 text-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Oferta Exclusiva de Lançamento: Sua Paz Sonora com Vantagens Únicas!</h2>
<p class="text-xl mb-8 opacity-90">Seja um dos primeiros a experimentar a revolução da Nuvem Sonora! Garanta o seu hoje e receba:</p>
<div class="grid md:grid-cols-2 gap-6 mb-12">
<div class="bg-white bg-opacity-10 p-6 rounded-lg flex items-start">
<div class="bg-green-500 text-white p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">30% de Desconto</h3>
<p class="opacity-80">sobre o preço final.</p>
</div>
</div>
<div class="bg-white bg-opacity-10 p-6 rounded-lg flex items-start">
<div class="bg-green-500 text-white p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">Frete Grátis</h3>
<p class="opacity-80">para todo o Brasil.</p>
</div>
</div>
<div class="bg-white bg-opacity-10 p-6 rounded-lg flex items-start">
<div class="bg-green-500 text-white p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">Acesso VIP</h3>
<p class="opacity-80">ao nosso app com paisagens sonoras exclusivas por 1 ano.</p>
</div>
</div>
<div class="bg-white bg-opacity-10 p-6 rounded-lg flex items-start">
<div class="bg-green-500 text-white p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h3 class="font-bold text-lg mb-1">Case de Transporte</h3>
<p class="opacity-80">Protetor de brinde.</p>
</div>
</div>
</div>
<div class="bg-white bg-opacity-20 p-6 rounded-lg inline-block mb-8">
<h3 class="font-bold text-xl mb-2">Esta oferta termina em:</h3>
<div class="flex justify-center space-x-4 text-2xl font-bold">
<div class="bg-white text-blue-800 py-2 px-4 rounded">
<div id="countdown-days">02</div>
<div class="text-xs font-normal">Dias</div>
</div>
<div class="bg-white text-blue-800 py-2 px-4 rounded">
<div id="countdown-hours">12</div>
<div class="text-xs font-normal">Horas</div>
</div>
<div class="bg-white text-blue-800 py-2 px-4 rounded">
<div id="countdown-minutes">45</div>
<div class="text-xs font-normal">Min</div>
</div>
<div class="bg-white text-blue-800 py-2 px-4 rounded">
<div id="countdown-seconds">30</div>
<div class="text-xs font-normal">Seg</div>
</div>
</div>
</div>
<p class="text-lg mb-8 opacity-90">Válido apenas para os primeiros 200 compradores! Já vendemos 143 unidades.</p>
<button class="bg-green-500 hover:bg-green-600 text-white font-bold py-4 px-12 rounded-full text-lg pulse-animation mb-4">
SIM, QUERO MINHA NUVEM SONORA AGORA!
</button>
<div class="flex items-center justify-center">
<i class="fas fa-lock text-gray-300 mr-2"></i>
<p class="text-sm opacity-80">Compra 100% segura | Dados protegidos</p>
</div>
</div>
</div>
</section>
<!-- Guarantee Section -->
<section id="guarantee" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="w-24 h-24 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-shield-alt text-4xl text-green-500"></i>
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-gray-800">Experimente Sem Riscos: Sua Satisfação ou Seu Dinheiro de Volta!</h2>
<p class="text-xl text-gray-600 mb-8">Temos tanta confiança na transformação que a Nuvem Sonora trará para seu dia a dia que oferecemos uma Garantia Incondicional de 30 Dias. Se você não ficar 100% satisfeito com sua paz e qualidade sonora, basta nos contatar e devolveremos todo o seu investimento. Sem perguntas, sem burocracia. O risco é todo nosso!</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-8">
<div class="flex items-center">
<i class="fas fa-check-circle text-2xl text-green-500 mr-2"></i>
<span class="font-semibold">30 Dias de Garantia</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-2xl text-green-500 mr-2"></i>
<span class="font-semibold">Devolução Fácil</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-2xl text-green-500 mr-2"></i>
<span class="font-semibold">Sem Perguntas</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-gray-800">Não Espere Mais Pela Paz e Foco Que Você Merece.</h2>
<p class="text-xl text-gray-600 mb-8">Diga adeus às distrações e olá para um mundo de clareza e imersão sonora. A Nuvem Sonora é mais que um fone, é sua ferramenta pessoal para bem-estar e produtividade.</p>
<div class="bg-gray-100 p-6 rounded-lg mb-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="text-left mb-4 md:mb-0">
<h3 class="font-bold text-xl">Nuvem Sonora + Acessórios</h3>
<p class="text-gray-600">De <span class="line-through">R$ 599,90</span> por apenas:</p>
</div>
<div class="text-right">
<p class="text-sm text-gray-600">Preço com desconto:</p>
<p class="text-3xl font-bold text-green-500">R$ 419,90</p>
<p class="text-sm text-gray-600">ou 12x de R$ 38,90</p>
</div>
</div>
</div>
<button class="bg-green-500 hover:bg-green-600 text-white font-bold py-4 px-12 rounded-full text-lg pulse-animation mb-4 w-full max-w-md">
GARANTIR MINHA NUVEM SONORA COM 30% OFF + FRETE GRÁTIS!
</button>
<div class="flex items-center justify-center">
<img src="https://via.placeholder.com/40x25" alt="Bandeira Cartão" class="mr-2">
<img src="https://via.placeholder.com/40x25" alt="Bandeira Cartão" class="mr-2">
<img src="https://via.placeholder.com/40x25" alt="Bandeira Cartão" class="mr-2">
<img src="https://via.placeholder.com/40x25" alt="Bandeira Cartão" class="mr-2">
<p class="text-sm text-gray-600">+ outras formas de pagamento</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto">
<h2 class="text-3xl font-bold mb-8 text-center text-gray-800">Perguntas Frequentes</h2>
<div class="space-y-4">
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="flex justify-between items-center w-full text-left font-semibold text-lg">
<span>Como a Nuvem Sonora é diferente de fones comuns?</span>
<i class="fas fa-chevron-down text-green-500"></i>
</button>
<div class="mt-4 text-gray-600 hidden">
<p>A Nuvem Sonora vai além do cancelamento de ruído passivo dos fones tradicionais. Nossa tecnologia adaptativa cria uma "bolha" de som personalizada ao seu redor, ajustando-se em tempo real ao ambiente e suas preferências. Além disso, o áudio 3D imersivo proporciona uma experiência sonora muito mais rica e natural.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="flex justify-between items-center w-full text-left font-semibold text-lg">
<span>Quanto tempo dura a bateria?</span>
<i class="fas fa-chevron-down text-green-500"></i>
</button>
<div class="mt-4 text-gray-600 hidden">
<p>Com uma única carga de 2 horas, a Nuvem Sonora oferece até 12 horas de uso contínuo no modo padrão e até 8 horas com cancelamento de ruído ativado ao máximo. O carregamento rápido via USB-C permite 2 horas de uso com apenas 15 minutos de carregamento.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="flex justify-between items-center w-full text-left font-semibold text-lg">
<span>Posso usar para chamadas telefônicas?</span>
<i class="fas fa-chevron-down text-green-500"></i>
</button>
<div class="mt-4 text-gray-600 hidden">
<p>Sim! A Nuvem Sonora possui microfones de alta qualidade com cancelamento de ruído para sua voz, garantindo que você seja ouvido com clareza mesmo em ambientes barulhentos. O áudio 3D também melhora sua experiência ao ouvir a outra pessoa.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="flex justify-between items-center w-full text-left font-semibold text-lg">
<span>Como funciona a garantia de 30 dias?</span>
<i class="fas fa-chevron-down text-green-500"></i>
</button>
<div class="mt-4 text-gray-600 hidden">
<p>Se dentro de 30 dias após o recebimento você não estiver completamente satisfeito com sua Nuvem Sonora, basta nos contatar pelo e-mail suporte@auratech.com.br e enviar o produto de volta em sua embalagem original. Reembolsaremos 100% do valor pago sem questionamentos. O frete de devolução é por nossa conta.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="flex justify-between items-center w-full text-left font-semibold text-lg">
<span>Quando receberei meu pedido?</span>
<i class="fas fa-chevron-down text-green-500"></i>
</button>
<div class="mt-4 text-gray-600 hidden">
<p>Enviamos todos os pedidos dentro de 1 dia útil após a confirmação do pagamento. Para grandes capitais, o prazo de entrega é de 3-5 dias úteis. Para demais localidades, de 5-10 dias úteis. Você receberá um código de rastreio assim que seu pedido for despachado.</p>
</div>
</div>
</div>
<div class="mt-8 text-center">
<p class="text-gray-600 mb-4">Ainda tem dúvidas?</p>
<button class="bg-blue-800 hover:bg-blue-900 text-white font-bold py-3 px-8 rounded-full">
<i class="fas fa-envelope mr-2"></i> Fale Conosco
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-8 md:mb-0">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-700 flex items-center justify-center text-white font-bold text-xl mr-3">AT</div>
<span class="text-xl font-bold">AuraTech</span>
</div>
<p class="text-gray-400 max-w-xs">Soluções auditivas inovadoras para melhorar sua qualidade de vida.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h3 class="font-bold text-lg mb-4">Produtos</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Nuvem Sonora</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Acessórios</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">App AuraTech</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-lg mb-4">Suporte</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Central de Ajuda</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Garantia</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Trocas e Devoluções</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-lg mb-4">Empresa</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Sobre Nós</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contato</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Trabalhe Conosco</a></li>
</ul>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p class="text-gray-400">© <span id="current-year">2023</span> AuraTech Soluções Auditivas. Todos os direitos reservados.</p>
</div>
<div class="flex space-x-6">
<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-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Countdown timer
function updateCountdown() {
const now = new Date();
const target = new Date();
target.setDate(now.getDate() + 2); // 2 days from now
target.setHours(12, 0, 0, 0); // Set to 12:00 PM
const diff = target - now;
if (diff <= 0) {
// Countdown finished
document.getElementById('countdown-days').textContent = '00';
document.getElementById('countdown-hours').textContent = '00';
document.getElementById('countdown-minutes').textContent = '00';
document.getElementById('countdown-seconds').textContent = '00';
return;
}
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('countdown-days').textContent = days.toString().padStart(2, '0');
document.getElementById('countdown-hours').textContent = hours.toString().padStart(2, '0');
document.getElementById('countdown-minutes').textContent = minutes.toString().padStart(2, '0');
document.getElementById('countdown-seconds').textContent = seconds.toString().padStart(2, '0');
}
setInterval(updateCountdown, 1000);
updateCountdown();
// Set current year in footer
document.getElementById('current-year').textContent = new Date().getFullYear();
// FAQ accordion
const faqButtons = document.querySelectorAll('.bg-white.p-6.rounded-lg.shadow-sm button');
faqButtons.forEach(button => {
button.addEventListener('click', () => {
const answer = button.nextElementSibling;
const icon = button.querySelector('i');
if (answer.classList.contains('hidden')) {
answer.classList.remove('hidden');
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
} else {
answer.classList.add('hidden');
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
}
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=robertosousa/teste-lp" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |