body {
    background: #f8f9fa;
    color: #212529;
}


/* HERO */

.hero-section {
    background: white;
    border-bottom: 1px solid #e9ecef;
}


/* CARDS */

.card-imovel {
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-imovel:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.10) !important;
}


/* IMAGENS */

.imagem-imovel {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.imagem-placeholder {
    height: 220px;
    background: #e9ecef;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #6c757d;
}


/* DETALHE */

.imovel-imagem-detalhe {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.imovel-imagem-placeholder {
    min-height: 350px;

    background: #e9ecef;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #6c757d;

    border-radius: 0.5rem;
}


/* LINKS */

a {
    text-decoration: none;
}


/* RESPONSIVO */

@media (max-width: 576px) {

    .hero-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .imagem-imovel {
        height: 200px;
    }

    .imagem-placeholder {
        height: 200px;
    }

}

/* BUSCAS POPULARES */

.popular-search-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.popular-search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.10) !important;
}