/* Estilos básicos para el sitio web de Hogares México */

/* Variables CSS */
:root {
    --primary-color: #ea5a1f;
    --secondary-color: #2c3e50;
    --success-color: #28a745;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 6px 20px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-large: 15px;
    --transition: all 0.3s ease;
}

/* Estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Navbar personalizada */
.custom-navbar {
    background: var(--primary-color) !important;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-medium);
}

/* Botón de WhatsApp */
.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

/* Tarjetas de propiedades */
.property-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* Mapa */
#map {
    height: 500px;
    width: 100%;
    border-radius: var(--border-radius);
}

/* Responsive */
@media (max-width: 768px) {
    .property-card {
        margin-bottom: 1rem;
    }
    
    #map {
        height: 400px;
    }
}
