.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: #000000;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb > span {
    color: #6c757d;
}


    .card {
    transition: transform 0.2s;
    margin-bottom: 20px;
    position: relative;
    background: inherit;
    border-color: transparent;
    }
    
    .card:hover {
    transform: scale(1.02);
    }
    
    .card-img-top {
        aspect-ratio: 3 / 2;
        border-radius: 15px;
        object-fit: cover;
        margin-bottom: 18px;
        max-width: 100%;
        height: auto;
    }
    
    
    .card-body {
        padding: 0px;
    }
    
    .card-body svg{
        width: 18px;
        height: auto;
        fill: #1db2ff;
    }
    
    
    .card-title {
        font-size: 17px;
        font-weight: 700;
        color: rgb(51, 51, 51);
    }
    
    .card-location{
        margin-bottom: 8px;
    }
    
    .card-location p{
        font-size: 14px;
        color: gray;
        font-weight: 500;
        display: flex;
        column-gap: 5px;
        line-height: 21px;
        margin-bottom: 0px;
    }
    
    .card-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    }
    .card-price {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 10px;
        align-items: center;
    }
    


.search-bar {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
}

.search-bar-line {
    display: flex;
    gap: 20px;
}
.search-bar select, .search-bar button, .form-control {
    height: 50px;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
}


.search-bar select, .form-control {
    background-color: #e0e0e0;
    color: #333;
}
.search-bar button {
    background-color: #89704b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.advanced-search {
    display: none;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}
.advanced-search.active {
    display: grid;
    gap: 20px;
}
.show-advanced {
    cursor: pointer;
    color: #89704b;
    margin-top: 15px;
}
    
.search-bar-line .form-select,
.search-bar-line .form-group {
    flex: 1; /* Faz com que ambos os elementos ocupem 50% do espaço disponível */
}


/* Contêiner da lista de sugestões */
.suggestions-list {
    position: absolute;
    width: 100%;
    background: #e0e0e0;
    border: 1px solid #ddd;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
}

/* Estilo de cada item da lista */
.suggestions-list li {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

/* Estilo do hover nos itens da lista */
.suggestions-list li:hover {
    background: #007bff;
    color: white;
}

/* Estilo quando não há resultados */
.suggestions-list li.no-results {
    font-style: italic;
    color: gray;
    padding: 12px;
}

.rhea_price_slider_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rhea_price_slider {
    width: 70%;
    margin-right: 20px; /* Distância entre o slider e os valores */
    height: 10px;
}

.rhea_price_slider .ui-slider-range {
    background: #89704b; /* Cor verde da faixa */
    border-radius: 30px; /* Barras arredondadas */
}

.rhea_price_slider .ui-slider-handle {
    width: 20px; /* Tamanho das alças */
    height: 20px; /* Tamanho das alças */
    background-color: #6e5a3c; /* Cor laranja das alças */
    border-radius: 50%; /* Alças arredondadas */
    cursor: pointer; /* Cursor pointer ao passar sobre as alças */
}

/* Efeito ao passar o mouse sobre a alça */
.rhea_price_slider .ui-slider-handle:hover {
    background-color: #604e35; /* Cor laranja mais clara */
}

/* Efeito ativo da alça (ao clicar e arrastar) */
.rhea_price_slider .ui-slider-handle:active {
    background-color: #52432d; /* Cor vermelha ao arrastar */
}

/* Faixa não preenchida (fundo do slider) */
.rhea_price_slider .ui-widget-content {
    background: #e0e0e0; /* Cor cinza claro */
    border-radius: 10px; /* Barras arredondadas */
}

.rhea_price_range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 22%;
}

.rhea_price_label {
    margin: 0 5px;
}

.rhea_price_display {
    font-weight: bold;
}

.photo-count-overlay {
    position: absolute;
    display: flex;
    line-height: initial;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255);
    padding: 1.5px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.photo-count-overlay svg {
    margin-bottom: 1px;
    width: 12px; /* Ajusta o tamanho do ícone */
    fill: #1db2ff;/* Garante que o ícone fique branco */
    margin-left: 2px;
    margin-right: 2px;
}

.photo-count-overlay span {
    font-size: 12px;
    line-height: initial;
    color: #1db2ff;
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
}

.rhea-ultra-properties-pagination {
    text-align: center;
    margin-bottom: 20px;
}

.rhea-pagination-clean {
    display: inline-flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.rhea-pagination-clean .real-btn {
    display: inline-block;
    min-width: 40px;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #e6e1da;
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-contact{
    background-color: #816846;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;

}

.btn-contact:hover{
    background-color: #675338;
}

.rhea-pagination-clean .real-btn:hover {
    background-color: #816846;
    color: white;
}

.rhea-pagination-clean .real-btn.current {
    background-color: #816846;
    color: white;
}


    
/* Responsividade: máximo 3 cards por linha */
@media (min-width: 1200px) {
    .col-lg-4 {
        flex: 0 0 33.33%; /* 3 cards por linha em telas grandes */
    }
}

/* Responsividade: 2 cards por linha em telas médias */
@media (max-width: 1199px) and (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%; /* 2 cards por linha */
    }
}
/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
    }

    /* Ajustar a largura das colunas em dispositivos menores */
    .col-md-4 {
        flex: 1 1 100%; /* Faz com que os cards ocupem 100% da largura em telas pequenas */
    }


    /* Ajustar os espaçamentos e layouts */
    .search-bar {
        padding: 10px;
    }

    .search-bar-line {
        flex-direction: column; /* Empilha os campos de pesquisa em dispositivos pequenos */
        gap: 10px;
        flex: none;
    }

    .search-bar-line .form-select {
        flex: none;
    }

    .search-bar select, .search-bar button, .form-control {
        width: 100%; /* Garante que os inputs e botões ocupem toda a largura disponível */
    }

    .card-title {
        font-size: 16px;
    }

    .card-location p {
        font-size: 13px;
    }

    .card-price p {
        font-size: 15px;
    }

    .rhea_price_slider_wrapper {
        flex-direction: column;
        gap: 10px;
    }


    .rhea_price_range {
        width: 70%;
        margin-top: 10px;
        justify-content: center;
        gap: 5px;
    }

    .advanced-search {
        width: 100%;
    }

    .show-advanced {
        text-align: center;
    }
}

