Spaces:
Running
Running
File size: 60,255 Bytes
f5280a3 |
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 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Golden Key Imóveis - Seu lar dos sonhos em Brasília e Entorno</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>
/* Custom CSS */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
background-size: cover;
background-position: center;
height: 80vh;
}
.property-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.property-card {
transition: all 0.3s ease;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
}
.contact-form input, .contact-form textarea {
border-bottom: 2px solid #e5e7eb;
transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
border-bottom: 2px solid #f59e0b;
}
.mobile-menu {
transform: translateX(100%);
transition: transform 0.3s ease;
}
.mobile-menu.open {
transform: translateX(0);
}
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
opacity: 0;
transition: all 0.3s ease;
}
.back-to-top.visible {
opacity: 1;
}
/* Dark mode styles */
.dark .hero {
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}
.dark {
background-color: #1a202c;
color: #e2e8f0;
}
.dark .bg-white {
background-color: #2d3748;
}
.dark .text-gray-800 {
color: #e2e8f0;
}
.dark .text-gray-600 {
color: #a0aec0;
}
.dark .bg-gray-50 {
background-color: #2d3748;
}
.dark .bg-gray-100 {
background-color: #4a5568;
}
.dark .testimonial-card {
background: rgba(45, 55, 72, 0.9);
color: #e2e8f0;
}
.dark .contact-form input,
.dark .contact-form textarea,
.dark .contact-form select {
background-color: transparent;
color: #e2e8f0;
border-bottom-color: #4a5568;
}
.dark .contact-form input:focus,
.dark .contact-form textarea:focus,
.dark .contact-form select:focus {
border-bottom-color: #f59e0b;
}
.dark .bg-gray-900 {
background-color: #1a202c;
}
.dark .bg-yellow-500 {
background-color: #d69e2e;
}
.dark .bg-yellow-600 {
background-color: #b7791f;
}
.dark .text-yellow-500 {
color: #d69e2e;
}
.dark .shadow-lg {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}
/* Custom select dropdown */
.custom-select {
position: relative;
}
.custom-select select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1em;
}
</style>
</head>
<body class="font-sans bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
<!-- Header/Navigation -->
<header class="bg-white dark:bg-gray-800 shadow-md 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-key text-yellow-500 text-3xl mr-2"></i>
<a href="#" class="text-2xl font-bold text-gray-800 dark:text-white">Golden Key <span class="text-yellow-500">Imóveis</span></a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500 font-medium">Início</a>
<a href="#properties" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500 font-medium">Imóveis</a>
<a href="#services" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500 font-medium">Serviços</a>
<a href="#about" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500 font-medium">Sobre</a>
<a href="#contact" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500 font-medium">Contato</a>
</nav>
<div class="flex items-center space-x-4">
<button id="theme-toggle" class="text-gray-800 dark:text-gray-300 hover:text-yellow-500">
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:inline"></i>
</button>
<a href="#contact" class="hidden md:block bg-yellow-500 hover:bg-yellow-600 text-white px-6 py-2 rounded-full font-medium transition">Agende uma visita</a>
</div>
<button id="mobile-menu-button" class="md:hidden text-gray-800 dark:text-gray-300 text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu fixed inset-0 bg-white dark:bg-gray-800 z-50 flex flex-col items-center justify-center space-y-8">
<button id="close-menu" class="absolute top-6 right-6 text-2xl text-gray-800 dark:text-gray-300">
<i class="fas fa-times"></i>
</button>
<a href="#home" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">Início</a>
<a href="#properties" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">Imóveis</a>
<a href="#services" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">Serviços</a>
<a href="#about" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">Sobre</a>
<a href="#contact" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">Contato</a>
<button id="mobile-theme-toggle" class="text-2xl text-gray-800 dark:text-gray-300 hover:text-yellow-500">
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:inline"></i>
</button>
<a href="#contact" class="bg-yellow-500 hover:bg-yellow-600 text-white px-8 py-3 rounded-full font-medium text-xl transition">Agende uma visita</a>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero flex items-center justify-center text-white">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Encontre o imóvel dos seus sonhos em Brasília e Entorno</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Mais de 10 anos ajudando famílias a encontrar o lar perfeito em todo o Distrito Federal e cidades vizinhas</p>
<div class="bg-white dark:bg-gray-800 bg-opacity-90 dark:bg-opacity-90 rounded-lg p-6 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row gap-4">
<div class="custom-select flex-grow">
<select class="w-full p-3 border rounded-lg text-gray-800 dark:text-gray-300 dark:bg-gray-700 focus:outline-none">
<option value="">Tipo de Imóvel</option>
<option>Casa</option>
<option>Apartamento</option>
<option>Terreno</option>
<option>Comercial</option>
<option>Chácara</option>
<option>Sítio</option>
<option>Fazenda</option>
</select>
</div>
<div class="custom-select flex-grow">
<select class="w-full p-3 border rounded-lg text-gray-800 dark:text-gray-300 dark:bg-gray-700 focus:outline-none">
<option value="">Localização</option>
<optgroup label="Brasília - Regiões Administrativas">
<option>Gama</option>
<option>Plano Piloto</option>
<option>Taguatinga</option>
<option>Águas Claras</option>
<option>Ceilândia</option>
<option>Samambaia</option>
<option>Santa Maria</option>
<option>São Sebastião</option>
<option>Recanto das Emas</option>
<option>Lago Sul</option>
<option>Lago Norte</option>
<option>Núcleo Bandeirante</option>
<option>Guará</option>
<option>Riacho Fundo</option>
<option>Sobradinho</option>
<option>Planaltina</option>
<option>Paranoá</option>
</optgroup>
<optgroup label="Entorno do DF">
<option>Águas Lindas de Goiás</option>
<option>Valparaíso de Goiás</option>
<option>Cidade Ocidental</option>
<option>Luziânia</option>
<option>Formosa</option>
<option>Cristalina</option>
<option>Novo Gama</option>
<option>Santo Antônio do Descoberto</option>
<option>Padre Bernardo</option>
<option>Planaltina (GO)</option>
<option>Alexânia</option>
<option>Corumbá de Goiás</option>
<option>Pirenópolis</option>
</optgroup>
</select>
</div>
<div class="custom-select flex-grow">
<select class="w-full p-3 border rounded-lg text-gray-800 dark:text-gray-300 dark:bg-gray-700 focus:outline-none">
<option value="">Faixa de Preço</option>
<option>Até R$ 300.000</option>
<option>R$ 300.000 - R$ 600.000</option>
<option>R$ 600.000 - R$ 1.000.000</option>
<option>Acima de R$ 1.000.000</option>
<option>Até R$ 1.000/mês</option>
<option>R$ 1.000 - R$ 2.500/mês</option>
<option>Acima de R$ 2.500/mês</option>
</select>
</div>
<button class="bg-yellow-500 hover:bg-yellow-600 text-white px-6 py-3 rounded-lg font-medium transition whitespace-nowrap">
<i class="fas fa-search mr-2"></i> Buscar
</button>
</div>
<div class="mt-4 flex flex-wrap justify-center gap-2">
<span class="text-xs text-gray-600 dark:text-gray-300">Busque também em:</span>
<a href="#" class="text-xs text-yellow-500 hover:text-yellow-600">Águas Lindas</a>
<span class="text-gray-400">•</span>
<a href="#" class="text-xs text-yellow-500 hover:text-yellow-600">Valparaíso</a>
<span class="text-gray-400">•</span>
<a href="#" class="text-xs text-yellow-500 hover:text-yellow-600">Luziânia</a>
<span class="text-gray-400">•</span>
<a href="#" class="text-xs text-yellow-500 hover:text-yellow-600">Formosa</a>
</div>
</div>
</div>
</section>
<!-- Featured Properties -->
<section id="properties" class="py-16 bg-white dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-white mb-4">Imóveis em Destaque</h2>
<div class="w-20 h-1 bg-yellow-500 mx-auto"></div>
<p class="text-gray-600 dark:text-gray-300 mt-4 max-w-2xl mx-auto">Confira nossas melhores opções de imóveis cuidadosamente selecionados para você</p>
<div class="flex justify-center mt-6 space-x-4">
<button class="bg-yellow-500 text-white px-4 py-2 rounded-full text-sm font-medium">Brasília</button>
<button class="bg-gray-200 dark:bg-gray-700 text-gray-800 dark:text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-gray-300 dark:hover:bg-gray-600">Entorno</button>
<button class="bg-gray-200 dark:bg-gray-700 text-gray-800 dark:text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-gray-300 dark:hover:bg-gray-600">Todos</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Property 1 -->
<div class="property-card bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg">
<div class="relative">
<img src="https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Casa moderna" class="w-full h-64 object-cover">
<div class="absolute top-4 right-4 bg-yellow-500 text-white px-3 py-1 rounded-full text-sm font-medium">Destaque</div>
<div class="absolute bottom-4 left-4 bg-white dark:bg-gray-800 text-gray-800 dark:text-white px-3 py-1 rounded-full text-sm font-medium">À venda</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Residencial Green Valley</h3>
<div class="flex items-center text-gray-600 dark:text-gray-300 mb-4">
<i class="fas fa-map-marker-alt mr-2 text-yellow-500"></i>
<span>Lago Sul, Brasília</span>
</div>
<div class="flex justify-between text-gray-600 dark:text-gray-300 mb-4">
<div class="flex items-center">
<i class="fas fa-bed mr-2 text-yellow-500"></i>
<span>4 quartos</span>
</div>
<div class="flex items-center">
<i class="fas fa-bath mr-2 text-yellow-500"></i>
<span>3 banheiros</span>
</div>
<div class="flex items-center">
<i class="fas fa-ruler-combined mr-2 text-yellow-500"></i>
<span>220m²</span>
</div>
</div>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800 dark:text-white">R$ 1.250.000</span>
<button class="text-yellow-500 hover:text-yellow-600 font-medium flex items-center">
Ver detalhes <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Property 2 -->
<div class="property-card bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg">
<div class="relative">
<img src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Apartamento moderno" class="w-full h-64 object-cover">
<div class="absolute bottom-4 left-4 bg-white dark:bg-gray-800 text-gray-800 dark:text-white px-3 py-1 rounded-full text-sm font-medium">Para alugar</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Apartamento Luxo Center</h3>
<div class="flex items-center text-gray-600 dark:text-gray-300 mb-4">
<i class="fas fa-map-marker-alt mr-2 text-yellow-500"></i>
<span>Águas Claras, Brasília</span>
</div>
<div class="flex justify-between text-gray-600 dark:text-gray-300 mb-4">
<div class="flex items-center">
<i class="fas fa-bed mr-2 text-yellow-500"></i>
<span>3 quartos</span>
</div>
<div class="flex items-center">
<i class="fas fa-bath mr-2 text-yellow-500"></i>
<span>2 banheiros</span>
</div>
<div class="flex items-center">
<i class="fas fa-ruler-combined mr-2 text-yellow-500"></i>
<span>120m²</span>
</div>
</div>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800 dark:text-white">R$ 4.500/mês</span>
<button class="text-yellow-500 hover:text-yellow-600 font-medium flex items-center">
Ver detalhes <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Property 3 -->
<div class="property-card bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg">
<div class="relative">
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Casa de campo" class="w-full h-64 object-cover">
<div class="absolute top-4 right-4 bg-yellow-500 text-white px-3 py-1 rounded-full text-sm font-medium">Novidade</div>
<div class="absolute bottom-4 left-4 bg-white dark:bg-gray-800 text-gray-800 dark:text-white px-3 py-1 rounded-full text-sm font-medium">À venda</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Chácara Paraíso</h3>
<div class="flex items-center text-gray-600 dark:text-gray-300 mb-4">
<i class="fas fa-map-marker-alt mr-2 text-yellow-500"></i>
<span>Luziânia, GO</span>
</div>
<div class="flex justify-between text-gray-600 dark:text-gray-300 mb-4">
<div class="flex items-center">
<i class="fas fa-bed mr-2 text-yellow-500"></i>
<span>5 quartos</span>
</div>
<div class="flex items-center">
<i class="fas fa-bath mr-2 text-yellow-500"></i>
<span>4 banheiros</span>
</div>
<div class="flex items-center">
<i class="fas fa-ruler-combined mr-2 text-yellow-500"></i>
<span>550m²</span>
</div>
</div>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-gray-800 dark:text-white">R$ 2.750.000</span>
<button class="text-yellow-500 hover:text-yellow-600 font-medium flex items-center">
Ver detalhes <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-yellow-500 hover:bg-yellow-600 text-white px-8 py-3 rounded-full font-medium transition">
Ver todos os imóveis <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-50 dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-white mb-4">Nossos Serviços</h2>
<div class="w-20 h-1 bg-yellow-500 mx-auto"></div>
<p class="text-gray-600 dark:text-gray-300 mt-4 max-w-2xl mx-auto">Oferecemos soluções completas para todas as suas necessidades imobiliárias</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Service 1 -->
<div class="bg-white dark:bg-gray-700 p-8 rounded-xl shadow-md text-center hover:shadow-lg transition">
<div class="bg-yellow-100 dark:bg-yellow-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-home text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-3">Compra e Venda</h3>
<p class="text-gray-600 dark:text-gray-300">Ajudamos você a encontrar o imóvel perfeito ou a vender sua propriedade pelo melhor preço.</p>
</div>
<!-- Service 2 -->
<div class="bg-white dark:bg-gray-700 p-8 rounded-xl shadow-md text-center hover:shadow-lg transition">
<div class="bg-yellow-100 dark:bg-yellow-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-file-signature text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-3">Locação</h3>
<p class="text-gray-600 dark:text-gray-300">Encontre o lugar ideal para morar ou alugue seu imóvel com segurança e tranquilidade.</p>
</div>
<!-- Service 3 -->
<div class="bg-white dark:bg-gray-700 p-8 rounded-xl shadow-md text-center hover:shadow-lg transition">
<div class="bg-yellow-100 dark:bg-yellow-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-building text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-3">Avaliação</h3>
<p class="text-gray-600 dark:text-gray-300">Avaliação profissional e precisa do valor de mercado do seu imóvel.</p>
</div>
<!-- Service 4 -->
<div class="bg-white dark:bg-gray-700 p-8 rounded-xl shadow-md text-center hover:shadow-lg transition">
<div class="bg-yellow-100 dark:bg-yellow-900 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-handshake text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-3">Consultoria</h3>
<p class="text-gray-600 dark:text-gray-300">Orientações especializadas para investimentos e negociações imobiliárias.</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Equipe Golden Key" class="rounded-xl shadow-lg w-full">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-white mb-6">Sobre a Golden Key Imóveis</h2>
<div class="w-20 h-1 bg-yellow-500 mb-6"></div>
<p class="text-gray-600 dark:text-gray-300 mb-6">Fundada em 2010 no Gama-DF, a Golden Key Imóveis se tornou referência no mercado imobiliário do Distrito Federal e Entorno, oferecendo serviços de excelência e atendimento personalizado.</p>
<div class="mb-6">
<div class="flex items-start mb-4">
<div class="bg-yellow-100 dark:bg-yellow-900 p-2 rounded-full mr-4">
<i class="fas fa-check text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Missão</h4>
<p class="text-gray-600 dark:text-gray-300">Proporcionar soluções imobiliárias com transparência, ética e excelência, realizando sonhos e construindo relacionamentos duradouros.</p>
</div>
</div>
<div class="flex items-start mb-4">
<div class="bg-yellow-100 dark:bg-yellow-900 p-2 rounded-full mr-4">
<i class="fas fa-check text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Visão</h4>
<p class="text-gray-600 dark:text-gray-300">Ser reconhecida como a melhor opção no mercado imobiliário do DF e Entorno, pela qualidade dos serviços e satisfação dos clientes.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-100 dark:bg-yellow-900 p-2 rounded-full mr-4">
<i class="fas fa-check text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Valores</h4>
<p class="text-gray-600 dark:text-gray-300">Ética, transparência, comprometimento, inovação e respeito às pessoas.</p>
</div>
</div>
</div>
<div class="flex flex-wrap gap-4">
<div class="bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full">
<span class="text-gray-800 dark:text-white font-medium">+10 anos</span>
</div>
<div class="bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full">
<span class="text-gray-800 dark:text-white font-medium">+500 clientes</span>
</div>
<div class="bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full">
<span class="text-gray-800 dark:text-white font-medium">+200 imóveis</span>
</div>
<div class="bg-gray-100 dark:bg-gray-700 px-4 py-2 rounded-full">
<span class="text-gray-800 dark:text-white font-medium">DF e Entorno</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">O que nossos clientes dizem</h2>
<div class="w-20 h-1 bg-yellow-500 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-xl text-gray-800 dark:text-gray-300">
<div class="flex items-center mb-4">
<div class="text-yellow-500 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="mb-6 italic">"A Golden Key me ajudou a encontrar o apartamento perfeito para minha família no Gama. O atendimento foi excepcional e todo o processo foi muito transparente."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Cliente" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Ana Carolina</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">Compradora</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-xl text-gray-800 dark:text-gray-300">
<div class="flex items-center mb-4">
<div class="text-yellow-500 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="mb-6 italic">"Comprei uma casa em Águas Lindas através da Golden Key e fiquei impressionado com a atenção aos detalhes e profissionalismo da equipe."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Cliente" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Roberto Almeida</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">Comprador</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-8 rounded-xl text-gray-800 dark:text-gray-300">
<div class="flex items-center mb-4">
<div class="text-yellow-500 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="mb-6 italic">"Estou muito satisfeito com o apartamento que aluguei em Águas Claras através da Golden Key. Eles entenderam exatamente minhas necessidades e encontraram a opção ideal."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Cliente" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Juliana Santos</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">Locatária</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Agents Section -->
<section class="py-16 bg-white dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-white mb-4">Nossos Corretores</h2>
<div class="w-20 h-1 bg-yellow-500 mx-auto"></div>
<p class="text-gray-600 dark:text-gray-300 mt-4 max-w-2xl mx-auto">Conheça nossa equipe de profissionais especializados prontos para te atender</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Agent 1 -->
<div class="bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg text-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Corretora" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-1">Mariana Oliveira</h3>
<p class="text-yellow-500 font-medium mb-4">Corretora Sênior</p>
<p class="text-gray-600 dark:text-gray-300 mb-4">Especialista em imóveis no Gama e região</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-whatsapp text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fas fa-envelope text-xl"></i></a>
</div>
</div>
</div>
<!-- Agent 2 -->
<div class="bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg text-center">
<img src="https://randomuser.me/api/portraits/men/42.jpg" alt="Corretor" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-1">Carlos Mendes</h3>
<p class="text-yellow-500 font-medium mb-4">Corretor Sênior</p>
<p class="text-gray-600 dark:text-gray-300 mb-4">Especialista em imóveis de luxo no Plano Piloto</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-whatsapp text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fas fa-envelope text-xl"></i></a>
</div>
</div>
</div>
<!-- Agent 3 -->
<div class="bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg text-center">
<img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Corretora" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-1">Patrícia Rocha</h3>
<p class="text-yellow-500 font-medium mb-4">Corretora</p>
<p class="text-gray-600 dark:text-gray-300 mb-4">Especialista em locação em Águas Claras</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-whatsapp text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fas fa-envelope text-xl"></i></a>
</div>
</div>
</div>
<!-- Agent 4 -->
<div class="bg-white dark:bg-gray-700 rounded-xl overflow-hidden shadow-lg text-center">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Corretor" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-1">Ricardo Alves</h3>
<p class="text-yellow-500 font-medium mb-4">Corretor</p>
<p class="text-gray-600 dark:text-gray-300 mb-4">Especialista em terrenos no Entorno do DF</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-whatsapp text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-yellow-500"><i class="fas fa-envelope text-xl"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gray-50 dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 dark:text-white mb-4">Entre em Contato</h2>
<div class="w-20 h-1 bg-yellow-500 mx-auto"></div>
<p class="text-gray-600 dark:text-gray-300 mt-4 max-w-2xl mx-auto">Estamos prontos para te ajudar a encontrar o imóvel dos seus sonhos</p>
</div>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2">
<form class="contact-form space-y-6">
<div>
<input type="text" placeholder="Seu nome" class="w-full p-3 bg-transparent focus:outline-none dark:text-white">
</div>
<div>
<input type="email" placeholder="Seu e-mail" class="w-full p-3 bg-transparent focus:outline-none dark:text-white">
</div>
<div>
<input type="tel" placeholder="Seu telefone" class="w-full p-3 bg-transparent focus:outline-none dark:text-white">
</div>
<div>
<select class="w-full p-3 bg-transparent border-b-2 border-gray-200 focus:outline-none dark:text-white dark:border-gray-700">
<option>Assunto</option>
<option>Compra de imóvel</option>
<option>Venda de imóvel</option>
<option>Aluguel</option>
<option>Avaliação</option>
<option>Outros</option>
</select>
</div>
<div>
<textarea placeholder="Sua mensagem" rows="4" class="w-full p-3 bg-transparent focus:outline-none dark:text-white"></textarea>
</div>
<button type="submit" class="w-full bg-yellow-500 hover:bg-yellow-600 text-white px-6 py-3 rounded-lg font-medium transition">
Enviar mensagem <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
<div class="lg:w-1/2">
<div class="bg-white dark:bg-gray-700 p-8 rounded-xl shadow-lg h-full">
<h3 class="text-2xl font-bold text-gray-800 dark:text-white mb-6">Informações de Contato</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-yellow-100 dark:bg-yellow-900 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Endereço</h4>
<p class="text-gray-600 dark:text-gray-300">Av. Contorno, 123 - Setor Central, Gama - DF</p>
<p class="text-gray-600 dark:text-gray-300 mt-2">Filial: Rua 15, 100 - Centro, Águas Lindas - GO</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-100 dark:bg-yellow-900 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Telefone</h4>
<p class="text-gray-600 dark:text-gray-300">(61) 1234-5678 (Gama)</p>
<p class="text-gray-600 dark:text-gray-300">(61) 98765-4321 (WhatsApp)</p>
<p class="text-gray-600 dark:text-gray-300">(61) 2345-6789 (Águas Lindas)</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-100 dark:bg-yellow-900 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">E-mail</h4>
<p class="text-gray-600 dark:text-gray-300">[email protected]</p>
<p class="text-gray-600 dark:text-gray-300">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-100 dark:bg-yellow-900 p-3 rounded-full mr-4">
<i class="fas fa-clock text-yellow-500"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 dark:text-white mb-1">Horário de Funcionamento</h4>
<p class="text-gray-600 dark:text-gray-300">Segunda a Sexta: 9h às 18h</p>
<p class="text-gray-600 dark:text-gray-300">Sábado: 9h às 13h</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-800 dark:text-white mb-4">Nos siga nas redes sociais</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 dark:bg-gray-600 hover:bg-yellow-500 hover:text-white w-10 h-10 rounded-full flex items-center justify-center text-gray-800 dark:text-gray-300 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-100 dark:bg-gray-600 hover:bg-yellow-500 hover:text-white w-10 h-10 rounded-full flex items-center justify-center text-gray-800 dark:text-gray-300 transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-100 dark:bg-gray-600 hover:bg-yellow-500 hover:text-white w-10 h-10 rounded-full flex items-center justify-center text-gray-800 dark:text-gray-300 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-100 dark:bg-gray-600 hover:bg-yellow-500 hover:text-white w-10 h-10 rounded-full flex items-center justify-center text-gray-800 dark:text-gray-300 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Map -->
<div class="h-96 w-full">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3836.123456789012!2d-48.12345678901234!3d-15.987654321098765!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x935a2b1234567890%3A0x9876543210987654!2sGolden%20Key%20Im%C3%B3veis!5e0!3m2!1spt-BR!2sbr!4v1234567890123!5m2!1spt-BR!2sbr" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!-- Newsletter -->
<section class="py-16 bg-yellow-500">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Receba nossas novidades</h2>
<p class="text-white mb-8 max-w-2xl mx-auto">Cadastre-se para receber em primeira mão os melhores imóveis do mercado no DF e Entorno</p>
<form class="max-w-xl mx-auto flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Seu melhor e-mail" class="flex-grow px-6 py-3 rounded-full focus:outline-none">
<button type="submit" class="bg-gray-900 hover:bg-gray-800 text-white px-8 py-3 rounded-full font-medium transition whitespace-nowrap">
Cadastrar <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-key text-yellow-500 text-3xl mr-2"></i>
<a href="#" class="text-2xl font-bold">Golden Key <span class="text-yellow-500">Imóveis</span></a>
</div>
<p class="text-gray-400 mb-4">Sua chave para o imóvel dos sonhos no Distrito Federal e Entorno. Mais de 10 anos realizando sonhos e construindo histórias.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-yellow-500"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Links Úteis</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-yellow-500 transition">Início</a></li>
<li><a href="#properties" class="text-gray-400 hover:text-yellow-500 transition">Imóveis</a></li>
<li><a href="#services" class="text-gray-400 hover:text-yellow-500 transition">Serviços</a></li>
<li><a href="#about" class="text-gray-400 hover:text-yellow-500 transition">Sobre Nós</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-yellow-500 transition">Contato</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Serviços</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Compra e Venda</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Locação</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Avaliação</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Consultoria</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Administração de Condomínios</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Financiamento</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contato</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-yellow-500 mr-3 mt-1"></i>
<span class="text-gray-400">Av. Contorno, 123 - Setor Central, Gama - DF</span>
</li>
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-yellow-500 mr-3 mt-1"></i>
<span class="text-gray-400">Rua 15, 100 - Centro, Águas Lindas - GO</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-yellow-500 mr-3"></i>
<span class="text-gray-400">(61) 1234-5678</span>
</li>
<li class="flex items-center">
<i class="fab fa-whatsapp text-yellow-500 mr-3"></i>
<span class="text-gray-400">(61) 98765-4321</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-yellow-500 mr-3"></i>
<span class="text-gray-400">[email protected]</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Golden Key Imóveis. Todos os direitos reservados.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">Política de Privacidade</a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">Termos de Serviço</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top bg-yellow-500 hover:bg-yellow-600 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile Menu Toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const closeMenuButton = document.getElementById('close-menu');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.add('open');
document.body.style.overflow = 'hidden';
});
closeMenuButton.addEventListener('click', () => {
mobileMenu.classList.remove('open');
document.body.style.overflow = 'auto';
});
// Close mobile menu when clicking on a link
const mobileLinks = mobileMenu.querySelectorAll('a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.remove('open');
document.body.style.overflow = 'auto';
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Back to Top Button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.add('visible');
} else {
backToTopButton.classList.remove('visible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Property card hover effect
const propertyCards = document.querySelectorAll('.property-card');
propertyCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.style.transform = 'translateY(-5px)';
card.style.boxShadow = '0 10px 25px rgba(0, 0, 0, 0.1)';
});
card.addEventListener('mouseleave', () => {
card.style.transform = '';
card.style.boxShadow = '';
});
});
// Dark mode toggle
const themeToggle = document.getElementById('theme-toggle');
const mobileThemeToggle = document.getElementById('mobile-theme-toggle');
const html = document.documentElement;
// Check for saved user preference, if any, on load of the website
if (localStorage.getItem('theme') === 'dark' || (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
html.classList.add('dark');
} else {
html.classList.remove('dark');
}
// Toggle theme
function toggleTheme() {
if (html.classList.contains('dark')) {
html.classList.remove('dark');
localStorage.setItem('theme', 'light');
} else {
html.classList.add('dark');
localStorage.setItem('theme', 'dark');
}
}
// Add event listeners
themeToggle.addEventListener('click', toggleTheme);
mobileThemeToggle.addEventListener('click', toggleTheme);
// Filter properties by location
const locationButtons = document.querySelectorAll('#properties button');
locationButtons.forEach(button => {
button.addEventListener('click', () => {
// Remove active class from all buttons
locationButtons.forEach(btn => {
btn.classList.remove('bg-yellow-500', 'text-white');
btn.classList.add('bg-gray-200', 'dark:bg-gray-700', 'text-gray-800', 'dark:text-white');
});
// Add active class to clicked button
button.classList.add('bg-yellow-500', 'text-white');
button.classList.remove('bg-gray-200', 'dark:bg-gray-700', 'text-gray-800', 'dark:text-white');
// Here you would implement the actual filtering logic
// This is just a UI demonstration
});
});
</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=RobertoAlvesdeSousa/space-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |