body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    margin: 0;
}

/* HEADER */
.header {
    background: #0a2540;
    padding: 20px;
    color: white;
}

.header h1 {
    margin: 0;
}

/* BUSCADOR */
.search-bar {
    background: white;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
}

.search-bar select,
.search-bar button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.search-bar button {
    background: #ff5a5f;
    color: white;
    border: none;
    cursor: pointer;
}

/* GRID */
.container {
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* IMAGEN */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENIDO */
.card-body {
    padding: 15px;
}

.price {
    color: #ff5a5f;
    font-size: 20px;
    font-weight: bold;
}

.title {
    font-size: 16px;
    margin: 5px 0;
}

.location {
    color: #777;
    font-size: 14px;
}

/* FEATURES */
.features {
    font-size: 13px;
    margin-top: 10px;
    color: #444;
}

/* BOTÓN */
.btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background: #0a2540;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}