Spaces:
Running
Running
File size: 36,058 Bytes
c5dbe3a 58d5e11 c5dbe3a 58d5e11 |
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 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Empréstimo Confiável e Seguro</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>
tailwind.config = {
theme: {
extend: {
colors: {
navy: '#001f3f',
gold: '#D4AF37',
}
}
}
}
</script>
<style>
.hero {
background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.loan-calculator {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Header -->
<header class="bg-navy text-white shadow-md">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="bg-gold p-2 rounded-full">
<i class="fas fa-coins text-navy text-xl"></i>
</div>
<h1 class="text-xl md:text-2xl font-bold">Empréstimo Confiável e Seguro</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#inicio" class="hover:text-gold transition">Início</a>
<a href="#servicos" class="hover:text-gold transition">Serviços</a>
<a href="#sobre" class="hover:text-gold transition">Sobre Nós</a>
<a href="#depoimentos" class="hover:text-gold transition">Depoimentos</a>
<a href="#contato" class="hover:text-gold transition">Contato</a>
</nav>
<button class="md:hidden text-white" id="menu-toggle">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-navy py-2 px-4" id="mobile-menu">
<a href="#inicio" class="block py-2 hover:text-gold transition">Início</a>
<a href="#servicos" class="block py-2 hover:text-gold transition">Serviços</a>
<a href="#sobre" class="block py-2 hover:text-gold transition">Sobre Nós</a>
<a href="#depoimentos" class="block py-2 hover:text-gold transition">Depoimentos</a>
<a href="#contato" class="block py-2 hover:text-gold transition">Contato</a>
</div>
</header>
<!-- Hero Section -->
<section id="inicio" class="hero text-white py-20 md:py-32">
<div class="container mx-auto px-4 text-center">
<h1 class="text-3xl md:text-5xl font-bold mb-6">Seus projetos, nosso apoio.</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Empréstimos transparentes, rápidos e seguros para realizar seus sonhos.</p>
<a href="#solicitar" class="bg-gold text-navy font-bold py-3 px-8 rounded-full hover:bg-yellow-600 transition inline-block">Solicitar Empréstimo Agora</a>
<div class="mt-16 grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-blur-sm">
<i class="fas fa-lock text-gold text-3xl mb-4"></i>
<h3 class="text-xl font-semibold mb-2">100% Seguro</h3>
<p>Seus dados estão protegidos com criptografia avançada.</p>
</div>
<div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-blur-sm">
<i class="fas fa-bolt text-gold text-3xl mb-4"></i>
<h3 class="text-xl font-semibold mb-2">Resposta Rápida</h3>
<p>Resposta em até 24 horas após a solicitação.</p>
</div>
<div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-blur-sm">
<i class="fas fa-percent text-gold text-3xl mb-4"></i>
<h3 class="text-xl font-semibold mb-2">Taxa Fixa 2%</h3>
<p>Taxa de juros competitiva e sem surpresas.</p>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="servicos" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-navy">Nossos Serviços</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="border border-gray-200 rounded-lg p-6 hover:border-gold transition">
<div class="bg-navy text-gold w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-user text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-navy">Empréstimo Pessoal</h3>
<p class="text-gray-600 mb-4">Para necessidades pessoais e urgentes, com aprovação rápida e condições flexíveis.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Valor: €1.000 - €50.000
</li>
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Prazo: 6-60 meses
</li>
</ul>
</div>
<div class="border border-gray-200 rounded-lg p-6 hover:border-gold transition">
<div class="bg-navy text-gold w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-briefcase text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-navy">Empréstimo Empresarial</h3>
<p class="text-gray-600 mb-4">Para empreendedores e comerciantes que precisam de capital para expandir seus negócios.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Valor: €5.000 - €500.000
</li>
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Prazo: 12-120 meses
</li>
</ul>
</div>
<div class="border border-gray-200 rounded-lg p-6 hover:border-gold transition">
<div class="bg-navy text-gold w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-home text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-navy">Empréstimo para Projetos</h3>
<p class="text-gray-600 mb-4">Financiamento para estudos, viagens, imóveis e outros projetos pessoais.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Valor: €1.000 - €200.000
</li>
<li class="flex items-center">
<i class="fas fa-check text-gold mr-2"></i> Prazo: 6-84 meses
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Loan Calculator -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-white rounded-xl overflow-hidden loan-calculator">
<div class="md:flex">
<div class="md:w-1/2 bg-navy text-white p-8">
<h2 class="text-2xl font-bold mb-6">Simulador de Empréstimo</h2>
<div class="mb-6">
<label class="block mb-2">Valor do empréstimo (€)</label>
<input type="range" min="1000" max="500000" step="1000" value="10000" id="loanAmount" class="w-full mb-2">
<div class="flex justify-between">
<span>1.000€</span>
<span id="loanAmountValue">10.000€</span>
<span>500.000€</span>
</div>
</div>
<div class="mb-6">
<label class="block mb-2">Prazo (meses)</label>
<input type="range" min="6" max="120" step="1" value="24" id="loanTerm" class="w-full mb-2">
<div class="flex justify-between">
<span>6 meses</span>
<span id="loanTermValue">24 meses</span>
<span>120 meses</span>
</div>
</div>
<div>
<label class="block mb-2">Taxa de juros</label>
<div class="text-xl font-bold">2% ao ano</div>
</div>
</div>
<div class="md:w-1/2 p-8">
<h3 class="text-xl font-semibold mb-6 text-navy">Resumo do Empréstimo</h3>
<div class="space-y-4">
<div class="flex justify-between border-b pb-2">
<span>Valor solicitado:</span>
<span id="summaryAmount" class="font-semibold">10.000€</span>
</div>
<div class="flex justify-between border-b pb-2">
<span>Prazo:</span>
<span id="summaryTerm" class="font-semibold">24 meses</span>
</div>
<div class="flex justify-between border-b pb-2">
<span>Taxa de juros:</span>
<span class="font-semibold">2%</span>
</div>
<div class="flex justify-between border-b pb-2">
<span>Parcela mensal:</span>
<span id="monthlyPayment" class="font-semibold text-gold">425,40€</span>
</div>
<div class="flex justify-between border-b pb-2">
<span>Total a pagar:</span>
<span id="totalPayment" class="font-semibold">10.209,60€</span>
</div>
<div class="flex justify-between border-b pb-2">
<span>Juros totais:</span>
<span id="totalInterest" class="font-semibold">209,60€</span>
</div>
</div>
<a href="#solicitar" class="mt-6 bg-gold text-navy font-bold py-3 px-6 rounded-full hover:bg-yellow-600 transition inline-block w-full text-center">Solicitar Agora</a>
</div>
</div>
</div>
</div>
</section>
<!-- Loan Form -->
<section id="solicitar" class="py-16 bg-white">
<div class="container mx-auto px-4 max-w-3xl">
<h2 class="text-3xl font-bold text-center mb-12 text-navy">Solicitar Empréstimo</h2>
<form id="loanForm" class="bg-gray-50 p-6 md:p-8 rounded-lg border border-gray-200">
<div class="mb-6">
<label for="fullName" class="block text-gray-700 mb-2">Nome completo*</label>
<input type="text" id="fullName" class="w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-gold" required>
</div>
<div class="mb-6">
<label for="loanAmountInput" class="block text-gray-700 mb-2">Valor desejado (€)*</label>
<input type="number" id="loanAmountInput" min="1000" max="500000" class="w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-gold" placeholder="Entre 1.000€ e 500.000€" required>
</div>
<div class="mb-6">
<label for="loanTermSelect" class="block text-gray-700 mb-2">Prazo de pagamento*</label>
<select id="loanTermSelect" class="w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-gold" required>
<option value="">Selecione o prazo</option>
<option value="6">6 meses</option>
<option value="12">12 meses</option>
<option value="24">24 meses</option>
<option value="36">36 meses</option>
<option value="48">48 meses</option>
<option value="60">60 meses</option>
<option value="84">84 meses</option>
<option value="120">120 meses</option>
</select>
</div>
<div class="mb-6">
<label for="whatsapp" class="block text-gray-700 mb-2">Número de WhatsApp*</label>
<input type="tel" id="whatsapp" class="w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-gold" placeholder="+55 11 98765-4321" required>
</div>
<div class="mb-6">
<label for="purpose" class="block text-gray-700 mb-2">Motivo do empréstimo*</label>
<textarea id="purpose" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-gold" placeholder="Descreva brevemente o motivo do seu empréstimo" required></textarea>
</div>
<div class="mb-6">
<div class="flex items-start">
<input type="checkbox" id="agreeTerms" class="mt-1 mr-2" required>
<label for="agreeTerms" class="text-gray-700">Eu concordo com os termos de serviço e política de privacidade.</label>
</div>
</div>
<button type="submit" class="w-full bg-gold text-navy font-bold py-3 px-6 rounded hover:bg-yellow-600 transition">Enviar Solicitação via WhatsApp</button>
<div class="mt-4 text-center text-sm text-gray-500">
<i class="fas fa-lock mr-1"></i> Seus dados estão 100% seguros e protegidos.
</div>
</form>
</div>
</section>
<!-- About Section -->
<section id="sobre" class="py-16 bg-gray-100">
<div class="container mx-auto px-4 max-w-5xl">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<img src="https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1011&q=80" alt="Sobre Nós" class="rounded-lg shadow-lg w-full">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl font-bold mb-6 text-navy">Sobre Nós</h2>
<p class="text-gray-700 mb-4">Empréstimo Confiável e Seguro é uma plataforma de crédito online que coloca a confiança e a satisfação dos clientes em primeiro lugar.</p>
<p class="text-gray-700 mb-4">Oferecemos soluções financeiras rápidas, acessíveis e confidenciais para ajudar você a realizar seus projetos pessoais e profissionais.</p>
<p class="text-gray-700 mb-6">Nossa missão é fornecer um serviço transparente, com taxas competitivas e processos simplificados, garantindo uma experiência positiva para cada cliente.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-navy text-gold p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h4 class="font-semibold text-navy">Processo Simplificado</h4>
<p class="text-gray-600">Solicitação online rápida e sem burocracia.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-navy text-gold p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h4 class="font-semibold text-navy">Transparência Total</h4>
<p class="text-gray-600">Sem taxas ocultas ou condições enganosas.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-navy text-gold p-2 rounded-full mr-4">
<i class="fas fa-check"></i>
</div>
<div>
<h4 class="font-semibold text-navy">Atendimento Personalizado</h4>
<p class="text-gray-600">Suporte dedicado via WhatsApp para todas as suas dúvidas.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="depoimentos" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-navy">O Que Nossos Clientes Dizem</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="testimonial-card bg-gray-50 p-6 rounded-lg border border-gray-200 transition duration-300">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Maria" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-navy">Maria D.</h4>
<div class="flex text-gold">
<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>
</div>
<p class="text-gray-700">"Graças ao Empréstimo Confiável e Seguro, consegui um financiamento em menos de uma semana para abrir meu negócio. O processo foi simples e transparente, exatamente como prometeram."</p>
<div class="mt-4 text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-1"></i> Lisboa
</div>
</div>
<div class="testimonial-card bg-gray-50 p-6 rounded-lg border border-gray-200 transition duration-300">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="João" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-navy">João K.</h4>
<div class="flex text-gold">
<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>
</div>
<p class="text-gray-700">"Equipe profissional e atenciosa. Meu empréstimo foi aprovado rapidamente e sem complicações. Recomendo a todos que precisam de um serviço financeiro confiável."</p>
<div class="mt-4 text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-1"></i> Porto
</div>
</div>
<div class="testimonial-card bg-gray-50 p-6 rounded-lg border border-gray-200 transition duration-300">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Ana" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-navy">Ana P.</h4>
<div class="flex text-gold">
<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>
</div>
<p class="text-gray-700">"Tinha algumas dúvidas no início, mas todo o processo foi claro e seguro. As parcelas cabem no meu orçamento e o atendimento foi excelente. Recomendo 100%!"</p>
<div class="mt-4 text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-1"></i> Faro
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contato" class="py-16 bg-navy text-white">
<div class="container mx-auto px-4 max-w-5xl">
<h2 class="text-3xl font-bold text-center mb-12">Entre em Contato</h2>
<div class="md:flex">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h3 class="text-xl font-semibold mb-4">Informações de Contato</h3>
<p class="mb-6">Para uma resposta mais rápida, entre em contato diretamente pelo WhatsApp.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-gold text-navy p-2 rounded-full mr-4">
<i class="fab fa-whatsapp"></i>
</div>
<div>
<h4 class="font-semibold">WhatsApp</h4>
<a href="https://wa.me/33746372940" class="hover:text-gold transition">+33 7 46 37 29 40</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-gold text-navy p-2 rounded-full mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold">Email</h4>
<a href="mailto:pierro20071@gmail.com" class="hover:text-gold transition">pierro20071@gmail.com</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-gold text-navy p-2 rounded-full mr-4">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-semibold">Horário de Atendimento</h4>
<p>Segunda a Sexta: 9h - 18h</p>
<p>Sábado: 10h - 14h</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<h3 class="text-xl font-semibold mb-4">Envie uma Mensagem</h3>
<form class="space-y-4">
<div>
<label for="contactName" class="block mb-1">Nome</label>
<input type="text" id="contactName" class="w-full px-4 py-2 rounded text-gray-800">
</div>
<div>
<label for="contactEmail" class="block mb-1">Email</label>
<input type="email" id="contactEmail" class="w-full px-4 py-2 rounded text-gray-800">
</div>
<div>
<label for="contactMessage" class="block mb-1">Mensagem</label>
<textarea id="contactMessage" rows="3" class="w-full px-4 py-2 rounded text-gray-800"></textarea>
</div>
<button type="submit" class="bg-gold text-navy font-bold py-2 px-6 rounded hover:bg-yellow-600 transition">Enviar Mensagem</button>
</form>
<p class="mt-4 text-sm opacity-80">Para resposta imediata, recomendamos contato via WhatsApp.</p>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="py-8 bg-gray-100">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<div class="flex items-center">
<i class="fas fa-shield-alt text-gold text-3xl mr-3"></i>
<span class="font-semibold text-navy">Segurança<br>Garantida</span>
</div>
<div class="flex items-center">
<i class="fas fa-lock text-gold text-3xl mr-3"></i>
<span class="font-semibold text-navy">Dados<br>Protegidos</span>
</div>
<div class="flex items-center">
<i class="fas fa-handshake text-gold text-3xl mr-3"></i>
<span class="font-semibold text-navy">Confiança<br>e Transparência</span>
</div>
<div class="flex items-center">
<i class="fas fa-headset text-gold text-3xl mr-3"></i>
<span class="font-semibold text-navy">Suporte<br>Personalizado</span>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-navy text-white py-8">
<div class="container mx-auto px-4">
<div class="md:flex md:justify-between md:items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center space-x-2 mb-4">
<div class="bg-gold p-2 rounded-full">
<i class="fas fa-coins text-navy"></i>
</div>
<h3 class="text-xl font-bold">Empréstimo Confiável e Seguro</h3>
</div>
<p class="text-sm opacity-80 max-w-md">Soluções financeiras rápidas e seguras para realizar seus projetos pessoais e profissionais.</p>
</div>
<div class="grid grid-cols-2 gap-8 md:gap-16">
<div>
<h4 class="font-semibold mb-3">Links Rápidos</h4>
<ul class="space-y-2">
<li><a href="#inicio" class="opacity-80 hover:opacity-100 hover:text-gold transition">Início</a></li>
<li><a href="#servicos" class="opacity-80 hover:opacity-100 hover:text-gold transition">Serviços</a></li>
<li><a href="#solicitar" class="opacity-80 hover:opacity-100 hover:text-gold transition">Solicitar Empréstimo</a></li>
<li><a href="#depoimentos" class="opacity-80 hover:opacity-100 hover:text-gold transition">Depoimentos</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3">Contato</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fab fa-whatsapp text-gold mr-2"></i>
<a href="https://wa.me/33746372940" class="opacity-80 hover:opacity-100 hover:text-gold transition">+33 7 46 37 29 40</a>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-gold mr-2"></i>
<a href="mailto:pierro20071@gmail.com" class="opacity-80 hover:opacity-100 hover:text-gold transition">pierro20071@gmail.com</a>
</li>
</ul>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm opacity-80">
<p>© 2025 Empréstimo Confiável e Seguro. Todos os direitos reservados.</p>
</div>
</div>
</footer>
<!-- WhatsApp Float Button -->
<a href="https://wa.me/33746372940" class="fixed bottom-6 right-6 bg-green-500 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg hover:bg-green-600 transition z-50">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Loan calculator functionality
const loanAmount = document.getElementById('loanAmount');
const loanAmountValue = document.getElementById('loanAmountValue');
const loanTerm = document.getElementById('loanTerm');
const loanTermValue = document.getElementById('loanTermValue');
const summaryAmount = document.getElementById('summaryAmount');
const summaryTerm = document.getElementById('summaryTerm');
const monthlyPayment = document.getElementById('monthlyPayment');
const totalPayment = document.getElementById('totalPayment');
const totalInterest = document.getElementById('totalInterest');
const loanAmountInput = document.getElementById('loanAmountInput');
// Update slider values
loanAmount.addEventListener('input', updateLoanValues);
loanTerm.addEventListener('input', updateLoanValues);
loanAmountInput.addEventListener('input', function() {
loanAmount.value = this.value;
updateLoanValues();
});
function updateLoanValues() {
const amount = parseFloat(loanAmount.value);
const term = parseInt(loanTerm.value);
const interestRate = 2; // 2% per year
// Format values with thousand separators
loanAmountValue.textContent = amount.toLocaleString('pt-PT') + '€';
loanTermValue.textContent = term + ' meses';
summaryAmount.textContent = amount.toLocaleString('pt-PT') + '€';
summaryTerm.textContent = term + ' meses';
// Calculate monthly payment and total amounts
const monthlyRate = interestRate / 100 / 12;
const payments = term;
// Monthly payment formula: P = (PV*r*((1+r)^n))/(((1+r)^n)-1)
const x = Math.pow(1 + monthlyRate, payments);
const monthly = (amount * monthlyRate * x) / (x - 1);
const total = monthly * payments;
const interest = total - amount;
// Update display values
monthlyPayment.textContent = monthly.toLocaleString('pt-PT', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '€';
totalPayment.textContent = total.toLocaleString('pt-PT', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '€';
totalInterest.textContent = interest.toLocaleString('pt-PT', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '€';
// Sync input field with slider
loanAmountInput.value = amount;
}
// Initialize calculator
updateLoanValues();
// Form submission to WhatsApp
document.getElementById('loanForm').addEventListener('submit', function(e) {
e.preventDefault();
const fullName = document.getElementById('fullName').value;
const amount = document.getElementById('loanAmountInput').value;
const term = document.getElementById('loanTermSelect').value;
const whatsapp = document.getElementById('whatsapp').value;
const purpose = document.getElementById('purpose').value;
// Format WhatsApp message
const message = `Olá, gostaria de solicitar um empréstimo:\n\n` +
`*Nome:* ${fullName}\n` +
`*Valor desejado:* ${amount}€\n` +
`*Prazo:* ${term} meses\n` +
`*WhatsApp:* ${whatsapp}\n` +
`*Motivo:* ${purpose}\n\n` +
`Por favor, entre em contato para continuarmos o processo.`;
// Encode message for URL
const encodedMessage = encodeURIComponent(message);
// Open WhatsApp with pre-filled message
window.open(`https://wa.me/33746372940?text=${encodedMessage}`, '_blank');
// Reset form
this.reset();
// Show success message (you could add a more sophisticated notification here)
alert('Sua solicitação foi enviada com sucesso! Entraremos em contato em breve via WhatsApp.');
});
</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=HoundeglassoD/mmmmm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |