Spaces:
Running
Running
<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> |