mini-racer-rally / index.html
mvbhr's picture
criar página do produto land hover discovery
14341cd verified
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrinho 4x4 - Controle Remoto 4x4</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;700;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Nunito', sans-serif;
background-color: #f0f9ff;
overflow-x: hidden;
}
.header-font {
font-family: 'Fredoka One', cursive;
}
.product-card {
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.btn-primary {
background: linear-gradient(135deg, #ff6b6b, #ffa502);
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
.btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}
.sale-badge {
background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.feature-icon {
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
}
.modern-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
</style>
</head>
<body class="text-gray-800">
<!-- Header -->
<header class="hero-bg text-white py-4 px-6 sticky top-0 z-50 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="truck" class="w-8 h-8"></i>
<h1 class="header-font text-3xl">Carrinho 4x4</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="font-bold hover:text-yellow-300 transition">Início</a>
<a href="#" class="font-bold hover:text-yellow-300 transition">Produtos</a>
<a href="#" class="font-bold hover:text-yellow-300 transition">Promoções</a>
<a href="#" class="font-bold hover:text-yellow-300 transition">Contato</a>
</nav>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-pink-500 transition">
<i data-feather="search"></i>
</button>
<button class="p-2 rounded-full hover:bg-pink-500 transition relative">
<i data-feather="shopping-cart"></i>
<span class="absolute top-0 right-0 bg-red-500 text-white rounded-full w-5 h-5 flex items-center justify-center text-xs">3</span>
</button>
<button class="md:hidden p-2 rounded-full hover:bg-pink-500 transition">
<i data-feather="menu"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="modern-gradient py-16 md:py-24 relative overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div class="grid grid-cols-4 gap-8">
<img src="http://static.photos/toy/320x240/1" alt="" class="rounded-full">
<img src="http://static.photos/toy/320x240/2" alt="" class="rounded-full mt-8">
<img src="http://static.photos/toy/320x240/3" alt="" class="rounded-full">
<img src="http://static.photos/toy/320x240/4" alt="" class="rounded-full mt-8">
</div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="header-font text-4xl md:text-6xl text-white leading-tight mb-4">Carrinhos 4x4 <br>para Aventuras Épicas!</h2>
<p class="text-xl text-white mb-8">Descubra nossa coleção de veículos off-road com tração nas quatro rodas, luzes LED e controle remoto de alta performance.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="btn-primary text-white font-bold py-4 px-8 rounded-full text-lg transition duration-300">Comprar Agora</button>
<button class="bg-white text-purple-600 font-bold py-4 px-8 rounded-full text-lg hover:bg-gray-100 transition duration-300">Ver Promoções</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="absolute -top-6 -right-6 w-64 h-64 bg-blue-300 rounded-full opacity-30 animate-ping"></div>
<a href="bronco-4x4-extreme.html" class="relative bg-white rounded-3xl p-6 shadow-2xl transform rotate-3 block">
<img src="https://bucket.temp75.host.dev.br/4x4/bronco-4x4.jpeg" alt="Carrinho 4x4 Bronco" class="w-full h-auto rounded-2xl">
<div class="mt-4">
<h3 class="font-bold text-xl">Bronco 4x4 Extreme</h3>
<div class="flex items-center mt-2">
<span class="text-gray-500 line-through mr-2">R$631,39</span>
<span class="sale-badge text-white px-3 py-1 rounded-full text-sm font-bold">50% OFF</span>
</div>
<p class="text-2xl font-bold text-purple-600">R$315,69</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="py-16 bg-gradient-to-br from-blue-50 to-purple-50">
<div class="container mx-auto px-6">
<h2 class="header-font text-4xl text-center mb-12 text-purple-600">Nossos Carrinhos 4x4 Favoritos</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<!-- Product 1 -->
<div class="product-card rounded-3xl overflow-hidden shadow-xl border-4 border-white">
<div class="p-6">
<a href="bronco-4x4-extreme.html">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-64 flex items-center justify-center">
<img src="https://bucket.temp75.host.dev.br/4x4/bronco-4x4.jpeg" alt="Bronco 4x4" class="w-full h-full object-contain">
</div>
</a>
<div class="mt-6">
<span class="inline-block bg-gradient-to-r from-green-400 to-blue-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Mais Vendido</span>
<h3 class="font-bold text-xl mt-2">Bronco 4x4 Extreme</h3>
<p class="text-gray-600 mt-2">Veículo off-road com tração nas quatro rodas e luzes LED</p>
<div class="flex items-center mt-4">
<span class="text-gray-500 line-through mr-2">R$631,39</span>
<span class="bg-gradient-to-r from-red-400 to-pink-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Poupe R$315,70</span>
</div>
<p class="text-2xl font-bold text-purple-600 mt-2">R$315,69</p>
<a href="bronco-4x4-extreme.html" class="mt-4 w-full btn-primary text-white font-bold py-3 rounded-full transition duration-300 inline-block text-center">Ver Detalhes</a>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card rounded-3xl overflow-hidden shadow-xl border-4 border-white">
<div class="p-6">
<a href="jeep-wrangler-4x4.html">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-64 flex items-center justify-center">
<img src="https://bucket.temp75.host.dev.br/4x4/jeep-4x4.jpeg" alt="Jeep 4x4" class="w-full h-full object-contain">
</div>
</a>
<div class="mt-6">
<span class="inline-block bg-gradient-to-r from-yellow-400 to-orange-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Novidade</span>
<h3 class="font-bold text-xl mt-2">Jeep Wrangler 4x4</h3>
<p class="text-gray-600 mt-2">Modelo de escalada com suspensão independente</p>
<div class="flex items-center mt-4">
<span class="text-gray-500 line-through mr-2">R$589,90</span>
<span class="bg-gradient-to-r from-red-400 to-pink-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Poupe R$200,00</span>
</div>
<p class="text-2xl font-bold text-purple-600 mt-2">R$389,90</p>
<a href="jeep-wrangler-4x4.html" class="mt-4 w-full btn-primary text-white font-bold py-3 rounded-full transition duration-300 inline-block text-center">Ver Detalhes</a>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card rounded-3xl overflow-hidden shadow-xl border-4 border-white">
<div class="p-6">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-64 flex items-center justify-center">
<img src="https://bucket.temp75.host.dev.br/4x4/landhover-4x4.jpeg" alt="Land Hover 4x4" class="w-full h-full object-contain">
</div>
<div class="mt-6">
<span class="inline-block bg-gradient-to-r from-purple-400 to-indigo-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Edição Especial</span>
<h3 class="font-bold text-xl mt-2">Land Hover Discovery</h3>
<p class="text-gray-600 mt-2">Veículo com controle de cruzeiro e ajuste fino da direção</p>
<div class="flex items-center mt-4">
<span class="text-gray-500 line-through mr-2">R$720,00</span>
<span class="bg-gradient-to-r from-red-400 to-pink-500 text-white text-xs px-3 py-1 rounded-full font-semibold">Poupe R$270,00</span>
</div>
<p class="text-2xl font-bold text-purple-600 mt-2">R$450,00</p>
<a href="land-hover-discovery.html" class="mt-4 w-full btn-primary text-white font-bold py-3 rounded-full transition duration-300 inline-block text-center">Ver Detalhes</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500 text-white">
<div class="container mx-auto px-6">
<h2 class="header-font text-4xl text-center mb-12">Por que nossos carrinhos são incríveis?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="flex flex-col items-center text-center">
<div class="feature-icon w-24 h-24 rounded-full flex items-center justify-center mb-6">
<i data-feather="zap" class="w-12 h-12 text-white"></i>
</div>
<h3 class="header-font text-2xl mb-3">Alta Performance</h3>
<p class="text-lg">Velocidade de até 15 km/h com controle preciso em todos os terrenos</p>
</div>
<div class="flex flex-col items-center text-center">
<div class="feature-icon w-24 h-24 rounded-full flex items-center justify-center mb-6">
<i data-feather="sun" class="w-12 h-12 text-white"></i>
</div>
<h3 class="header-font text-2xl mb-3">Luzes LED</h3>
<p class="text-lg">Faróis dianteiros, lanternas traseiras e iluminação de telhado colorida</p>
</div>
<div class="flex flex-col items-center text-center">
<div class="feature-icon w-24 h-24 rounded-full flex items-center justify-center mb-6">
<i data-feather="battery-charging" class="w-12 h-12 text-white"></i>
</div>
<h3 class="header-font text-2xl mb-3">Bateria Duradoura</h3>
<p class="text-lg">Até 25 minutos de diversão contínua com bateria recarregável de 7,4V</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gradient-to-br from-blue-50 to-indigo-50">
<div class="container mx-auto px-6">
<h2 class="header-font text-4xl text-center mb-12 text-purple-600">O que os pais dizem</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="testimonial-card rounded-3xl p-8 shadow-lg">
<div class="flex items-center mb-6">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16"></div>
<div class="ml-4">
<h4 class="font-bold text-lg">Carlos Silva</h4>
<p class="text-purple-600">Pai do João (8 anos)</p>
</div>
</div>
<p class="text-lg italic">"Meu filho passa horas brincando com o Bronco 4x4! As luzes LED deixam as corridas ainda mais emocionantes à noite."</p>
<div class="flex mt-4 text-yellow-400">
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
</div>
</div>
<div class="testimonial-card rounded-3xl p-8 shadow-lg">
<div class="flex items-center mb-6">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16"></div>
<div class="ml-4">
<h4 class="font-bold text-lg">Mariana Costa</h4>
<p class="text-purple-600">Mãe da Sofia (6 anos)</p>
</div>
</div>
<p class="text-lg italic">"A qualidade dos materiais é excelente! O Jeep Wrangler aguenta todas as quedas e ainda continua funcionando perfeitamente."</p>
<div class="flex mt-4 text-yellow-400">
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gradient-to-r from-indigo-600 to-purple-700 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="header-font text-4xl mb-6">Pronto para a aventura?</h2>
<p class="text-xl max-w-2xl mx-auto mb-10">Junte-se a milhares de crianças que já escolheram nossos carrinhos 4x4 para suas jornadas épicas!</p>
<button class="btn-primary text-white font-bold py-4 px-12 rounded-full text-xl transition duration-300">Explorar Todos os Modelos</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="header-font text-2xl mb-4">Carrinho 4x4</h3>
<p class="text-gray-400">Carrinhos 4x4 de alta performance para aventuras infantis inesquecíveis.</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Links Rápidos</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">Início</a></li>
<li><a href="#" class="hover:text-white transition">Produtos</a></li>
<li><a href="#" class="hover:text-white transition">Promoções</a></li>
<li><a href="#" class="hover:text-white transition">Sobre Nós</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Categorias</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">Carrinhos 4x4</a></li>
<li><a href="#" class="hover:text-white transition">Controles Remotos</a></li>
<li><a href="#" class="hover:text-white transition">Acessórios</a></li>
<li><a href="#" class="hover:text-white transition">Peças de Reposição</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Contato</h4>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i data-feather="mail" class="mr-2 mt-1 w-5 h-5"></i>
<span>contato@miniracerrally.com.br</span>
</li>
<li class="flex items-start">
<i data-feather="phone" class="mr-2 mt-1 w-5 h-5"></i>
<span>(11) 99999-9999</span>
</li>
<li class="flex items-start">
<i data-feather="map-pin" class="mr-2 mt-1 w-5 h-5"></i>
<span>São Paulo, SP</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-500">
<p>&copy; 2023 Carrinho 4x4. Todos os direitos reservados.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
feather.replace();
</script>
</body>
</html>