Created
June 9, 2025 19:39
-
-
Save goagnt24/104c93af6b36b7734f863e7dfab56fc8 to your computer and use it in GitHub Desktop.
Landing Page generada automáticamente
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Casitas Inmobiliaria - Encuentra tu hogar ideal</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script> | |
tailwind.config = { | |
theme: { | |
extend: { | |
colors: { | |
'pastel-pink': '#FFD1DC', | |
'pastel-blue': '#D1E7FF', | |
'pastel-green': '#D1FFD1', | |
'pastel-purple': '#E1D1FF', | |
'pastel-yellow': '#FFF8D1', | |
} | |
} | |
} | |
} | |
</script> | |
<style> | |
.gradient-bg { | |
background: linear-gradient(135deg, #FFD1DC 0%, #D1E7FF 50%, #E1D1FF 100%); | |
} | |
.card-hover { | |
transition: all 0.3s ease; | |
} | |
.card-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); | |
} | |
</style> | |
</head> | |
<body class="gradient-bg min-h-screen"> | |
<!-- Header --> | |
<header class="bg-white/70 backdrop-blur-sm shadow-sm sticky top-0 z-50"> | |
<nav class="container mx-auto px-6 py-4"> | |
<div class="flex items-center justify-between"> | |
<div class="flex items-center space-x-3"> | |
<div class="w-12 h-12 bg-pastel-pink rounded-full flex items-center justify-center"> | |
<span class="text-2xl">🏠</span> | |
</div> | |
<h1 class="text-2xl font-bold text-gray-800">Casitas</h1> | |
</div> | |
<div class="hidden md:flex space-x-8"> | |
<a href="#inicio" class="text-gray-700 hover:text-blue-500 transition-colors">Inicio</a> | |
<a href="#propiedades" class="text-gray-700 hover:text-blue-500 transition-colors">Propiedades</a> | |
<a href="#servicios" class="text-gray-700 hover:text-blue-500 transition-colors">Servicios</a> | |
<a href="#contacto" class="text-gray-700 hover:text-blue-500 transition-colors">Contacto</a> | |
</div> | |
<button class="bg-pastel-pink text-gray-800 px-6 py-2 rounded-full hover:bg-pink-300 transition-colors"> | |
Consulta Gratis | |
</button> | |
</div> | |
</nav> | |
</header> | |
<!-- Hero Section --> | |
<section id="inicio" class="container mx-auto px-6 py-20"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0"> | |
<h2 class="text-5xl font-bold text-gray-800 mb-6"> | |
Encuentra tu \n | |
<span class="text-blue-500">hogar ideal</span> | |
</h2> | |
<p class="text-xl text-gray-600 mb-8 leading-relaxed"> | |
En Casitas Inmobiliaria ofrecemos las mejores propiedades adaptadas a tus necesidades, con asesoría integral para encontrar tu hogar perfecto. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<button class="bg-pastel-pink hover:bg-pink-300 text-gray-800 px-8 py-3 rounded-full font-semibold transition-all duration-300 transform hover:scale-105"> | |
Ver Propiedades | |
</button> | |
<button class="border-2 border-pastel-blue bg-pastel-blue hover:bg-blue-200 text-gray-800 px-8 py-3 rounded-full font-semibold transition-all duration-300"> | |
Contacto | |
</button> | |
</div> | |
</div> | |
<div class="lg:w-1/2 flex justify-center"> | |
<div class="float-animation"> | |
<div class="w-80 h-80 bg-pastel-purple rounded-full flex items-center justify-center shadow-xl"> | |
<span class="text-8xl">🏡</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Propiedades Section --> | |
<section id="propiedades" class="py-20 bg-white/50"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h3 class="text-4xl font-bold text-gray-800 mb-4">Propiedades Destacadas</h3> | |
<p class="text-xl text-gray-600">Descubre las mejores opciones para tu nuevo hogar</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Propiedad 1 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-full h-48 bg-pastel-blue rounded-lg mb-6 overflow-hidden"> | |
<img src="path/to/property1.jpg" alt="Propiedad 1" class="w-full h-full object-cover"> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Casa de Lujo en el Centro</h4> | |
<p class="text-gray-600 text-center">3 cuartos, 2 baños, piscina y jardín.</p> | |
</div> | |
<!-- Propiedad 2 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-full h-48 bg-pastel-green rounded-lg mb-6 overflow-hidden"> | |
<img src="path/to/property2.jpg" alt="Propiedad 2" class="w-full h-full object-cover"> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Departamento Moderno</h4> | |
<p class="text-gray-600 text-center">2 cuartos, 1 baño, gimnasio y seguridad 24h.</p> | |
</div> | |
<!-- Propiedad 3 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-full h-48 bg-pastel-yellow rounded-lg mb-6 overflow-hidden"> | |
<img src="path/to/property3.jpg" alt="Propiedad 3" class="w-full h-full object-cover"> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Cabaña en las Afueras</h4> | |
<p class="text-gray-600 text-center">Naturaleza, paz y comodidad en un solo lugar.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Servicios Section --> | |
<section id="servicios" class="py-20"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h3 class="text-4xl font-bold text-gray-800 mb-4">Nuestros Servicios</h3> | |
<p class="text-xl text-gray-600">Ofrecemos soluciones personalizadas de compra, venta y alquiler</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Servicio 1 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-16 h-16 bg-pastel-blue rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<span class="text-3xl">📊</span> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Asesoría Personalizada</h4> | |
<p class="text-gray-600 text-center">Expertos en el mercado inmobiliario a tu servicio.</p> | |
</div> | |
<!-- Servicio 2 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-16 h-16 bg-pastel-green rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<span class="text-3xl">📝</span> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Trámites Legales</h4> | |
<p class="text-gray-600 text-center">Nos encargamos de toda la documentación necesaria para tu tranquilidad.</p> | |
</div> | |
<!-- Servicio 3 --> | |
<div class="card-hover bg-white rounded-2xl p-8 shadow-lg"> | |
<div class="w-16 h-16 bg-pastel-yellow rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<span class="text-3xl">🔍</span> | |
</div> | |
<h4 class="text-xl font-semibold text-gray-800 mb-4 text-center">Búsqueda Selectiva</h4> | |
<p class="text-gray-600 text-center">Localizamos las propiedades que mejor se adaptan a tus gustos y necesidades.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contacto Section --> | |
<section id="contacto" class="py-20 bg-white/50"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h3 class="text-4xl font-bold text-gray-800 mb-4">Contáctanos</h3> | |
<p class="text-xl text-gray-600">Estamos aquí para ayudarte a encontrar tu hogar</p> | |
</div> | |
<div class="grid lg:grid-cols-2 gap-12"> | |
<!-- Información de contacto --> | |
<div class="space-y-8"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 bg-pastel-pink rounded-full flex items-center justify-center"> | |
<span class="text-xl">📍</span> | |
</div> | |
<div> | |
<h4 class="font-semibold text-gray-800">Dirección</h4> | |
<p class="text-gray-600">Av. Inmobiliaria 123, Ciudad</p> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 bg-pastel-blue rounded-full flex items-center justify-center"> | |
<span class="text-xl">📞</span> | |
</div> | |
<div> | |
<h4 class="font-semibold text-gray-800">Teléfono</h4> | |
<p class="text-gray-600">+34 123 456 789</p> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 bg-pastel-green rounded-full flex items-center justify-center"> | |
<span class="text-xl">📧</span> | |
</div> | |
<div> | |
<h4 class="font-semibold text-gray-800">Email</h4> | |
<p class="text-gray-600">contacto@casitasinmobiliaria.com</p> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 bg-pastel-yellow rounded-full flex items-center justify-center"> | |
<span class="text-xl">🕒</span> | |
</div> | |
<div> | |
<h4 class="font-semibold text-gray-800">Horarios</h4> | |
<p class="text-gray-600">Lun - Vie: 9:00 AM - 6:00 PM<br>Sáb: 10:00 AM - 2:00 PM</p> | |
</div> | |
</div> | |
</div> | |
<!-- Formulario de contacto --> | |
<div class="bg-white rounded-2xl p-8 shadow-lg"> | |
<form class="space-y-6"> | |
<div> | |
<label class="block text-gray-700 font-semibold mb-2">Nombre</label> | |
<input type="text" class="w-full px-4 py-3 rounded-lg border border-gray-200 focus:border-blue-400 focus:outline-none transition-colors"> | |
</div> | |
<div> | |
<label class="block text-gray-700 font-semibold mb-2">Email</label> | |
<input type="email" class="w-full px-4 py-3 rounded-lg border border-gray-200 focus:border-blue-400 focus:outline-none transition-colors"> | |
</div> | |
<div> | |
<label class="block text-gray-700 font-semibold mb-2">Teléfono</label> | |
<input type="tel" class="w-full px-4 py-3 rounded-lg border border-gray-200 focus:border-blue-400 focus:outline-none transition-colors"> | |
</div> | |
<div> | |
<label class="block text-gray-700 font-semibold mb-2">Mensaje</label> | |
<textarea rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-200 focus:border-blue-400 focus:outline-none transition-colors"></textarea> | |
</div> | |
<button type="submit" class="w-full bg-pastel-pink hover:bg-pink-300 text-gray-800 py-3 rounded-lg font-semibold transition-colors"> | |
Enviar Mensaje | |
</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-12"> | |
<div class="container mx-auto px-6"> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<div> | |
<div class="flex items-center space-x-3 mb-4"> | |
<div class="w-10 h-10 bg-pastel-pink rounded-full flex items-center justify-center"> | |
<span class="text-xl">🏠</span> | |
</div> | |
<h4 class="text-xl font-bold">Casitas Inmobiliaria</h4> | |
</div> | |
<p class="text-gray-400">Ofrecemos la mejor asesoría para encontrar la casa de tus sueños desde 2020.</p> | |
</div> | |
<div> | |
<h4 class="font-semibold mb-4">Enlaces Rápidos</h4> | |
<ul class="space-y-2 text-gray-400"> | |
<li><a href="#inicio" class="hover:text-blue-400 transition-colors">Inicio</a></li> | |
<li><a href="#propiedades" class="hover:text-blue-400 transition-colors">Propiedades</a></li> | |
<li><a href="#servicios" class="hover:text-blue-400 transition-colors">Servicios</a></li> | |
<li><a href="#contacto" class="hover:text-blue-400 transition-colors">Contacto</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-semibold mb-4">Síguenos</h4> | |
<div class="flex space-x-4"> | |
<a href="#" class="w-10 h-10 bg-pastel-pink rounded-full flex items-center justify-center hover:bg-pink-300 transition-colors"> | |
📘 | |
</a> | |
<a href="#" class="w-10 h-10 bg-pastel-pink rounded-full flex items-center justify-center hover:bg-pink-300 transition-colors"> | |
📷 | |
</a> | |
<a href="#" class="w-10 h-10 bg-pastel-pink rounded-full flex items-center justify-center hover:bg-pink-300 transition-colors"> | |
🐦 | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
<p>© 2025 Casitas Inmobiliaria. Todos los derechos reservados.</p> | |
</div> | |
</div> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment