| <!DOCTYPE html> |
| <html lang="pt-BR"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Mais Vendidos Shopee - Top Produtos</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> |
| @keyframes pulse { |
| 0% { transform: scale(1); } |
| 50% { transform: scale(1.05); } |
| 100% { transform: scale(1); } |
| } |
| |
| .hot-item { |
| animation: pulse 2s infinite; |
| } |
| |
| .discount-badge { |
| clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%); |
| } |
| |
| .product-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); |
| } |
| |
| .category-chip { |
| transition: all 0.3s ease; |
| } |
| |
| .category-chip:hover { |
| background-color: #f53d2d; |
| color: white; |
| } |
| |
| .sold-bar { |
| transition: width 1s ease-in-out; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <header class="bg-gradient-to-r from-orange-500 to-red-500 text-white shadow-md"> |
| <div class="container mx-auto px-4 py-3"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center space-x-2"> |
| <i class="fas fa-fire text-2xl"></i> |
| <h1 class="text-2xl font-bold">Shopee Top</h1> |
| </div> |
| <div class="hidden md:flex items-center space-x-6"> |
| <a href="#" class="hover:underline">Início</a> |
| <a href="#" class="hover:underline">Categorias</a> |
| <a href="#" class="hover:underline">Ofertas</a> |
| <a href="#" class="hover:underline">Novidades</a> |
| </div> |
| <div class="flex items-center space-x-4"> |
| <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20"> |
| <i class="fas fa-search"></i> |
| </button> |
| <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20"> |
| <i class="fas fa-heart"></i> |
| </button> |
| <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20"> |
| <i class="fas fa-shopping-cart"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <div class="bg-gradient-to-r from-orange-400 to-red-400 text-white py-8"> |
| <div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-6 md:mb-0"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">OS MAIS VENDIDOS DA SHOPEE</h2> |
| <p class="text-lg mb-6">Descubra os produtos mais populares e com melhor avaliação da maior plataforma de e-commerce do sudeste asiático</p> |
| <button class="bg-white text-orange-500 font-bold py-3 px-6 rounded-full hover:bg-gray-100 transition"> |
| Ver Ofertas <i class="fas fa-arrow-right ml-2"></i> |
| </button> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <img src="https://i.imgur.com/JtQ6jJZ.png" alt="Shopee products" class="w-full max-w-md"> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <main class="container mx-auto px-4 py-8"> |
| |
| <div class="mb-10"> |
| <h3 class="text-2xl font-bold mb-6 text-gray-800">Categorias Populares</h3> |
| <div class="flex flex-wrap gap-3"> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-mobile-alt mr-2"></i> Celulares |
| </button> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-laptop mr-2"></i> Eletrônicos |
| </button> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-tshirt mr-2"></i> Moda |
| </button> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-home mr-2"></i> Casa |
| </button> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-child mr-2"></i> Infantil |
| </button> |
| <button class="category-chip bg-white border border-gray-200 px-4 py-2 rounded-full font-medium text-gray-700 hover:shadow"> |
| <i class="fas fa-utensils mr-2"></i> Alimentos |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="mb-10"> |
| <div class="flex justify-between items-center mb-6"> |
| <h3 class="text-2xl font-bold text-gray-800">🔥 Mais Vendidos Hoje</h3> |
| <a href="#" class="text-orange-500 font-medium hover:underline">Ver todos</a> |
| </div> |
| |
| <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 overflow-hidden shadow-md transition duration-300 relative"> |
| <div class="absolute top-2 left-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> |
| -72% |
| </div> |
| <div class="absolute top-2 right-2 bg-white bg-opacity-90 rounded-full p-1"> |
| <i class="fas fa-heart text-gray-400 hover:text-red-500"></i> |
| </div> |
| <img src="https://i.imgur.com/9D7yKQj.jpg" alt="Fone Bluetooth" class="w-full h-48 object-contain p-4"> |
| <div class="p-4"> |
| <div class="flex items-center mb-1"> |
| <div class="flex text-yellow-400 text-sm"> |
| <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> |
| <span class="text-gray-500 text-xs ml-1">(4.8)</span> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Fone Bluetooth TWS 5.3 com ANC</h4> |
| <div class="flex items-center mb-2"> |
| <span class="text-red-500 font-bold text-lg">R$ 89,90</span> |
| <span class="text-gray-400 text-sm line-through ml-2">R$ 320,00</span> |
| </div> |
| <div class="flex items-center text-xs text-gray-500"> |
| <span>+800 vendidos</span> |
| <div class="ml-auto bg-orange-100 text-orange-500 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-bolt mr-1"></i> Flash |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 relative hot-item"> |
| <div class="absolute top-2 left-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> |
| -56% |
| </div> |
| <div class="absolute top-0 right-0 bg-red-500 text-white text-xs font-bold px-2 py-1 discount-badge w-12 text-center"> |
| TOP |
| </div> |
| <img src="https://i.imgur.com/JQlY8hS.jpg" alt="Smartwatch" class="w-full h-48 object-contain p-4"> |
| <div class="p-4"> |
| <div class="flex items-center mb-1"> |
| <div class="flex text-yellow-400 text-sm"> |
| <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> |
| <span class="text-gray-500 text-xs ml-1">(4.9)</span> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Smartwatch X8 Pro com GPS</h4> |
| <div class="flex items-center mb-2"> |
| <span class="text-red-500 font-bold text-lg">R$ 159,90</span> |
| <span class="text-gray-400 text-sm line-through ml-2">R$ 360,00</span> |
| </div> |
| <div class="flex items-center text-xs text-gray-500"> |
| <span>+1.2K vendidos</span> |
| <div class="ml-auto bg-green-100 text-green-500 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-check mr-1"></i> Oficial |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 relative"> |
| <div class="absolute top-2 left-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> |
| -65% |
| </div> |
| <img src="https://i.imgur.com/vYJ3HjU.jpg" alt="Power Bank" class="w-full h-48 object-contain p-4"> |
| <div class="p-4"> |
| <div class="flex items-center mb-1"> |
| <div class="flex text-yellow-400 text-sm"> |
| <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="far fa-star"></i> |
| </div> |
| <span class="text-gray-500 text-xs ml-1">(4.2)</span> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Power Bank 20000mAh 18W PD</h4> |
| <div class="flex items-center mb-2"> |
| <span class="text-red-500 font-bold text-lg">R$ 79,90</span> |
| <span class="text-gray-400 text-sm line-through ml-2">R$ 229,00</span> |
| </div> |
| <div class="flex items-center text-xs text-gray-500"> |
| <span>+500 vendidos</span> |
| <div class="ml-auto bg-blue-100 text-blue-500 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-shipping-fast mr-1"></i> Grátis |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 relative"> |
| <div class="absolute top-2 left-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> |
| -48% |
| </div> |
| <img src="https://i.imgur.com/5zJwWmY.jpg" alt="Air Fryer" class="w-full h-48 object-contain p-4"> |
| <div class="p-4"> |
| <div class="flex items-center mb-1"> |
| <div class="flex text-yellow-400 text-sm"> |
| <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> |
| <span class="text-gray-500 text-xs ml-1">(4.7)</span> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Air Fryer 5L Digital 1500W</h4> |
| <div class="flex items-center mb-2"> |
| <span class="text-red-500 font-bold text-lg">R$ 399,90</span> |
| <span class="text-gray-400 text-sm line-through ml-2">R$ 769,00</span> |
| </div> |
| <div class="flex items-center text-xs text-gray-500"> |
| <span>+350 vendidos</span> |
| <div class="ml-auto bg-purple-100 text-purple-500 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-crown mr-1"></i> Premium |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mb-10"> |
| <div class="flex justify-between items-center mb-6"> |
| <h3 class="text-2xl font-bold text-gray-800">📈 Tendências Agora</h3> |
| <a href="#" class="text-orange-500 font-medium hover:underline">Ver todos</a> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative"> |
| <img src="https://i.imgur.com/qH1lLQf.jpg" alt="Tendência" class="w-full h-48 object-cover"> |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> |
| <h4 class="text-white font-bold text-lg">Moda Verão 2023</h4> |
| <p class="text-white text-sm">+1.5K produtos vendidos hoje</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center mb-3"> |
| <span class="text-gray-700 font-medium">Itens em alta</span> |
| <span class="text-green-500 text-sm font-medium">+45% hoje</span> |
| </div> |
| <div class="flex flex-wrap gap-2"> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Vestidos</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Biquínis</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Óculos de sol</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative"> |
| <img src="https://i.imgur.com/7vQD0fM.jpg" alt="Tendência" class="w-full h-48 object-cover"> |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> |
| <h4 class="text-white font-bold text-lg">Tecnologia</h4> |
| <p class="text-white text-sm">+2.3K produtos vendidos hoje</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center mb-3"> |
| <span class="text-gray-700 font-medium">Itens em alta</span> |
| <span class="text-green-500 text-sm font-medium">+68% hoje</span> |
| </div> |
| <div class="flex flex-wrap gap-2"> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Fones Bluetooth</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Smartwatches</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Tablets</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative"> |
| <img src="https://i.imgur.com/3tM9L1G.jpg" alt="Tendência" class="w-full h-48 object-cover"> |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> |
| <h4 class="text-white font-bold text-lg">Casa e Cozinha</h4> |
| <p class="text-white text-sm">+890 produtos vendidos hoje</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center mb-3"> |
| <span class="text-gray-700 font-medium">Itens em alta</span> |
| <span class="text-green-500 text-sm font-medium">+32% hoje</span> |
| </div> |
| <div class="flex flex-wrap gap-2"> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Air Fryer</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Panelas</span> |
| <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Utensílios</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mb-10 bg-gradient-to-r from-orange-50 to-red-50 rounded-xl p-6"> |
| <div class="flex justify-between items-center mb-6"> |
| <div> |
| <h3 class="text-2xl font-bold text-gray-800">⚡ Flash Sale</h3> |
| <p class="text-gray-600">Ofertas relâmpago por tempo limitado</p> |
| </div> |
| <div class="flex items-center bg-red-500 text-white px-4 py-2 rounded-full"> |
| <i class="fas fa-clock mr-2"></i> |
| <span id="countdown">12:34:56</span> |
| </div> |
| </div> |
| |
| <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> |
| |
| <div class="bg-white rounded-lg p-3 shadow-sm text-center"> |
| <div class="relative mb-2"> |
| <img src="https://i.imgur.com/9D7yKQj.jpg" alt="Flash sale" class="w-full h-24 object-contain mx-auto"> |
| <div class="absolute -top-2 -right-2 bg-red-500 text-white text-xs font-bold w-6 h-6 rounded-full flex items-center justify-center"> |
| -72% |
| </div> |
| </div> |
| <h4 class="font-medium text-sm text-gray-800 mb-1">Fone Bluetooth</h4> |
| <div class="text-red-500 font-bold text-sm">R$ 89,90</div> |
| <div class="text-gray-400 text-xs line-through">R$ 320,00</div> |
| <div class="mt-2"> |
| <div class="w-full bg-gray-200 rounded-full h-1.5"> |
| <div class="bg-red-500 h-1.5 rounded-full sold-bar" style="width: 85%"></div> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">85% vendido</div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-3 shadow-sm text-center"> |
| <div class="relative mb-2"> |
| <img src="https://i.imgur.com/JQlY8hS.jpg" alt="Flash sale" class="w-full h-24 object-contain mx-auto"> |
| <div class="absolute -top-2 -right-2 bg-red-500 text-white text-xs font-bold w-6 h-6 rounded-full flex items-center justify-center"> |
| -56% |
| </div> |
| </div> |
| <h4 class="font-medium text-sm text-gray-800 mb-1">Smartwatch</h4> |
| <div class="text-red-500 font-bold text-sm">R$ 159,90</div> |
| <div class="text-gray-400 text-xs line-through">R$ 360,00</div> |
| <div class="mt-2"> |
| <div class="w-full bg-gray-200 rounded-full h-1.5"> |
| <div class="bg-red-500 h-1.5 rounded-full sold-bar" style="width: 72%"></div> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">72% vendido</div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-3 shadow-sm text-center"> |
| <div class="relative mb-2"> |
| <img src="https://i.imgur.com/vYJ3HjU.jpg" alt="Flash sale" class="w-full h-24 object-contain mx-auto"> |
| <div class="absolute -top-2 -right-2 bg-red-500 text-white text-xs font-bold w-6 h-6 rounded-full flex items-center justify-center"> |
| -65% |
| </div> |
| </div> |
| <h4 class="font-medium text-sm text-gray-800 mb-1">Power Bank</h4> |
| <div class="text-red-500 font-bold text-sm">R$ 79,90</div> |
| <div class="text-gray-400 text-xs line-through">R$ 229,00</div> |
| <div class="mt-2"> |
| <div class="w-full bg-gray-200 rounded-full h-1.5"> |
| <div class="bg-red-500 h-1.5 rounded-full sold-bar" style="width: 63%"></div> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">63% vendido</div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-3 shadow-sm text-center"> |
| <div class="relative mb-2"> |
| <img src="https://i.imgur.com/5zJwWmY.jpg" alt="Flash sale" class="w-full h-24 object-contain mx-auto"> |
| <div class="absolute -top-2 -right-2 bg-red-500 text-white text-xs font-bold w-6 h-6 rounded-full flex items-center justify-center"> |
| -48% |
| </div> |
| </div> |
| <h4 class="font-medium text-sm text-gray-800 mb-1">Air Fryer</h4> |
| <div class="text-red-500 font-bold text-sm">R$ 399,90</div> |
| <div class="text-gray-400 text-xs line-through">R$ 769,00</div> |
| <div class="mt-2"> |
| <div class="w-full bg-gray-200 rounded-full h-1.5"> |
| <div class="bg-red-500 h-1.5 rounded-full sold-bar" style="width: 45%"></div> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">45% vendido</div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-3 shadow-sm text-center"> |
| <div class="relative mb-2"> |
| <img src="https://i.imgur.com/9D7yKQj.jpg" alt="Flash sale" class="w-full h-24 object-contain mx-auto"> |
| <div class="absolute -top-2 -right-2 bg-red-500 text-white text-xs font-bold w-6 h-6 rounded-full flex items-center justify-center"> |
| -60% |
| </div> |
| </div> |
| <h4 class="font-medium text-sm text-gray-800 mb-1">Fone TWS</h4> |
| <div class="text-red-500 font-bold text-sm">R$ 99,90</div> |
| <div class="text-gray-400 text-xs line-through">R$ 249,00</div> |
| <div class="mt-2"> |
| <div class="w-full bg-gray-200 rounded-full h-1.5"> |
| <div class="bg-red-500 h-1.5 rounded-full sold-bar" style="width: 78%"></div> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">78% vendido</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mb-10"> |
| <div class="flex justify-between items-center mb-6"> |
| <h3 class="text-2xl font-bold text-gray-800">🏆 Lojas Top</h3> |
| <a href="#" class="text-orange-500 font-medium hover:underline">Ver todas</a> |
| </div> |
| |
| <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> |
| |
| <div class="bg-white rounded-lg p-4 shadow-sm text-center hover:shadow-md transition"> |
| <div class="w-16 h-16 mx-auto mb-3 rounded-full bg-gradient-to-r from-yellow-400 to-orange-400 flex items-center justify-center text-white text-2xl"> |
| XM |
| </div> |
| <h4 class="font-medium text-gray-800">Xiaomi Official</h4> |
| <div class="flex justify-center text-yellow-400 text-xs mt-1"> |
| <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 class="text-xs text-gray-500 mt-1">+50K vendas</div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-4 shadow-sm text-center hover:shadow-md transition"> |
| <div class="w-16 h-16 mx-auto mb-3 rounded-full bg-gradient-to-r from-blue-400 to-blue-600 flex items-center justify-center text-white text-2xl"> |
| RS |
| </div> |
| <h4 class="font-medium text-gray-800">Real Store</h4> |
| <div class="flex justify-center text-yellow-400 text-xs mt-1"> |
| <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 class="text-xs text-gray-500 mt-1">+32K vendas</div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-4 shadow-sm text-center hover:shadow-md transition"> |
| <div class="w-16 h-16 mx-auto mb-3 rounded-full bg-gradient-to-r from-green-400 to-green-600 flex items-center justify-center text-white text-2xl"> |
| TC |
| </div> |
| <h4 class="font-medium text-gray-800">Tech Center</h4> |
| <div class="flex justify-center text-yellow-400 text-xs mt-1"> |
| <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="far fa-star"></i> |
| </div> |
| <div class="text-xs text-gray-500 mt-1">+28K vendas</div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-4 shadow-sm text-center hover:shadow-md transition"> |
| <div class="w-16 h-16 mx-auto mb-3 rounded-full bg-gradient-to-r from-purple-400 to-purple-600 flex items-center justify-center text-white text-2xl"> |
| FG |
| </div> |
| <h4 class="font-medium text-gray-800">Fashion Girl</h4> |
| <div class="flex justify-center text-yellow-400 text-xs mt-1"> |
| <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 class="text-xs text-gray-500 mt-1">+25K vendas</div> |
| </div> |
| |
| |
| <div class="bg-white rounded-lg p-4 shadow-sm text-center hover:shadow-md transition"> |
| <div class="w-16 h-16 mx-auto mb-3 rounded-full bg-gradient-to-r from-red-400 to-red-600 flex items-center justify-center text-white text-2xl"> |
| HC |
| </div> |
| <h4 class="font-medium text-gray-800">Home Center</h4> |
| <div class="flex justify-center text-yellow-400 text-xs mt-1"> |
| <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 class="text-xs text-gray-500 mt-1">+40K vendas</div> |
| </div> |
| </div> |
| </div> |
| </main> |
|
|
| |
| <div class="bg-gray-100 py-10"> |
| <div class="container mx-auto px-4 text-center"> |
| <h3 class="text-2xl font-bold text-gray-800 mb-2">Receba as melhores ofertas</h3> |
| <p class="text-gray-600 mb-6">Cadastre-se para receber os produtos mais vendidos e promoções exclusivas</p> |
| <div class="max-w-md mx-auto flex"> |
| <input type="email" placeholder="Seu melhor e-mail" class="flex-grow px-4 py-3 rounded-l-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-orange-500"> |
| <button class="bg-orange-500 hover:bg-orange-600 text-white font-bold px-6 py-3 rounded-r-lg transition"> |
| Cadastrar <i class="fas fa-paper-plane ml-2"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-gray-800 text-white py-8"> |
| <div class="container mx-auto px-4"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Shopee Top</h4> |
| <p class="text-gray-400 text-sm">Os produtos mais vendidos e melhores avaliações da Shopee em um só lugar.</p> |
| <div class="flex space-x-4 mt-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> |
| </div> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Categorias</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Eletrônicos</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Moda</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Casa e Cozinha</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Beleza</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Esportes</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Ajuda</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Como comprar</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Frete e entrega</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Devoluções</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Pagamentos</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Contato</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Baixe o app</h4> |
| <div class="flex flex-col space-y-3"> |
| <a href="#" class="bg-black text-white px-4 py-2 rounded-lg flex items-center justify-center"> |
| <i class="fab fa-apple mr-2"></i> App Store |
| </a> |
| <a href="#" class="bg-black text-white px-4 py-2 rounded-lg flex items-center justify-center"> |
| <i class="fab fa-google-play mr-2"></i> Google Play |
| </a> |
| </div> |
| </div> |
| </div> |
| <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400 text-sm"> |
| <p>© 2023 Shopee Top. Todos os direitos reservados.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| function updateCountdown() { |
| const now = new Date(); |
| const end = new Date(); |
| end.setHours(23, 59, 59, 999); |
| |
| const diff = end - now; |
| |
| const hours = Math.floor(diff / (1000 * 60 * 60)); |
| const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60)); |
| const seconds = Math.floor((diff % (1000 * 60)) / 1000); |
| |
| document.getElementById('countdown').textContent = |
| `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`; |
| } |
| |
| setInterval(updateCountdown, 1000); |
| updateCountdown(); |
| |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const soldBars = document.querySelectorAll('.sold-bar'); |
| soldBars.forEach(bar => { |
| |
| void bar.offsetWidth; |
| bar.style.width = bar.style.width; |
| }); |
| }); |
| |
| |
| document.querySelectorAll('.product-card').forEach(card => { |
| card.addEventListener('mouseenter', function() { |
| this.style.transform = 'translateY(-5px)'; |
| this.style.boxShadow = '0 10px 25px -5px rgba(0, 0, 0, 0.1)'; |
| }); |
| |
| card.addEventListener('mouseleave', function() { |
| this.style.transform = ''; |
| this.style.boxShadow = ''; |
| }); |
| }); |
| </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=clebersonrodrigues75/https-huggingface-co-clebersonrodrigues75" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |