/* Estilos inspirados en Zillow para Forteza11 */
:root {
    --zillow-blue: #006aff;
    --zillow-text: #2a2a33;
    --zillow-bg: #ffffff;
    --zillow-border: #d1d1d5;
    --forteza-orange: #e67e22; /* Color del logo */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--zillow-text);
    background-color: #f9f9fb;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid var(--zillow-border);
    background: white;
}

.navbar-brand img {
    height: 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.search-container {
    background: white;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Property Cards */
.property-card {
    border: 1px solid var(--zillow-border);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.property-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.property-details {
    padding: 15px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.property-info {
    font-size: 0.9rem;
    color: #545456;
}

.property-address {
    font-size: 0.9rem;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
footer {
    background: white;
    border-top: 1px solid var(--zillow-border);
    padding: 40px 0;
    margin-top: 50px;
}
