.navbar a:hover {
    color: #000000;
    background-color: #ffffff;
    /* Nuevo color al pasar el mouse */
}

.house-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.house-card {
    text-align: center;
    margin-bottom: 20px;
}

.house-card .btn {
    margin-top: 10px;
    font-weight: bold;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f0;
    padding: 15px 30px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    font-size: 28px;
    font-weight: bold;
    color: #cccccc;
    margin-right: 5px;
}

.logo-text {
    color: #444;
}

.highlight {
    color: #999;
}

/* Botón de presupuesto */
.cta {
    font-size: 14px;
    color: #444;
}

/* Barra superior gris */
.top-bar {
    width: 100%;
    height: 30px;
    /* Ajusta la altura según lo necesites */
    background-color: #d3d3d3;
    /* Color gris */
}