/* Falha ao minimizar. Retornando o conteúdo não minimizado.
(18,38): run-time error CSS1046: Expect comma, found '0'
(18,41): run-time error CSS1046: Expect comma, found '/'
(20,32): run-time error CSS1039: Token not allowed after unary operator: '-white'
(52,25): run-time error CSS1039: Token not allowed after unary operator: '-white'
(70,29): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(76,25): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
.imoveis {
    padding: 125px 0px;
}

    .imoveis .btn-print {
        border: 0px;
        padding: 6px;
        margin-bottom: 17px;
        margin-left: auto;
        font-size: 16px;
        background: #e7e7e7;
        color: #443c3c;
        border-radius: 6px;
    }

    .imoveis .card {
        position: relative;
        box-shadow: 0 5px 14px rgb(0 0 0/12%);
        border-radius: 10px;
        background-color: var(--white);
        height: 100%;
        cursor: pointer;
    }

        .imoveis .card:hover {
            background-color: #f6f6f6;
        }

    .imoveis a {
        text-decoration: none;
        color: #504f4f;
    }

    .imoveis .card .card-item-img {
        height: 250px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        overflow: hidden;
        position: relative;
    }

        .imoveis .card .card-item-img img {
            object-fit: cover;
            vertical-align: bottom;
            height: 100%;
            width: 100%;
        }

        .imoveis .card .card-item-img .images {
            position: absolute;
            bottom: 0px;
            color: var(--white);
            right: -5px;
        }

    .imoveis .card .card-item {
        padding: 15px 15px;
        border-bottom: 1px solid #f2f2f2;
    }

        .imoveis .card .card-item .value {
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            margin-right: 10px;
        }

            .imoveis .card .card-item .value span {
                color: var(--primary);
                font-size: 19px;
                text-transform: none;
            }

        .imoveis .card .card-item svg {
            color: var(--primary);
            font-size: 16px;
            margin-right: 5px;
        }

@media (max-width: 992px) {
    .imoveis {
        padding: 80px 0px;
    }
}

@media (max-width: 768px) {
    .imoveis {
        padding: 125px 0px;
    }
}



