File size: 23,035 Bytes
aef7e29 |
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 |
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>I Wanna Buy Brasil - Acessórios Automotivos</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">
<script src="https://js.stripe.com/v3/"></script>
<style>
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.ebook-banner {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.instagram-icon:hover {
color: #E1306C;
}
.whatsapp-icon:hover {
color: #25D366;
}
.stripe-button {
background: #635bff !important;
font-family: inherit !important;
}
.stripe-button:hover {
background: #7a73ff !important;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-car text-blue-600 text-2xl mr-2"></i>
<h1 class="text-xl font-bold text-gray-800">I Wanna Buy Brasil</h1>
</div>
<div class="flex items-center space-x-4">
<a href="#produtos" class="text-gray-600 hover:text-blue-600 transition">Produtos</a>
<a href="#ebook" class="text-gray-600 hover:text-blue-600 transition">E-book</a>
<a href="https://instagram.com/iwannabuybrasil" target="_blank" class="instagram-icon text-gray-600 hover:text-blue-600 transition">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="https://wa.me/5541996619309" target="_blank" class="whatsapp-icon text-gray-600 hover:text-blue-600 transition">
<i class="fab fa-whatsapp text-xl"></i>
</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-12 bg-gradient-to-r from-blue-50 to-gray-100">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-4xl font-bold text-gray-800 mb-4">Acessórios Automotivos Premium</h2>
<p class="text-lg text-gray-600 mb-6">Melhore sua experiência ao volante com nossos produtos selecionados que combinam qualidade, estilo e funcionalidade.</p>
<div class="flex space-x-4">
<a href="#produtos" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition">Ver Produtos</a>
<a href="#ebook" class="bg-gray-800 hover:bg-gray-900 text-white px-6 py-3 rounded-lg font-medium transition">Comprar E-book</a>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1494972308805-463bc619d34e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80" alt="Carro com acessórios" class="rounded-lg shadow-xl w-full">
</div>
</div>
</section>
<!-- E-book Banner -->
<section id="ebook" class="ebook-banner py-8 text-white">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center justify-between">
<div class="md:w-2/3 mb-4 md:mb-0">
<h3 class="text-2xl font-bold mb-2">E-book Exclusivo!</h3>
<p class="text-blue-100">"Como Vender Seu Carro no Facebook Marketplace: O Guia Completo" - Aprenda estratégias comprovadas para vender seu carro mais rápido e pelo melhor preço.</p>
</div>
<div>
<button id="ebook-checkout-button" class="bg-white hover:bg-gray-100 text-blue-600 px-6 py-3 rounded-lg font-bold transition inline-block">Comprar Agora - R$ 29,90</button>
</div>
</div>
</section>
<!-- Products Section -->
<section id="produtos" class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Nossos Produtos</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Product 1 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1598515213692-5f252f75d786?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Suporte para celular" class="w-full h-full object-cover">
<div class="absolute top-2 right-2 bg-blue-600 text-white text-xs font-bold px-2 py-1 rounded">MAIS VENDIDO</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Suporte Magnético para Celular</h3>
<p class="text-gray-600 text-sm mb-4">Ajustável 360°, compatível com todos smartphones, fixação forte e segura.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 59,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1607863686769-c1a485a19f93?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Carregador wireless" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Carregador Wireless para Carro</h3>
<p class="text-gray-600 text-sm mb-4">15W rápido, compatível com Qi, design compacto que não ocupa espaço.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 129,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1587300003388-59208cc962cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Organizador de assento" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Organizador para Banco Traseiro</h3>
<p class="text-gray-600 text-sm mb-4">7 bolsos espaçosos, material resistente, ajustável para qualquer veículo.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 79,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1605540436563-5bca919ae766?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Câmera de ré" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Câmera de Ré Sem Fio</h3>
<p class="text-gray-600 text-sm mb-4">Full HD, visão noturna, fácil instalação, compatível com maioria dos veículos.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 199,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
<!-- Product 5 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1600861195091-690c92f1d2cc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Purificador de ar" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Purificador de Ar para Carro</h3>
<p class="text-gray-600 text-sm mb-4">Ionizador, elimina odores e bactérias, USB recarregável, silencioso.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 89,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
<!-- Product 6 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 border border-gray-100">
<div class="relative overflow-hidden h-48">
<img src="https://images.unsplash.com/photo-1595941069915-4ebc6e39a6ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1480&q=80" alt="Capa para volante" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Capa Térmica para Volante</h3>
<p class="text-gray-600 text-sm mb-4">Protege do sol, evita queimaduras, material premium, vários tamanhos.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">R$ 49,90</span>
<button class="checkout-button bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition" data-product-id="prod_RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV" data-price-id="price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV">Comprar</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 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-lg shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-4">"Comprei o suporte magnético e é incrível! Muito prático e seguro, não preciso mais ficar procurando o celular no carro."</p>
<div class="flex items-center">
<div class="font-medium text-gray-800">Carlos S.</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-4">"O organizador de banco traseiro salvou minha vida! Agora as crianças têm tudo organizado durante as viagens."</p>
<div class="flex items-center">
<div class="font-medium text-gray-800">Ana L.</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-4">"O e-book me ajudou a vender meu carro em 3 dias pelo preço que eu queria! Valeu cada centavo."</p>
<div class="flex items-center">
<div class="font-medium text-gray-800">Roberto M.</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-12 bg-blue-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Pronto para Melhorar Seu Carro?</h2>
<p class="text-xl mb-8 text-blue-100">Temos os melhores acessórios para tornar sua experiência de dirigir ainda melhor.</p>
<a href="https://wa.me/5541996619309" class="bg-white hover:bg-gray-100 text-blue-600 px-8 py-4 rounded-lg font-bold text-lg inline-block transition">Fale Conosco no WhatsApp</a>
</div>
</section>
<!-- Footer -->
<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>
<h3 class="text-lg font-bold mb-4 flex items-center">
<i class="fas fa-car mr-2"></i> I Wanna Buy Brasil
</h3>
<p class="text-gray-400">Acessórios automotivos premium para melhorar sua experiência no trânsito.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Links Úteis</h3>
<ul class="space-y-2">
<li><a href="#produtos" class="text-gray-400 hover:text-white transition">Produtos</a></li>
<li><a href="#ebook" class="text-gray-400 hover:text-white transition">E-book</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Termos de Serviço</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Política de Privacidade</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contato</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope mr-2 text-gray-400"></i>
<span class="text-gray-400">[email protected]</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone mr-2 text-gray-400"></i>
<span class="text-gray-400">(41) 99661-9309</span>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Redes Sociais</h3>
<div class="flex space-x-4">
<a href="https://instagram.com/iwannabuybrasil" target="_blank" class="instagram-icon text-gray-400 hover:text-white text-xl transition">
<i class="fab fa-instagram"></i>
</a>
<a href="https://wa.me/5541996619309" target="_blank" class="whatsapp-icon text-gray-400 hover:text-white text-xl transition">
<i class="fab fa-whatsapp"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white text-xl transition">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2025 I Wanna Buy Brasil. Todos os direitos reservados.</p>
</div>
</div>
</footer>
<!-- WhatsApp Float Button -->
<a href="https://wa.me/5541996619309" target="_blank" class="fixed bottom-6 right-6 bg-green-500 hover:bg-green-600 text-white w-14 h-14 rounded-full flex items-center justify-center text-2xl shadow-lg transition">
<i class="fab fa-whatsapp"></i>
</a>
<script>
// Initialize Stripe with your publishable key
const stripe = Stripe('pk_test_51RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV');
// E-book Checkout
document.getElementById('ebook-checkout-button').addEventListener('click', function() {
stripe.redirectToCheckout({
lineItems: [{
price: 'price_1RBaI8RtWCvFoNlzpFqU6X9XL0cnTUAi9XULgfqP7PiFrmkwMXfUQPhklK4scP2lLW7GuLqxW1KAOqeUuj8hSvcn00Yyi5DAzV', // Replace with your actual price ID for the ebook
quantity: 1,
}],
mode: 'payment',
successUrl: 'https://yourwebsite.com/success?session_id={CHECKOUT_SESSION_ID}',
cancelUrl: 'https://yourwebsite.com/canceled',
}).then(function(result) {
if (result.error) {
alert(result.error.message);
}
});
});
// Product Checkout Buttons
document.querySelectorAll('.checkout-button').forEach(button => {
button.addEventListener('click', function() {
const priceId = this.getAttribute('data-price-id');
stripe.redirectToCheckout({
lineItems: [{
price: priceId,
quantity: 1,
}],
mode: 'payment',
successUrl: 'https://yourwebsite.com/success?session_id={CHECKOUT_SESSION_ID}',
cancelUrl: 'https://yourwebsite.com/canceled',
}).then(function(result) {
if (result.error) {
alert(result.error.message);
}
});
});
});
</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=leobora/iwbbr" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |