| <!DOCTYPE html> |
| <html lang="pt-AO"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <meta name="description" content="Loja de produtos de informática e escritório - Angola Cor & Artes"> |
| <title>Angola Cor & Artes - Tecnologia e Inovação</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> |
| |
| .hero-section { |
| background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); |
| background-size: cover; |
| background-position: center; |
| height: 70vh; |
| } |
| |
| .product-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); |
| } |
| |
| .cart-item-enter { |
| opacity: 0; |
| transform: translateX(-20px); |
| } |
| |
| .cart-item-enter-active { |
| opacity: 1; |
| transform: translateX(0); |
| transition: all 300ms ease-in; |
| } |
| |
| .cart-item-exit { |
| opacity: 1; |
| } |
| |
| .cart-item-exit-active { |
| opacity: 0; |
| transform: translateX(20px); |
| transition: all 300ms ease-out; |
| } |
| |
| @keyframes pulse { |
| 0%, 100% { |
| transform: scale(1); |
| } |
| 50% { |
| transform: scale(1.05); |
| } |
| } |
| |
| .pulse-animation { |
| animation: pulse 2s infinite; |
| } |
| |
| .dropdown-menu { |
| transition: all 0.3s ease; |
| max-height: 0; |
| overflow: hidden; |
| } |
| |
| .dropdown-menu.open { |
| max-height: 500px; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50 font-sans"> |
| |
| <header class="sticky top-0 z-50 bg-white shadow-md"> |
| <div class="container mx-auto px-4 py-3"> |
| <div class="flex justify-between items-center"> |
| |
| <div class="flex items-center"> |
| <div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-3">ACA</div> |
| <h1 class="text-2xl font-bold text-blue-800">Angola Cor & Artes</h1> |
| </div> |
| |
| |
| <nav class="hidden md:flex space-x-6"> |
| <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Início</a> |
| <div class="relative group"> |
| <button class="text-gray-700 hover:text-blue-600 font-medium flex items-center"> |
| Produtos <i class="fas fa-chevron-down ml-1 text-xs"></i> |
| </button> |
| <div class="absolute left-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-10 hidden group-hover:block"> |
| <a href="#computadores" class="block px-4 py-2 text-gray-700 hover:bg-blue-50">Computadores</a> |
| <a href="#portateis" class="block px-4 py-2 text-gray-700 hover:bg-blue-50">Portáteis</a> |
| <a href="#consumiveis" class="block px-4 py-2 text-gray-700 hover:bg-blue-50">Consumíveis</a> |
| <a href="#material" class="block px-4 py-2 text-gray-700 hover:bg-blue-50">Material Escolar</a> |
| <a href="#eletronicos" class="block px-4 py-2 text-gray-700 hover:bg-blue-50">Eletrônicos</a> |
| </div> |
| </div> |
| <a href="#sobre" class="text-gray-700 hover:text-blue-600 font-medium">Sobre Nós</a> |
| <a href="#contato" class="text-gray-700 hover:text-blue-600 font-medium">Contato</a> |
| </nav> |
| |
| |
| <div class="hidden md:flex items-center space-x-4"> |
| <div class="relative"> |
| <input type="text" placeholder="Buscar produtos..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> |
| <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i> |
| </div> |
| <button id="cart-button" class="relative p-2 text-gray-700 hover:text-blue-600"> |
| <i class="fas fa-shopping-cart text-xl"></i> |
| <span id="cart-count" class="absolute -top-1 -right-1 bg-orange-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">0</span> |
| </button> |
| </div> |
| |
| |
| <button id="mobile-menu-button" class="md:hidden text-gray-700 focus:outline-none"> |
| <i class="fas fa-bars text-2xl"></i> |
| </button> |
| </div> |
| |
| |
| <div id="mobile-menu" class="md:hidden hidden mt-4 pb-4"> |
| <div class="flex flex-col space-y-3"> |
| <a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Início</a> |
| <div> |
| <button id="mobile-products-button" class="text-gray-700 hover:text-blue-600 font-medium flex items-center justify-between w-full"> |
| Produtos <i class="fas fa-chevron-down ml-1 text-xs"></i> |
| </button> |
| <div id="mobile-products-menu" class="dropdown-menu pl-4 mt-1"> |
| <a href="#computadores" class="block py-2 text-gray-700 hover:text-blue-600">Computadores</a> |
| <a href="#portateis" class="block py-2 text-gray-700 hover:text-blue-600">Portáteis</a> |
| <a href="#consumiveis" class="block py-2 text-gray-700 hover:text-blue-600">Consumíveis</a> |
| <a href="#material" class="block py-2 text-gray-700 hover:text-blue-600">Material Escolar</a> |
| <a href="#eletronicos" class="block py-2 text-gray-700 hover:text-blue-600">Eletrônicos</a> |
| </div> |
| </div> |
| <a href="#sobre" class="text-gray-700 hover:text-blue-600 font-medium">Sobre Nós</a> |
| <a href="#contato" class="text-gray-700 hover:text-blue-600 font-medium">Contato</a> |
| </div> |
| |
| <div class="mt-4"> |
| <div class="relative mb-3"> |
| <input type="text" placeholder="Buscar produtos..." class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> |
| <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i> |
| </div> |
| <button id="mobile-cart-button" class="relative p-2 text-gray-700 hover:text-blue-600"> |
| <i class="fas fa-shopping-cart text-xl"></i> |
| <span id="mobile-cart-count" class="absolute -top-1 -right-1 bg-orange-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">0</span> |
| </button> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section class="hero-section flex items-center justify-center text-white"> |
| <div class="container mx-auto px-4 text-center"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-4">Tecnologia e Inovação ao Seu Alcance</h1> |
| <p class="text-xl md:text-2xl mb-8">Os melhores produtos de informática e material de escritório em Angola</p> |
| <a href="#produtos" class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-8 rounded-full inline-block transition duration-300 transform hover:scale-105 pulse-animation"> |
| Explorar Produtos |
| </a> |
| </div> |
| </section> |
|
|
| |
| <section class="py-12 bg-gray-100"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Nossas Categorias</h2> |
| |
| <div class="grid grid-cols-2 md:grid-cols-5 gap-4"> |
| <a href="#computadores" class="bg-white rounded-lg shadow-md p-4 text-center hover:shadow-lg transition duration-300"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i class="fas fa-desktop text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="font-semibold text-gray-800">Computadores</h3> |
| </a> |
| |
| <a href="#portateis" class="bg-white rounded-lg shadow-md p-4 text-center hover:shadow-lg transition duration-300"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i class="fas fa-laptop text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="font-semibold text-gray-800">Portáteis</h3> |
| </a> |
| |
| <a href="#consumiveis" class="bg-white rounded-lg shadow-md p-4 text-center hover:shadow-lg transition duration-300"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i class="fas fa-print text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="font-semibold text-gray-800">Consumíveis</h3> |
| </a> |
| |
| <a href="#material" class="bg-white rounded-lg shadow-md p-4 text-center hover:shadow-lg transition duration-300"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i class="fas fa-pencil-alt text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="font-semibold text-gray-800">Material Escolar</h3> |
| </a> |
| |
| <a href="#eletronicos" class="bg-white rounded-lg shadow-md p-4 text-center hover:shadow-lg transition duration-300"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i class="fas fa-plug text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="font-semibold text-gray-800">Eletrônicos</h3> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="produtos" class="py-12"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Produtos em Destaque</h2> |
| |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Notebook Ultrabook" class="w-full h-48 object-cover"> |
| <div class="absolute top-2 right-2 bg-orange-500 text-white text-xs font-bold px-2 py-1 rounded-full">NOVO</div> |
| </div> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Notebook Ultrabook Pro</h3> |
| <p class="text-gray-600 text-sm mb-4">Leve e potente, perfeito para trabalho e estudo</p> |
| <div class="flex justify-between items-center"> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Notebook Ultrabook Pro"> |
| Adicionar ao Carrinho |
| </button> |
| <span class="text-gray-500 text-sm">Disponível</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1546054454-aa26e2b734c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=880&q=80" alt="Monitor 27''" class="w-full h-48 object-cover"> |
| </div> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Monitor 27'' 4K</h3> |
| <p class="text-gray-600 text-sm mb-4">Cores vibrantes e alta resolução para trabalho criativo</p> |
| <div class="flex justify-between items-center"> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Monitor 27'' 4K"> |
| Adicionar ao Carrinho |
| </button> |
| <span class="text-gray-500 text-sm">Disponível</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1586952518485-11b180e92764?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Impressora Multifuncional" class="w-full h-48 object-cover"> |
| <div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded-full">POPULAR</div> |
| </div> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Impressora Multifuncional</h3> |
| <p class="text-gray-600 text-sm mb-4">Imprime, copia e digitaliza com alta qualidade</p> |
| <div class="flex justify-between items-center"> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Impressora Multifuncional"> |
| Adicionar ao Carrinho |
| </button> |
| <span class="text-gray-500 text-sm">Disponível</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1591488320449-011701bb6704?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Material Escolar Premium" class="w-full h-48 object-cover"> |
| </div> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Kit Material Escolar Premium</h3> |
| <p class="text-gray-600 text-sm mb-4">Tudo que você precisa para o ano letivo</p> |
| <div class="flex justify-between items-center"> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Kit Material Escolar Premium"> |
| Adicionar ao Carrinho |
| </button> |
| <span class="text-gray-500 text-sm">Disponível</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-10"> |
| <a href="#" class="inline-block bg-gray-200 hover:bg-gray-300 text-gray-800 font-semibold py-3 px-8 rounded-full transition duration-300"> |
| Ver Todos os Produtos |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="computadores" class="py-12 bg-gray-100"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold mb-8 text-gray-800">Computadores</h2> |
| |
| <div class="mb-6"> |
| <button class="category-toggle bg-blue-600 text-white px-4 py-2 rounded-md mr-2 mb-2" data-category="todos">Todos</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="desktop">Desktop</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="all-in-one">All-in-One</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="workstation">Workstation</button> |
| </div> |
| |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6"> |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="desktop"> |
| <img src="https://images.unsplash.com/photo-1592155931584-901ac15763e3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Computador Desktop" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Computador Desktop Power</h3> |
| <p class="text-gray-600 text-sm mb-4">Alto desempenho para trabalho e jogos</p> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Computador Desktop Power"> |
| Adicionar ao Carrinho |
| </button> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="all-in-one"> |
| <img src="https://images.unsplash.com/photo-1618410320929-95d661244b4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Computador All-in-One" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">All-in-One Elegance</h3> |
| <p class="text-gray-600 text-sm mb-4">Design elegante e espaço economizado</p> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="All-in-One Elegance"> |
| Adicionar ao Carrinho |
| </button> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="workstation"> |
| <img src="https://images.unsplash.com/photo-1587202372775-e229f1723e0f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Workstation Profissional" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Workstation Profissional</h3> |
| <p class="text-gray-600 text-sm mb-4">Para designers, engenheiros e criadores</p> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Workstation Profissional"> |
| Adicionar ao Carrinho |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <section id="portateis" class="py-12"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold mb-8 text-gray-800">Portáteis</h2> |
| |
| <div class="mb-6"> |
| <button class="category-toggle bg-blue-600 text-white px-4 py-2 rounded-md mr-2 mb-2" data-category="todos">Todos</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="ultrabook">Ultrabooks</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="gaming">Gaming</button> |
| <button class="category-toggle bg-gray-200 text-gray-800 px-4 py-2 rounded-md mr-2 mb-2" data-category="business">Business</button> |
| </div> |
| |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6"> |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="ultrabook"> |
| <img src="https://images.unsplash.com/photo-1611186871348-b1ce696e52c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Ultrabook Slim" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Ultrabook Slim Pro</h3> |
| <p class="text-gray-600 text-sm mb-4">Leve, fino e poderoso</p> |
| <button class="add-to-cart bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full text-sm transition duration-300" data-product="Ultrabook Slim Pro"> |
| Adicionar ao Carrinho |
| </button> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="gaming"> |
| <img src="https://images.unsplash.com/photo-1593642634524-b40b5baae6bb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Notebook Gaming" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2 text-gray-800">Notebook Gaming Xtreme</h3> |
| <p class="text-gray-600 text-sm mb-4">Alto desempenho para jogos pesados</p> |
| <button class="add-to-cart bg-blue-600 hover: |
| </html> |