Spaces:
Running
Running
File size: 47,257 Bytes
1b2f20f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 | <!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BarMaster - Gestão Inteligente para Seu Bar ou Restaurante</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>
/* Custom CSS for animations and elements not covered by Tailwind */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 1s ease-in;
}
.carousel-item {
transition: transform 0.5s ease;
}
.feature-card:hover {
transform: translateY(-10px);
transition: all 0.3s ease;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #10b981;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.6);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-wine-glass-alt text-emerald-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-emerald-600">MixPub</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#home" class="nav-link text-gray-900 hover:text-emerald-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#features" class="nav-link text-gray-900 hover:text-emerald-600 px-3 py-2 text-sm font-medium">Funcionalidades</a>
<a href="#benefits" class="nav-link text-gray-900 hover:text-emerald-600 px-3 py-2 text-sm font-medium">Benefícios</a>
<a href="#about" class="nav-link text-gray-900 hover:text-emerald-600 px-3 py-2 text-sm font-medium">Sobre Nós</a>
<a href="#contact" class="nav-link text-gray-900 hover:text-emerald-600 px-3 py-2 text-sm font-medium">Contato</a>
</div>
<div class="flex items-center md:hidden">
<button type="button" class="mobile-menu-button inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-emerald-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-emerald-500" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="mobile-menu hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50">Home</a>
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50">Funcionalidades</a>
<a href="#benefits" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50">Benefícios</a>
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50">Sobre Nós</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50">Contato</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="bg-gradient-to-r from-emerald-50 to-teal-50 py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="fade-in">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">MixPub: A Gestão Inteligente para Seu Bar ou Restaurante</h1>
<p class="text-lg text-gray-600 mb-8">Otimize pedidos, controle o consumo e agilize o atendimento com nosso aplicativo completo.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="btn-primary bg-emerald-600 hover:bg-emerald-700 text-white font-bold py-3 px-6 rounded-lg shadow-md text-center">Quero uma Demonstração Gratuita</a>
<a href="#features" class="bg-white hover:bg-gray-100 text-emerald-600 font-bold py-3 px-6 rounded-lg shadow-md border border-emerald-600 text-center">Conheça as Funcionalidades</a>
</div>
</div>
<div class="mt-12 lg:mt-0 relative">
<!-- Carousel -->
<div class="carousel relative overflow-hidden rounded-xl shadow-xl">
<div class="carousel-inner flex transition-transform duration-500 ease-in-out">
<div class="carousel-item w-full flex-shrink-0">
<img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80" alt="Gestão de Mesas" class="w-full h-auto rounded-xl">
</div>
<div class="carousel-item w-full flex-shrink-0">
<img src="https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Cardápio Digital" class="w-full h-auto rounded-xl">
</div>
<div class="carousel-item w-full flex-shrink-0">
<img src="https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Lançamento de Pedidos" class="w-full h-auto rounded-xl">
</div>
</div>
<button class="carousel-prev absolute left-4 top-1/2 transform -translate-y-1/2 bg-white rounded-full p-2 shadow-md hover:bg-gray-100">
<i class="fas fa-chevron-left text-emerald-600"></i>
</button>
<button class="carousel-next absolute right-4 top-1/2 transform -translate-y-1/2 bg-white rounded-full p-2 shadow-md hover:bg-gray-100">
<i class="fas fa-chevron-right text-emerald-600"></i>
</button>
</div>
<div class="carousel-dots flex justify-center mt-4 space-x-2">
<button class="w-3 h-3 rounded-full bg-emerald-300 dot active"></button>
<button class="w-3 h-3 rounded-full bg-emerald-300 dot"></button>
<button class="w-3 h-3 rounded-full bg-emerald-300 dot"></button>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Por que escolher o BarMaster?</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-clock text-emerald-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Controle em Tempo Real</h3>
<p class="text-gray-600">Acompanhe todas as operações do seu estabelecimento em tempo real.</p>
</div>
<div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-bolt text-emerald-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Atendimento Agilizado</h3>
<p class="text-gray-600">Reduza o tempo de espera e aumente a satisfação dos seus clientes.</p>
</div>
<div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-line text-emerald-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Gestão Simplificada</h3>
<p class="text-gray-600">Todas as ferramentas que você precisa em um só lugar.</p>
</div>
<div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-lock text-emerald-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Segurança de Dados</h3>
<p class="text-gray-600">Seus dados protegidos com os mais altos padrões de segurança.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-emerald-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center text-gray-900 mb-12">O que nossos clientes dizem</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Cliente satisfeito" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold text-gray-900">Ana Carolina</h4>
<p class="text-emerald-600 text-sm">Bar da Ana</p>
</div>
</div>
<p class="text-gray-600 italic">"O BarMaster revolucionou nosso atendimento. Agora conseguimos atender mais clientes com menos erros e maior satisfação."</p>
<div class="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>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Cliente satisfeito" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold text-gray-900">Carlos Eduardo</h4>
<p class="text-emerald-600 text-sm">Restaurante Sabor Mineiro</p>
</div>
</div>
<p class="text-gray-600 italic">"A gestão financeira ficou muito mais fácil com os relatórios do BarMaster. Conseguimos identificar nossos produtos mais vendidos e melhorar nosso cardápio."</p>
<div class="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>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Cliente satisfeito" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold text-gray-900">Mariana Silva</h4>
<p class="text-emerald-600 text-sm">Cafeteria Aconchego</p>
</div>
</div>
<p class="text-gray-600 italic">"Nossos garçons adoraram a facilidade de lançar os pedidos pelo aplicativo. Erros diminuíram em 80% e o atendimento ficou muito mais rápido."</p>
<div class="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 class="text-center mt-12">
<a href="#contact" class="btn-primary inline-block bg-emerald-600 hover:bg-emerald-700 text-white font-bold py-3 px-6 rounded-lg shadow-md">Quero Experimentar</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Descubra o Poder do MixPub em suas Mãos</h2>
<!-- Feature 1 -->
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center mb-16">
<div class="mb-8 lg:mb-0">
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chair text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-900 mb-4">Gestão de Mesas</h3>
<p class="text-gray-600 mb-4">Gerencie suas mesas de forma intuitiva. Abra, feche e acompanhe o status de cada mesa em tempo real.</p>
<ul class="text-gray-600 space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Visualização em tempo real da ocupação</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Histórico completo de cada mesa</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Capacidade de transferir mesas facilmente</span>
</li>
</ul>
</div>
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80" alt="Gestão de Mesas" class="w-full h-auto">
</div>
</div>
<!-- Feature 2 -->
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center mb-16">
<div class="order-last lg:order-first mb-8 lg:mb-0">
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Cardápio Digital" class="w-full h-auto">
</div>
</div>
<div class="order-first lg:order-last">
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-book-open text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-900 mb-4">Cardápio Digital Inteligente</h3>
<p class="text-gray-600 mb-4">Crie e personalize seu cardápio com facilidade. Adicione produtos, categorias e preços, tornando a atualização simples e rápida.</p>
<ul class="text-gray-600 space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Atualização instantânea em todos os dispositivos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Fotos e descrições detalhadas dos produtos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Destaque para promoções e itens especiais</span>
</li>
</ul>
</div>
</div>
<!-- Feature 3 -->
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center mb-16">
<div class="mb-8 lg:mb-0">
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-900 mb-4">Lançamento de Pedidos Simplificado</h3>
<p class="text-gray-600 mb-4">Seus garçons lançam pedidos diretamente do aplicativo, garantindo precisão e agilidade no envio à cozinha ou bar.</p>
<ul class="text-gray-600 space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Interface intuitiva e fácil de usar</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Personalização de pedidos com observações</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Notificação instantânea para a cozinha</span>
</li>
</ul>
</div>
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Lançamento de Pedidos" class="w-full h-auto">
</div>
</div>
<!-- Feature 4 -->
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center mb-16">
<div class="order-last lg:order-first mb-8 lg:mb-0">
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Controle de Consumo" class="w-full h-auto">
</div>
</div>
<div class="order-first lg:order-last">
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-pie text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-900 mb-4">Controle de Consumo Detalhado</h3>
<p class="text-gray-600 mb-4">Monitore o consumo por mesa e por cliente, evitando erros e facilitando o fechamento da conta.</p>
<ul class="text-gray-600 space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Registro preciso de todos os itens consumidos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Divisão de contas entre clientes</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Opções de pagamento integradas</span>
</li>
</ul>
</div>
</div>
<!-- Feature 5 -->
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-8 lg:mb-0">
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-file-alt text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-900 mb-4">Relatórios e Análises</h3>
<p class="text-gray-600 mb-4">Acesse dados e relatórios para tomar decisões estratégicas sobre seu negócio.</p>
<ul class="text-gray-600 space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Relatórios de vendas por período</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Análise de produtos mais vendidos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-emerald-500 mt-1 mr-2"></i>
<span>Controle de estoque integrado</span>
</li>
</ul>
</div>
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80" alt="Relatórios e Análises" class="w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="benefits" class="py-16 bg-emerald-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center text-gray-900 mb-12">As Vantagens de Ter o MixPub como Seu Aliado</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-stopwatch text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Agilidade no Atendimento</h3>
<p class="text-gray-600">Reduza o tempo de espera dos clientes e otimize o fluxo de trabalho com processos mais eficientes.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-times-circle text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Redução de Erros</h3>
<p class="text-gray-600">Elimine falhas manuais no registro de pedidos e fechamento de contas com nosso sistema automatizado.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-line text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Aumento da Produtividade</h3>
<p class="text-gray-600">Sua equipe foca no que realmente importa: atender bem o cliente, enquanto o BarMaster cuida do resto.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-wallet text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Controle Financeiro Aprimorado</h3>
<p class="text-gray-600">Tenha uma visão clara do consumo e faturamento com relatórios detalhados e em tempo real.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-smile text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Melhora da Experiência do Cliente</h3>
<p class="text-gray-600">Clientes satisfeitos com um serviço rápido, eficiente e sem erros nos pedidos e contas.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-emerald-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-lightbulb text-emerald-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Decisões Estratégicas Baseadas em Dados</h3>
<p class="text-gray-600">Informações precisas sobre seu negócio para tomar decisões mais inteligentes e aumentar seus lucros.</p>
</div>
</div>
<div class="text-center mt-12">
<a href="#contact" class="btn-primary inline-block bg-emerald-600 hover:bg-emerald-700 text-white font-bold py-3 px-6 rounded-lg shadow-md">Quero Saber Mais</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-8 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Nossa Missão</h2>
<p class="text-gray-600 mb-4">O BarMaster nasceu da necessidade de simplificar a gestão de bares e restaurantes, setores que tradicionalmente enfrentam desafios com sistemas complexos e pouco intuitivos.</p>
<p class="text-gray-600 mb-4">Nossa equipe, composta por especialistas em tecnologia e profissionais com experiência no ramo de alimentação, uniu forças para criar uma solução que realmente atenda às necessidades dos estabelecimentos.</p>
<p class="text-gray-600 mb-6">"Desenvolvemos o BarMaster com o objetivo de revolucionar a gestão de bares e restaurantes, oferecendo uma ferramenta robusta, intuitiva e acessível para empreendedores que buscam eficiência e sucesso."</p>
<div class="flex items-center">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Fundador" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold text-gray-900">Ricardo Almeida</h4>
<p class="text-emerald-600 text-sm">Fundador e CEO</p>
</div>
</div>
</div>
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80" alt="Nossa Equipe" class="w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-emerald-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">Pronto para Transformar Seu Negócio?</h2>
<div class="lg:grid lg:grid-cols-2 lg:gap-12">
<div class="mb-8 lg:mb-0">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium mb-1">Nome Completo *</label>
<input type="text" id="name" name="name" required class="w-full px-4 py-3 rounded-lg bg-emerald-700 border border-emerald-500 focus:border-white focus:ring-2 focus:ring-white focus:outline-none text-white placeholder-emerald-300">
</div>
<div>
<label for="company" class="block text-sm font-medium mb-1">Nome da Empresa *</label>
<input type="text" id="company" name="company" required class="w-full px-4 py-3 rounded-lg bg-emerald-700 border border-emerald-500 focus:border-white focus:ring-2 focus:ring-white focus:outline-none text-white placeholder-emerald-300">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-1">E-mail *</label>
<input type="email" id="email" name="email" required class="w-full px-4 py-3 rounded-lg bg-emerald-700 border border-emerald-500 focus:border-white focus:ring-2 focus:ring-white focus:outline-none text-white placeholder-emerald-300">
</div>
<div>
<label for="phone" class="block text-sm font-medium mb-1">Telefone (com DDD) *</label>
<input type="tel" id="phone" name="phone" required class="w-full px-4 py-3 rounded-lg bg-emerald-700 border border-emerald-500 focus:border-white focus:ring-2 focus:ring-white focus:outline-none text-white placeholder-emerald-300">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-1">Mensagem (Opcional)</label>
<textarea id="message" name="message" rows="4" class="w-full px-4 py-3 rounded-lg bg-emerald-700 border border-emerald-500 focus:border-white focus:ring-2 focus:ring-white focus:outline-none text-white placeholder-emerald-300"></textarea>
</div>
<div>
<button type="submit" class="btn-primary w-full bg-white hover:bg-gray-100 text-emerald-600 font-bold py-3 px-6 rounded-lg shadow-md">Agendar Demonstração</button>
</div>
</form>
</div>
<div>
<div class="bg-emerald-700 p-8 rounded-xl shadow-md">
<h3 class="text-xl font-semibold mb-6">Informações de Contato</h3>
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-4 text-emerald-300"></i>
<div>
<h4 class="font-medium mb-1">Telefone Comercial</h4>
<a href="tel:+5511999999999" class="text-emerald-200 hover:text-white">(11) 99999-9999</a>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-envelope mt-1 mr-4 text-emerald-300"></i>
<div>
<h4 class="font-medium mb-1">E-mail</h4>
<a href="mailto:contato@mixpub.com.br" class="text-emerald-200 hover:text-white">contato@mixpub.com.br</a>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-clock mt-1 mr-4 text-emerald-300"></i>
<div>
<h4 class="font-medium mb-1">Horário de Atendimento</h4>
<p class="text-emerald-200">Segunda a Sexta: 9h às 18h</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium mb-4">Nos siga nas redes sociais</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-emerald-600 flex items-center justify-center hover:bg-emerald-500">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-emerald-600 flex items-center justify-center hover:bg-emerald-500">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-emerald-600 flex items-center justify-center hover:bg-emerald-500">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-emerald-600 flex items-center justify-center hover:bg-emerald-500">
<i class="fab fa-whatsapp"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-wine-glass-alt text-emerald-400 text-2xl mr-2"></i>
<span class="text-xl font-bold text-emerald-400">MixPub</span>
</div>
<p class="text-gray-400">A solução completa para gestão de bares, pubs e restaurantes.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4 text-emerald-400">Links Rápidos</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#features" class="text-gray-400 hover:text-white">Funcionalidades</a></li>
<li><a href="#benefits" class="text-gray-400 hover:text-white">Benefícios</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">Sobre Nós</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contato</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4 text-emerald-400">Funcionalidades</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Gestão de Mesas</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cardápio Digital</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Lançamento de Pedidos</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Controle de Consumo</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Relatórios</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4 text-emerald-400">Contato</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-2 text-emerald-400"></i>
<span class="text-gray-400">Av. Paulista, 1000 - São Paulo/SP</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-2 text-emerald-400"></i>
<span class="text-gray-400">(11) 99999-9999</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-2 text-emerald-400"></i>
<span class="text-gray-400">contato@barmaster.com.br</span>
</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 MixPub. Todos os direitos reservados.</p>
<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-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-whatsapp"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Chat Widget -->
<div class="fixed bottom-6 right-6 z-50">
<button id="chat-button" class="w-16 h-16 rounded-full bg-emerald-600 hover:bg-emerald-700 shadow-lg flex items-center justify-center text-white">
<i class="fas fa-comment-dots text-2xl"></i>
</button>
<div id="chat-window" class="hidden absolute bottom-20 right-0 w-80 bg-white rounded-t-lg rounded-bl-lg shadow-xl overflow-hidden">
<div class="bg-emerald-600 text-white p-4 flex justify-between items-center">
<h3 class="font-semibold">Atendimento BarMaster</h3>
<button id="close-chat" class="text-white hover:text-emerald-200">
<i class="fas fa-times"></i>
</button>
</div>
<div class="p-4 h-64 overflow-y-auto">
<div class="mb-4">
<div class="bg-emerald-100 rounded-lg p-3 text-gray-800 mb-2">
<p>Olá! Como podemos ajudar você hoje?</p>
</div>
</div>
</div>
<div class="p-4 border-t border-gray-200">
<div class="flex">
<input type="text" placeholder="Digite sua mensagem..." class="flex-grow px-4 py-2 rounded-l-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-emerald-500">
<button class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
// Carousel functionality
const carousel = document.querySelector('.carousel-inner');
const carouselItems = document.querySelectorAll('.carousel-item');
const prevBtn = document.querySelector('.carousel-prev');
const nextBtn = document.querySelector('.carousel-next');
const dots = document.querySelectorAll('.dot');
let currentIndex = 0;
const itemWidth = 100; // Percentage
function updateCarousel() {
carousel.style.transform = `translateX(-${currentIndex * itemWidth}%)`;
// Update dots
dots.forEach((dot, index) => {
if (index === currentIndex) {
dot.classList.add('bg-emerald-600');
dot.classList.remove('bg-emerald-300');
} else {
dot.classList.add('bg-emerald-300');
dot.classList.remove('bg-emerald-600');
}
});
}
nextBtn.addEventListener('click', () => {
currentIndex = (currentIndex + 1) % carouselItems.length;
updateCarousel();
});
prevBtn.addEventListener('click', () => {
currentIndex = (currentIndex - 1 + carouselItems.length) % carouselItems.length;
updateCarousel();
});
// Click on dots
dots.forEach((dot, index) => {
dot.addEventListener('click', () => {
currentIndex = index;
updateCarousel();
});
});
// Auto-rotate carousel
let carouselInterval = setInterval(() => {
currentIndex = (currentIndex + 1) % carouselItems.length;
updateCarousel();
}, 5000);
// Pause on hover
carousel.parentElement.addEventListener('mouseenter', () => {
clearInterval(carouselInterval);
});
carousel.parentElement.addEventListener('mouseleave', () => {
carouselInterval = setInterval(() => {
currentIndex = (currentIndex + 1) % carouselItems.length;
updateCarousel();
}, 5000);
});
// Chat widget toggle
const chatButton = document.getElementById('chat-button');
const chatWindow = document.getElementById('chat-window');
const closeChat = document.getElementById('close-chat');
chatButton.addEventListener('click', () => {
chatWindow.classList.toggle('hidden');
});
closeChat.addEventListener('click', () => {
chatWindow.classList.add('hidden');
});
// Form submission (example)
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
alert('Obrigado pelo seu interesse! Entraremos em contato em breve.');
contactForm.reset();
});
}
</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=mjrantunes/mixpub" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |