.produto__titulo h2,
.produto__titulo h3 {
    color: #1877f2;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin: 30px 0px 40px 0px;
}

#contador {
    color: #1877f2;
    font-weight: bold;
    position: relative;
    bottom: 2px;
}

.descricaoContador {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.rowResponsividade {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#spinnerDiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

#loadingSpinner {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


@media (max-width: 768px) {
    .produto__titulo h2, .produto__titulo h3 {
        font-size: 20px;
        margin: 30px 0px;
    }
}


.produto .owl-carousel .owl-item img {
    width: 100% !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.filtrar__localizacao input, .filtrar__localizacao select {
    border: 0px;
    border-bottom: 1px solid #bfc0c2;
    color: #1877f2;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    outline: none;
    width: 98.1%;
    height: 48px !important;
    background: transparent;
}


.filtrar__localizacao input {
    background: url("../Assets/css/img/filtro/location.svg") no-repeat center right;
    background-position-x: 98%;
}

.filtrar__localizacao .form-group {
    position: relative;
    margin-bottom: 15px;
}

    .filtrar__localizacao .form-group:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scaleY(0);
        transform-origin: bottom center;
        background: #FF9E1B57;
        z-index: -1;
        transition: transform 0.3s;
    }

    .filtrar__localizacao .form-group:hover::after {
        transform: scaleY(1);
    }


.imovel__item {
    position: relative;
    box-shadow: 0 2px 6px rgba(7, 59, 76, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    margin: 19px 10px;
    min-height: 550px !important;
    max-height: 550px !important;
    overflow: hidden;
}

    .imovel__item a {
        display: block;
        padding: 0;
        margin: 0;
        height: 100%;
        outline: none;
    }

    .imovel__item .item > a {
        padding: 0px 0px;
        outline: none;
    }

    .imovel__item .tag__imovel__texto {
        padding: 6px 15px 6px 15px;
    }

        .imovel__item .tag__imovel__texto p {
            color: #ff9e1b;
            font-weight: 700;
            font-size: 14px;
            position: relative;
        }


.imovel__item__endereco {
    min-height: 45px;
    max-height: 45px;
    padding: 55px 15px 0px 15px;
}

.imovel__item__tag .texto {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.imovel__item__tag {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: flex;
    top: 10px;
}

    .imovel__item__tag div {
        width: 80%;
    }

.owl-carousel .owl-item .imovel__item__tag div img {
    width: auto !important;
}

.imovel__item__tag p {
    border-radius: 10px;
    width: inherit;
    text-align: center;
    padding: 5px;
    background: #0000008a;
    color: #ffffff;
    font-size: 9px;
    font-weight: 400;
    margin-left: 10px;
    margin-bottom: 5px;
    width: fit-content;
}

.imovel__item__tag img {
    margin-left: auto;
}

.imovel__item__img img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.imovel__item__img__carousel {
    position: relative;
}

    .imovel__item__img__carousel .item {
        height: 200px;
        position: relative;
    }

        .imovel__item__img__carousel .item .ocupacao-tarja {
            position: absolute;
            top: -18px;
            left: -43px;
            transform: rotate(-32deg);
            transform-origin: bottom right;
            background-color: #f59c27;
            color: #0059c9;
            font-size: 11px;
            font-weight: bold;
            padding: 2px 45px;
            white-space: nowrap;
            z-index: 10;
        }

        .imovel__item__img__carousel .item img {
            width: 100% !important;
            min-height: 200px;
        }

    .imovel__item__img__carousel img {
        border-radius: 10px 10px 0px 0px;
        transition: filter 0.5s ease-in-out 0s;
    }

    .imovel__item__img__carousel .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
    }

        .imovel__item__img__carousel .owl-nav .owl-prev {
            left: 10px;
            position: absolute;
        }

        .imovel__item__img__carousel .owl-nav .owl-next {
            right: 10px;
            position: absolute;
        }

        .imovel__item__img__carousel .owl-nav i {
            font-size: 16px !important;
            color: #ffffff !important;
        }

    .imovel__item__img__carousel .owl-dots {
        position: absolute;
        bottom: 5px;
        width: 100%;
        text-align: center;
    }

        .imovel__item__img__carousel .owl-dots .owl-dot {
            display: none;
            margin: 3px;
        }

    .imovel__item__img__carousel .owl-dot span {
        background: url("../Assets/css/img/dots/off.png");
        height: 12px;
        width: 12px;
        display: block;
        background-size: contain;
    }

    .imovel__item__img__carousel .owl-dot.active span {
        background: url("../Assets/css/img/dots/on.png");
        height: 12px;
        width: 12px;
        background-size: contain;
    }

.imovel__tag__cod--flex {
    display: flex;
    align-items: center;
}

.imovel__item__cod {
    width: auto;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline; 
    gap: 10px;
    margin-top: 15px;
    margin-left: 10px;
}

.item__tag__cod {
    width: 50%;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.imovel__item__cod .btn-listadesejos {
    background: transparent;
    color: #1877f2;
    font-size: 20px;
    display: block;
    border: 0px;
}

.btn-listadesejos.favoritado i {
    color: #ff9e1b;
    font-weight: 900;
}

.imovel__item__cod .btn-listadesejos.favoritado i {
    color: #1877f2;
    font-weight: 900;
}

.imovel__item__cod .btn-listadesejos:hover i {
    color: #1877f2;
    font-weight: 900;
}

.imovel__item__img {
    height: 200px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
}

.imovel__item__cod p,
.imovel__item__cod span {
    display: inline-flex;
    align-items: center;
    margin: 0;
    white-space: nowrap;
    font-size: 11px;
    line-height: 14px;
    font-weight: 400;
    color: #1878F1;
    background-color: #F2F3F8;
    padding: 3px 8px;
    border-radius: 20px;
}

.imovel__item__cod p {
    text-transform: uppercase;
}

    .imovel__item__cod p a {
        color: #1878F1;
    }

.imovel__item__valor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 7px 15px 5px 15px;
    min-height: 80px;
    max-height: 80px;
}

    .imovel__item__valor .de {
        opacity: 0.7;
        color: #1877f2;
        font-size: 12px;
        font-weight: 400;
        text-decoration: line-through;
        margin-right: 10px;
    }

    .imovel__item__valor .valor {
        color: #000000;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 5px;
        margin-right: 10px;
    }

    .imovel__item__valor .tipo {
        opacity: 0.5;
        color: #000000;
        font-size: 12px;
        font-weight: 400;
        margin-right: 10px;
    }

.imovel__item__dorm p {
    opacity: 0.6;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    padding: 0px 15px;
}

.imovel__item__endereco p {
    opacity: 0.8;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    margin: 16px 0px 7px;
    line-height: 19px;
}

.imovel__item__informacao {
    padding: 15px 15px;
}

    .imovel__item__informacao ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .imovel__item__informacao p {
        color: #000000;
        font-size: 12px;
        font-weight: 400;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        margin-bottom: 5px;
        opacity: 0.8;
    }

.vitrine__verTodos {
    margin: 15px;
    text-align: center;
}

    .vitrine__verTodos a {
        color: #003DA5;
        background: #efefef;
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 14px;
    }

.imovel__item__informacao i {
    color: #1877f2;
    font-size: 20px;
    margin-right: 5px;
}

.imovel__item__texto {
    margin: 0px 15px;
}

    .imovel__item__texto p {
        color: #000000;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.44px;
        line-height: 26px;
        margin: 20px 0px;
    }

        .imovel__item__texto p.titulo {
            margin: 10px 0px;
        }

        .imovel__item__texto p.subtitulo {
            font-size: 16px;
            margin: 5px 0px;
            font-weight: 400;
            letter-spacing: normal;
        }

.imovel__item__btn {
    margin: 20px 15px 25px 15px;
}

.produto__carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
}

    .produto__carousel .owl-nav i {
        font-size: 18px;
        color: #1877f2;
    }

.produto__carousel .owl-prev {
    position: absolute;
    left: -15px;
}

.produto__carousel .owl-next {
    position: absolute;
    right: -15px;
}

.atEnd .inner {
    margin: 0 0 0 15px;
}

.imovel__item {
    /* max-width: 288px !important;*/
    transition: all .3s cubic-bezier(.25,.8,.25,1);
}

    .imovel__item:hover {
        box-shadow: 0 5px 14px rgb(0 0 0 / 12%);
    }

    .imovel__item .img {
        width: 100%;
    }

.siema {
    margin: 1rem 0;
}

.imovel__item__img__carousel .item {
    height: 200px;
    overflow: hidden;
    border-radius: 6px 6px 0px 0px;
}

.owl-stage .owl-item,
.owl-stage .owl-item .item,
.owl-stage .owl-item .item .imovel__item {
    overflow: hidden;
    border-radius: 6px;
}

.altura-imovel {
    min-height: 200px;
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 5px;
}

.imovel__item__laranja {
    background: #FF9E1B !important;
}

.imovel__item__azul {
    background: #1877f2 !important;
}

    .imovel__item__laranja .imovel__item__texto p, .imovel__item__azul .imovel__item__texto p {
        color: #fff;
    }

.imovel__item__laranja .imovel__item__btn .btn {
    color: #FF9E1B;
    border: 1px solid #FF9E1B;
}

.imovel__item__laranja:hover .btn {
    color: #1877f2;
    border: 1px solid #1877f2;
    background: #fff;
}

.imovel__item__azul .imovel__item__btn .btn {
    color: #1877f2;
    border: 1px solid #1877f2;
}

.imovel__item__azul :hover .btn {
    color: #FF9E1B;
    border: 1px solid #FF9E1B;
    background: #fff;
}

.exclusivo {
    position: relative;
    margin-bottom: 0px;
    margin-top: -10px;
}

@media(min-width:1200px) {
    .owl-stage .owl-item,
    .owl-stage .owl-item .item,
    .owl-stage .owl-item .item .imovel__item {
        width: 302px;
        overflow: hidden;
        border-radius: 6px;
    }
}

@media(max-width:1200px) {
    .produto .slick-next-icon {
        right: 10px;
    }

    .produto .slick-prev-icon {
        left: 10px;
    }
}

@media(min-width:568px) {
    .imovel__item__informacao li {
        width: 21%;
        margin-bottom: 10px;
        margin: 0px 4px 9px 6px;
    }
}

@media(max-width:568px) {
    .imovel__item__informacao li {
        width: 25%;
    }
}

.imovel__item .imovel__setas button {
    background: transparent;
    border: 0px;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: 47%;
}

    .imovel__item .imovel__setas button.prev {
        left: 15px;
    }

    .imovel__item .imovel__setas button.next {
        right: 15px;
    }

.imovel__item__info {
    background: red;
}

.imovel__item__infoBox {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

    .imovel__item__infoBox .btn-listadesejos {
        background: transparent;
        color: #1877f2;
        font-size: 20px;
        padding-left: 7px;
        width: 35px;
        height: 35px;
        display: block;
        border: 1px solid #91BBF1;
        border-radius: 100%;
        margin-right: 16px;
    }

.imovel__item__dorm {
    width: 100%;
}

@media screen and (width <= 960px) {
    .filtro__selecionado {
        justify-content: center;
        align-items: center;
    }

    .filtro__selecionado__ordenar {
        flex-direction: column !important;
    }

    #contador {
        position: static;
    }
}
.noticia{
  margin-bottom: 60px;
}
.noticia__titulo{

  margin: 40px 0px;
}
    .noticia__titulo h4 {
        text-align: center;
        color: #1877f2;
        
        font-size: 28px;
        font-weight: 400;
    }

    .noticia__titulo h2 {
        text-align: left;
        color: #1877f2;
        font-family: "Rubik";
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 22px;
    }
    .noticia__titulo p {
        text-align: center;
        height: 22px;
        color: #999999;
        font-size: 18px;
        font-weight: 400;
        margin-top: 12px;
    }

.noticia__item__img,
.noticia__item__img img{
  border-radius: 15px;
  position: relative;
  border-radius: 10px;
}
.noticia__item__tag{
  position: absolute;
  bottom: 11px;
  left: 10px;
}
.noticia__item__tag p{
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 20px;
  background-color: #FF9E1B;
  padding: 5px 10px;
}
.noticia__item__texto p{
  color: #1877f2;
  
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0px 20px 0px;
  line-height: 26px;
}
.noticia__item__texto p.data{
    color: #FF9E1B;
    font-size: 13px;
    font-weight: 600;
    margin: 10px 0px !important;
    line-height: inherit;
}
.noticia__item__link p{
  color: #FF9E1B;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
}

.noticia__carousel .owl-nav .owl-prev{
  left: 10px;
  position: absolute;
}
.noticia__carousel .owl-nav .owl-next{
  right: 10px;
  position: absolute;
}
.noticia__carousel .owl-nav i{
  font-size: 16px !important;
  color: #ffffff !important;
}
.noticia__carousel .owl-carousel .owl-item img {
    width: auto;
    margin: auto;
}
.noticia__carousel .noticia__item{
  padding: 11px;
}
.noticia__data {
    font-size: 12px;
    color:#FF9E1B;
}
.noticia.imovel__artigo .owl-dots {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}
.noticia.imovel__artigo .owl-dot {
    display: block;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #257ce1;
    float: left;
    margin: 5px;
}
    .noticia.imovel__artigo .owl-dot.active {
        background: #FF9E1B;
        border: 1px solid #FF9E1B;
    }
@media(max-width:1200px){
    .noticia__item {
        width: 274px;
        margin: auto
    }
}
@media(min-width:1200px) {
    .noticia.imovel__artigo .owl-dots {
        display:none !important;
    }
}
