Spaces:
Running
Running
File size: 34,422 Bytes
c28dc3c |
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 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEMU Brasil - Ofertas Incríveis e Frete Grátis</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
padding-bottom: 60px; /* Space for fixed footer */
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.promo-badge {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.carousel-item {
transition: opacity 0.5s ease-in-out;
}
.tab-active {
position: relative;
}
.tab-active:after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
right: 0;
height: 3px;
background-color: #e30613;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-red-600 text-white sticky top-0 z-50 shadow-md">
<div class="container mx-auto px-4 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Temu_logo.svg/2560px-Temu_logo.svg.png" alt="TEMU Logo" class="h-8">
</div>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-red-700">
<i class="fas fa-microphone text-lg"></i>
</button>
<button class="p-2 rounded-full hover:bg-red-700">
<i class="fas fa-camera text-lg"></i>
</button>
<button class="p-2 rounded-full hover:bg-red-700">
<i class="fas fa-search text-lg"></i>
</button>
</div>
</div>
<div class="mt-3 relative">
<input type="text" placeholder="Pesquise milhões de produtos..."
class="w-full py-3 px-4 pr-12 rounded-lg text-gray-800 focus:outline-none focus:ring-2 focus:ring-red-400">
<button class="absolute right-3 top-3 text-gray-500 hover:text-red-600">
<i class="fas fa-search"></i>
</button>
</div>
</div>
</header>
<!-- Categories Navigation -->
<nav class="bg-white shadow-sm sticky top-16 z-40 overflow-x-auto">
<div class="container mx-auto px-4">
<div class="flex space-x-6 whitespace-nowrap py-3">
<a href="#" class="font-medium text-red-600 tab-active">Tudo</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Mulheres</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Homens</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Página Inicial</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Esportes</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Eletrônicos</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Casa e Jardim</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Beleza</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Brinquedos</a>
<a href="#" class="font-medium text-gray-700 hover:text-red-600">Automóveis</a>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container mx-auto px-4 py-6">
<!-- Carousel Banner -->
<section class="mb-8 relative">
<div class="carousel-container relative overflow-hidden rounded-xl h-64 md:h-80 lg:h-96">
<div class="carousel-item absolute inset-0 bg-gradient-to-r from-red-500 to-yellow-400 flex items-center">
<div class="w-full md:w-1/2 px-8 text-white">
<h2 class="text-2xl md:text-3xl lg:text-4xl font-bold mb-2">1º Aniversário TEMU</h2>
<p class="text-lg mb-4">Comemore com seleções especiais e descontos imperdíveis!</p>
<button class="bg-black text-white px-6 py-2 rounded-lg font-medium hover:bg-gray-900 transition">
COMPRE AGORA
</button>
</div>
<div class="hidden md:block md:w-1/2">
<img src="https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Promoção" class="h-full w-full object-cover">
</div>
</div>
<div class="carousel-item absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-400 flex items-center opacity-0">
<div class="w-full md:w-1/2 px-8 text-white">
<h2 class="text-2xl md:text-3xl lg:text-4xl font-bold mb-2">Ofertas Relâmpago</h2>
<p class="text-lg mb-4">Descontos de até 90% por tempo limitado!</p>
<button class="bg-black text-white px-6 py-2 rounded-lg font-medium hover:bg-gray-900 transition">
COMPRE AGORA
</button>
</div>
<div class="hidden md:block md:w-1/2">
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1399&q=80"
alt="Promoção" class="h-full w-full object-cover">
</div>
</div>
<div class="carousel-item absolute inset-0 bg-gradient-to-r from-green-500 to-teal-400 flex items-center opacity-0">
<div class="w-full md:w-1/2 px-8 text-white">
<h2 class="text-2xl md:text-3xl lg:text-4xl font-bold mb-2">Farmland</h2>
<p class="text-lg mb-4">Itens a partir de R$0, aproveite!</p>
<button class="bg-black text-white px-6 py-2 rounded-lg font-medium hover:bg-gray-900 transition">
COMPRE AGORA
</button>
</div>
<div class="hidden md:block md:w-1/2">
<img src="https://images.unsplash.com/photo-1498837167922-ddd27525d352?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Promoção" class="h-full w-full object-cover">
</div>
</div>
</div>
<div class="flex justify-center space-x-2 mt-4">
<button class="carousel-dot w-3 h-3 rounded-full bg-red-600"></button>
<button class="carousel-dot w-3 h-3 rounded-full bg-gray-300"></button>
<button class="carousel-dot w-3 h-3 rounded-full bg-gray-300"></button>
</div>
</section>
<!-- Trust Badges -->
<section class="mb-8 bg-white rounded-xl shadow-sm p-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="flex items-center space-x-2">
<div class="bg-red-100 p-2 rounded-full">
<i class="fas fa-truck text-red-600"></i>
</div>
<div>
<p class="font-medium text-sm">Frete Grátis</p>
<p class="text-xs text-gray-500">Acima de R$49</p>
</div>
</div>
<div class="flex items-center space-x-2">
<div class="bg-red-100 p-2 rounded-full">
<i class="fas fa-shield-alt text-red-600"></i>
</div>
<div>
<p class="font-medium text-sm">A TEMU cobre o ICMS</p>
<p class="text-xs text-gray-500">Sem taxas extras</p>
</div>
</div>
<div class="flex items-center space-x-2">
<div class="bg-red-100 p-2 rounded-full">
<i class="fas fa-gift text-red-600"></i>
</div>
<div>
<p class="font-medium text-sm">R$10 de crédito</p>
<p class="text-xs text-gray-500">Por atraso</p>
</div>
</div>
<div class="flex items-center space-x-2">
<div class="bg-red-100 p-2 rounded-full">
<i class="fas fa-lock text-red-600"></i>
</div>
<div>
<p class="font-medium text-sm">Pagamentos seguros</p>
<p class="text-xs text-gray-500">100% protegido</p>
</div>
</div>
</div>
</section>
<!-- Promo Blocks -->
<section class="mb-8">
<h2 class="text-xl font-bold mb-4">Ofertas Especiais</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="bg-gradient-to-r from-yellow-400 to-yellow-300 rounded-xl p-4 flex items-center justify-between">
<div>
<h3 class="font-bold text-lg">100% OFF</h3>
<p class="text-sm">Oferta Misteriosa</p>
</div>
<img src="https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Oferta" class="h-16 w-16 object-cover rounded-lg">
</div>
<div class="bg-gradient-to-r from-blue-400 to-blue-300 rounded-xl p-4 flex items-center justify-between">
<div>
<h3 class="font-bold text-lg">Ofertas Relâmpago</h3>
<p class="text-sm">Termina em 2h 15m</p>
</div>
<img src="https://images.unsplash.com/photo-1555774698-0b77e0d5fac6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Oferta" class="h-16 w-16 object-cover rounded-lg">
</div>
<div class="bg-gradient-to-r from-green-400 to-green-300 rounded-xl p-4 flex items-center justify-between">
<div>
<h3 class="font-bold text-lg">Farmland</h3>
<p class="text-sm">Itens a R$0</p>
</div>
<img src="https://images.unsplash.com/photo-1584466977773-e625c37cdd50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="Oferta" class="h-16 w-16 object-cover rounded-lg">
</div>
</div>
</section>
<!-- Best Sellers -->
<section class="mb-8">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-bold">Mais Vendidos</h2>
<a href="#" class="text-red-600 text-sm font-medium">Ver tudo</a>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
<!-- Product 1 -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1546868871-7041f2a55e12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1364&q=80"
alt="Smartwatch" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-30%</div>
<div class="absolute top-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded-full">Resta(m) apenas 7</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Smartwatch Inteligente Tela HD</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$67,28</span>
<span class="text-gray-500 text-xs line-through ml-2">R$96,12</span>
</div>
<p class="text-gray-500 text-xs">4,6 mil vendidos</p>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Câmera Instantânea" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-yellow-500 text-white text-xs px-2 py-1 rounded-full">Anúncio</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Câmera Instantânea Polaroid</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$129,90</span>
</div>
<p class="text-gray-500 text-xs">2,3 mil vendidos</p>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Tênis Esportivo" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-50%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Tênis Esportivo Leve</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$89,99</span>
<span class="text-gray-500 text-xs line-through ml-2">R$179,98</span>
</div>
<p class="text-gray-500 text-xs">8,1 mil vendidos</p>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1560343090-f0409e92791a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1528&q=80"
alt="Fone Bluetooth" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded-full">Resta(m) apenas 3</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Fone Bluetooth Sem Fio</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$45,50</span>
</div>
<p class="text-gray-500 text-xs">5,7 mil vendidos</p>
</div>
</div>
<!-- Product 5 -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1399&q=80"
alt="Relógio Masculino" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-25%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Relógio Masculino de Luxo</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$112,40</span>
<span class="text-gray-500 text-xs line-through ml-2">R$149,87</span>
</div>
<p class="text-gray-500 text-xs">3,2 mil vendidos</p>
</div>
</div>
</div>
</section>
<!-- More Sections -->
<section class="mb-8">
<h2 class="text-xl font-bold mb-4">Para Sua Casa</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
<!-- Repeat product cards with home items -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Panela Antiaderente" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-40%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Jogo de Panelas Antiaderente</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$149,90</span>
<span class="text-gray-500 text-xs line-through ml-2">R$249,83</span>
</div>
<p class="text-gray-500 text-xs">1,8 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1567538096630-e0c55bd6374c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="Luminária LED" class="w-full h-48 object-cover">
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Luminária LED Moderna</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$67,90</span>
</div>
<p class="text-gray-500 text-xs">3,5 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1583845112201-7089dd4b85e8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Cortina Blackout" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-yellow-500 text-white text-xs px-2 py-1 rounded-full">Anúncio</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Cortina Blackout Termica</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$39,99</span>
</div>
<p class="text-gray-500 text-xs">4,2 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1567538096631-e0c55bd6374c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="Tapete Moderno" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded-full">Resta(m) apenas 5</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Tapete Moderno Antiderrapante</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$58,75</span>
</div>
<p class="text-gray-500 text-xs">2,9 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1556905055-8f358a7a47b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Jogo de Toalhas" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-60%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Jogo de Toalhas Premium</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$79,90</span>
<span class="text-gray-500 text-xs line-through ml-2">R$199,75</span>
</div>
<p class="text-gray-500 text-xs">6,4 mil vendidos</p>
</div>
</div>
</div>
</section>
<!-- Flash Sale -->
<section class="mb-8 bg-red-600 text-white rounded-xl p-4">
<div class="flex justify-between items-center mb-4">
<div>
<h2 class="text-xl font-bold">Ofertas Relâmpago</h2>
<p class="text-sm">Termina em 02:15:33</p>
</div>
<a href="#" class="text-white text-sm font-medium underline">Ver tudo</a>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
<!-- Repeat product cards with flash sale items -->
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1520390138845-fd2d229dd553?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1489&q=80"
alt="Fone de Ouvido" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-70%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Fone de Ouvido Bluetooth</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$39,90</span>
<span class="text-gray-500 text-xs line-through ml-2">R$132,99</span>
</div>
<p class="text-gray-500 text-xs">7,8 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1594035910387-fea47794261f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1480&q=80"
alt="Ventilador USB" class="w-full h-48 object-cover">
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Ventilador USB Portátil</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$24,99</span>
</div>
<p class="text-gray-500 text-xs">9,1 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1526178613552-2b45c6c302f0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Power Bank" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded-full">Resta(m) apenas 2</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Power Bank 20000mAh</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$59,90</span>
</div>
<p class="text-gray-500 text-xs">5,5 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm 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=1480&q=80"
alt="Xícara Térmica" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-red-600 text-white text-xs px-2 py-1 rounded-full">-55%</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Xícara Térmica 350ml</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$32,50</span>
<span class="text-gray-500 text-xs line-through ml-2">R$72,22</span>
</div>
<p class="text-gray-500 text-xs">3,7 mil vendidos</p>
</div>
</div>
<div class="product-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1585386959984-a4155224a1ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="Perfume" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-yellow-500 text-white text-xs px-2 py-1 rounded-full">Anúncio</div>
</div>
<div class="p-3">
<h3 class="font-medium text-sm mb-1 truncate">Perfume Importado 100ml</h3>
<div class="flex items-center mb-1">
<span class="text-red-600 font-bold">R$89,90</span>
</div>
<p class="text-gray-500 text-xs">1,2 mil vendidos</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="mb-8 bg-gradient-to-r from-red-500 to-red-600 rounded-xl p-6 text-center text-white">
<h2 class="text-2xl font-bold mb-3">Visite a Loja Oficial TEMU</h2>
<p class="mb-4">Aproveite ofertas incríveis com frete grátis e garantia de satisfação!</p>
<a href="https://temu.to/m/uiulhk4i7y3" target="_blank"
class="inline-block bg-black text-white px-8 py-3 rounded-lg font-bold hover:bg-gray-900 transition">
COMPRAR AGORA
</a>
</section>
<!-- More sections would go here -->
<section class="mb-8">
<h2 class="text-xl font-bold mb-4">Produtos em Destaque</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4">
<!-- More product cards -->
</div>
</section>
</main>
<!-- Fixed Footer -->
<footer class="fixed bottom-0 left-0 right-0 bg-white shadow-lg border-t border-gray-200 z-50">
<div class="container mx-auto px-4">
<div class="flex justify-around py-3">
<a href="#" class="flex flex-col items-center text-red-600">
<i class="fas fa-home text-xl"></i>
<span class="text-xs mt-1">Página Inicial</span>
</a>
<a href="#" class="flex flex-col items-center text-gray-600">
<i class="fas fa-search text-xl"></i>
<span class="text-xs mt-1">Categorias</span>
</a>
<a href="#" class="flex flex-col items-center text-gray-600">
<i class="fas fa-user text-xl"></i>
<span class="text-xs mt-1">Você</span>
</a>
<a href="#" class="flex flex-col items-center text-gray-600 relative">
<i class="fas fa-shopping-cart text-xl"></i>
<span class="text-xs mt-1">Carrinho</span>
<span class="absolute -top-1 -right-1 bg-red-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span>
</a>
</div>
</div>
</footer>
<script>
// Simple carousel functionality
document.addEventListener('DOMContentLoaded', function() {
const items = document.querySelectorAll('.carousel-item');
const dots = document.querySelectorAll('.carousel-dot');
let currentIndex = 0;
function showSlide(index) {
items.forEach(item => item.style.opacity = '0');
dots.forEach(dot => dot.classList.replace('bg-red-600', 'bg-gray-300'));
items[index].style.opacity = '1';
dots[index].classList.replace('bg-gray-300', 'bg-red-600');
currentIndex = index;
}
// Initialize first slide
showSlide(0);
// Add click handlers for dots
dots.forEach((dot, index) => {
dot.addEventListener('click', () => showSlide(index));
});
// Auto-rotate slides
setInterval(() => {
const nextIndex = (currentIndex + 1) % items.length;
showSlide(nextIndex);
}, 5000);
// Product card hover effect
const productCards = document.querySelectorAll('.product-card');
productCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.classList.add('shadow-lg');
});
card.addEventListener('mouseleave', () => {
card.classList.remove('shadow-lg');
});
});
});
</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=RicodeFe81/afiliado-temu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |