@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@-webkit-keyframes slide-fwd-tl {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
    }

    100% {
        -webkit-transform: translateZ(160px) translateY(-100px) translateX(-100px);
        transform: translateZ(160px) translateY(-100px) translateX(-100px);
    }
}

@keyframes slide-fwd-tl {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
    }

    100% {
        -webkit-transform: translateZ(160px) translateY(-100px) translateX(-100px);
        transform: translateZ(160px) translateY(-100px) translateX(-100px);
    }
}

@keyframes scale-up-center-edit {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    25% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    50%{
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75%{
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }


@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@-webkit-keyframes slide-bot {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@keyframes slide-bot {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes combined-animation {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0) scale(0);
        transform: translateZ(0) translateY(0) translateX(0) scale(0);
    }

    100% {
        -webkit-transform: translateZ(160px) translateY(-100px) translateX(-100px) scale(1);
        transform: translateZ(160px) translateY(-100px) translateX(-100px) scale(1);
    }
}

@keyframes combined-animation {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0) scale(0);
        transform: translateZ(0) translateY(0) translateX(0) scale(0);
    }

    100% {
        -webkit-transform: translateZ(160px) translateY(-100px) translateX(-100px) scale(1);
        transform: translateZ(160px) translateY(-100px) translateX(-100px) scale(1);
    }
}

@-webkit-keyframes bubble-animation {
    0% {
        -webkit-transform: translateZ(-160px) translateY(100px) translateX(100px) scale(0) rotate(0deg);
        transform: translateZ(-160px) translateY(100px) translateX(100px) scale(0) rotate(0deg);
    }
    
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0) scale(1) rotate(45deg);
        transform: translateZ(0) translateY(0) translateX(0) scale(1) rotate(45deg);
    }
}

@keyframes bubble-animation {
    0% {
        -webkit-transform: translateZ(-160px) translateY(100px) translateX(100px) scale(0) rotate(0deg);
        transform: translateZ(-160px) translateY(100px) translateX(100px) scale(0) rotate(0deg);
    }
    
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0) scale(1) rotate(45deg);
        transform: translateZ(0) translateY(0) translateX(0) scale(1) rotate(45deg);
    }
}

.combined-animation {
    animation: combined-animation 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

:root {
    --cdi-color-primary: #141414;
    --cdi-color-secundary: #9c9c9c;
    --cdi-destaque: #9e1418;
    --cdi-color-primary-gradient: #000;
    --cdi-placeholder: #6d6d6dc7;
    --cdi-color-contraste: #fff;
    --cdi-color-footer: slategray;
    --cdi-fundo-claro: #ddd;
}


/* Estilo do viewerJS */

#thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.scale-up-center-edit {
	-webkit-animation: scale-up-center-edit 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center-edit 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation-delay: 1s;
            animation-duration: 2s;
}

.thumb {
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumb:hover {
    border: 2px solid red;
}


/* Estilo dos Inputs */
/* From Uiverse.io by mrhyddenn */
.form__group {
    position: relative;
    padding: 0px;
    width: 100%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 12px;
    color: var(--cdi-color-secundary);
    padding: 15px 0;
    background: transparent;
    transition: border-color 0.2s;
    border-radius: 0px;
    padding-bottom: 0px;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 12px;
    cursor: text;
    top: 15px;

}

.form__label {
    position: absolute;
    top: 0;
    display: block;

    transition: 0.2s;
    font-size: 12px;
    color: var(--cdi-color-secundary);
    pointer-events: none;
}

.form__field:focus {
    padding-bottom: 6px;
    border-width: 3px;
    border-image: linear-gradient(to right, var(--cdi-color-secundary), var(--cdi-color-primary));
    border-image-slice: 1;
    padding-bottom: 0px;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: var(--cdi-color-secundary);
    font-weight: 700;
}

.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

.modal-title {
    color: var(--cdi-color-secundary);
}

/* Estilo number input */
/* Para WebKit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.cdi-fa-solid{
    cursor: pointer;
}

.fechar-list{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 51;
    background-color: transparent;
}

.botaoAumentar {
    font-size: 13px;
}

.increment {
    z-index: 2;
    content: "\f0d8";
}

.controlerNumber {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

/* Estilos do slider de numero */
.range-container {
    position: relative;
    height: 6px;
}

.range-slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
    top: -1px;
    /* Impede interferências entre os sliders */
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: transparent;
    outline: none;
    margin: 0;
}

/* Barra de preenchimento entre os seletores */
.slider-track {
    position: relative;
    height: 6px;
    background: var(--cdi-color-secundary);
    /* Cor da barra preenchida */
    border-radius: 3px;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    bottom: -3px;
}

.slider-track-area {
    position: relative;
    height: 6px;
    background: var(--cdi-color-secundary);
    /* Cor da barra preenchida */
    border-radius: 3px;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    bottom: -3px;
}


/* Estilizando os "thumbs" (pontos deslizantes) */
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--cdi-color-secundary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    /* Permite arrastar os thumbs */
    position: relative;
    z-index: 2;
}

.range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--cdi-color-secundary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
}

.fa-ajuste {
    display: flex;
    align-items: center;
}

.botao-selecionado {
    background-color: var(--cdi-color-secundary);
    color: var(--cdi-color-contraste);
}

.slide-top {
    color: var(--cdi-color-contraste);
    background-color: var(--cdi-color-primary);
    width: fit-content;
    margin: 0px;
    font-weight: bold;
    font-size: 12px;
    padding: 0px 12px;
    border-radius: 0px 0px 0px 15px;
}

.destaque-banner {
    z-index: 1;
    border-radius: 5px 5px 5px 0px;
    position: absolute;
    font-weight: bold;
    font-size: 10px;
    top: 11px;
    left: -14px;
    padding: 5px 5px;
    background: mediumseagreen;
    color: white;
    text-align: center;
}


.modal-content {
    background-color: var(--cdi-color-contraste);
    color: var(--cdi-color-primary);
}


.card-imovel::before {
    position: absolute;
    top: 22px;
    left: -0.5rem;
    content: '';
    background: mediumseagreen;
    height: 28px;
    width: 28px;
    transform: rotate(45deg);
}

.card-before-none::before {
    display: none;
}


.destaque-card {
    z-index: 3;
    position: absolute;
    background-color: var(--cdi-color-secundary);
    text-align: center;
    line-height: 50px;
    width: 100px;
    height: 50px;
}

.destaque-card:after {
    content: "";
    position: absolute;
    top: 0px;
    transform: skew(20deg);
    right: -15px;
    width: 30px;
    height: inherit;
    background-color: var(--cdi-color-secundary);
}

.codigo-card {
    z-index: 2;
    right: 0px;
    left: auto;
    top: -20px;
    text-align: right;
}

.tipo-card {
    z-index: 2;
    right: auto;
    left: 0px;
    bottom: -20px;
    text-align: right;
}

.image-tiktok {
    height: 200px;
    width: auto;
    position: absolute;
    z-index: 1;
}

.blur-card {
    display: flex !important;
    justify-content: center;
}

.slide-bot {
    color: var(--cdi-color-contraste);
    background-color: var(--cdi-color-secundary);
    width: fit-content;
    margin: 0px;
    font-weight: bold;
    font-size: 10px;
    padding: 0px 12px;
    border-radius: 0px 15px 0px 0px;
}

.icone-dropdown {
    min-width: 137px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

html {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--cdi-color-contraste);
    color: var(--cdi-color-primary);
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--cdi-color-contraste);
}

main {
    background-color: var(--cdi-fundo-claro);
    color: var(--cdi-color-primary);
}

.inputGroup {
    font-family: 'Poppins', sans-serif !important;
}

.telefone-cabecalho {
    color: var(--cdi-color-contraste);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 12px;
}

.navbar-collapse {
    flex-basis: auto;
    flex-grow: 0;
}

.container {
    max-width: 100%;
    margin: 0px 20px;
}

.blur-card {
    font-size: 28px;
    z-index: 2;
    left: 0;
    width: 100%;
    top: 0;
    text-align: right;
    align-items: center;
}



.blur-desc {
    padding: 0px 10px;
    margin: 15px;
    border-radius: 15px;
    background-color: var(--cdi-color-primary);
    text-align: center;
    color: var(--cdi-color-contraste);
    font-weight: bold;
    text-shadow: #000 3px 3px 5px;
}

.fecharNav {
    height: 100vh;
    position: fixed;
    z-index: 4;
    width: 100vw;
}

.navbar {
    z-index: 9;
    top: 0;
    width: 100%;
    position: fixed;
}

.text-destaque {
    color: var(--cdi-destaque);
}

.trocar {
    width: 100%;
    text-align: end;
    margin-top: 10px;
    color: gray;
    cursor: pointer;
}

.nav-item {
    cursor: pointer;
    color: var(--cdi-color-contraste);
    text-align: center;
}

.nav-item a .text-white {
    color: var(--cdi-color-contraste);
}

.nav-item:hover {
    color: var(--cdi-destaque) !important;
}

.drop-link {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 8px;
}

.nav-item:hover {
    color: var(--cdi-destaque);
}

.destaque-hover:hover {
    color: var(--cdi-destaque) !important;
}

.carousel-control-next {
    width: 9%;
}

.carousel-slide-top {}

.carousel-control-prev {
    width: 9%;
}

.nav-link {
    color: var(--cdi-color-contraste);
    font-size: 14px;
    margin: 0px;
    font-weight: bold;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--cdi-destaque);
}

.fa-footer {
    cursor: pointer;
}

.link-footer {
    text-decoration: none;
    color: var(--cdi-color-contraste);
}

.carousel-btn-troca {
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
}

.float-button {
    width: min-content;
    position: fixed;
    right: 10px;
    top: 40vh;
    z-index: 5;
    background-color: white;
    border: #acacac solid 1px;
    border-radius: 30px;
    text-align: center;
    color: var(--cdi-color-primary);
    cursor: pointer;
}

.float-icon {
    padding: 10px;
    color: black;
}

.instagram {
    background-image: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

.telefone-cabecalho-colapse {
    display: none;

}

.fundo-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    border-radius: 15px;
    border: 1px solid gray;
}

.up-button {
    color: var(--cdi-color-primary);
    position: fixed;
    right: 10px;
    bottom: 20px;
    text-align: center;
    align-content: center;
    border-radius: 5px;
    z-index: 50;
    background-color: var(--cdi-color-contraste);
    border: #acacac solid 2px
}

.contato-button {
    color: #ffffff;
    position: fixed;
    font-size: 29px;
    width: 50px;
    height: 50px;
    right: 11px;
    bottom: 75px;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    z-index: 50;
    background-color: #25d366;
    border: #acacac solid 2px;
}

.contato-item {
    display: flex;
    flex-direction: row;
}


.contato-body::-webkit-scrollbar {
    width: var(--sb-size);
}

.contato-body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 30px;
}

.contato-body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 30px;
}

@supports not selector(::-webkit-scrollbar) {
    .contato-body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

.slide-fwd-tl {
    -webkit-animation: slide-fwd-tl 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-fwd-tl 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.scale-up-center {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


.contato-body {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #868686;
    --sb-size: 11px;
    max-height: 90vh;
    padding: 20px;
    width: max-content;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
}

.bubble-bottom-left:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    background-color: #fff;
    transform: rotate(45deg);
    left: 127px;
    z-index: 53;
    bottom: 140px;
    animation: bubble-animation 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.contato-separador {
    margin-top: 5px;
    border-bottom: 1px solid #acacac;
}

.contato-link {
    cursor: pointer;
    color: var(--cdi-color-primary);
    text-decoration: none;
}

.contato-card {
    background-color: white;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 15px;
    border: 1px solid #cdcdcd;
}

.contato-titulo {
    margin: 0px;
    padding: 3px;
    font-size: 14px;
    background-color: var(--cdi-fundo-claro);
}

.contato-grupo {
    margin: 10px;
    font-size: 12px;
}

.contato-list {
    display: flex;
    color: black;
    position: fixed;
    right: -48px;
    bottom: -50px;
    text-align: center;
    border-radius: 15px;
    z-index: 52;
    flex-direction: column-reverse;
    justify-content: flex-start;
}

.navbar-nav {
    flex-wrap: wrap;
}


.up-float-icon {
    margin: 5px;
    border: solid 1px #acacac;
    font-size: 17px;
    padding: 8px;
}

.title {
    color: var(--cdi-destaque);
    text-align: center;
    width: 100%;
}

.text-white {
    color: var(--cdi-color-contraste) !important;
    text-decoration: none;
}

.contato-container {
    margin: 20px;
    padding: 7px;
    border: var(--cdi-color-primary) solid 3px;
    border-radius: 20px;
}

.icon-contato {
    height: 17px;
    width: 17px;
    text-align: center;
    margin-right: 6px;
}

.input-contato {
    border: none #acacac 1px;
    border-bottom: solid var(--cdi-color-primary) 1px;
    color: var(--cdi-color-primary);
    margin: 5px;
    padding: 5px;
}

.textarea-contato {
    width: 100%;
}

.captcha-cdi {
    margin: 5px;
}

.scrolled {
    background-color: var(--cdi-color-primary);
}

.form-container {
    margin: 20px;
    padding: 7px;
    border: var(--cdi-color-primary) solid 3px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.inputGroup {
    margin: 0.7em 0 0.7em 0 !important;
}

::-webkit-input-placeholder {
    color: var(--cdi-placeholder);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--cdi-placeholder);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--cdi-placeholder);
}

:-ms-input-placeholder {
    color: var(--cdi-placeholder);
}

.btn-cdi {
    background: linear-gradient(var(--cdi-color-primary), var(--cdi-color-primary));
    color: var(--cdi-color-contraste);
    margin: 5px;
}

.btn-cdi:hover {
    background: linear-gradient(90deg, var(--cdi-color-primary), var(--cdi-color-primary), var(--cdi-destaque), var(--cdi-color-primary), var(--cdi-color-primary));
    color: var(--cdi-color-contraste);
    margin: 5px;
}

.btn-cdi:focus-visible {
    background: linear-gradient(90deg, var(--cdi-color-primary), var(--cdi-color-primary), var(--cdi-destaque), var(--cdi-color-primary), var(--cdi-color-primary));

}

.space-top {
    background-color: var(--cdi-color-primary);
    height: 80px;
}

.rich-text-space {
    margin: 20px;
}

.contato-div {
    display: flex;
    flex-direction: row;
}

.divisao {
    width: 50%;
}

.banner-destaque1 {
    background-color: var(--cdi-color-primary);
    width: 100%;
    padding: 50px 0px;
    color: var(--cdi-color-contraste);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner-destaque2 {
    background-color: var(--cdi-color-contraste);
    width: 100%;
    padding: 50px 0px;
    color: var(--cdi-color-primary);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner-destaque3 {
    background-color: var(--cdi-color-primary);
    width: 100%;
    padding: 50px 0px;
    color: var(--cdi-color-contraste);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.conjunto-select-numeros {
    border: 1px solid black;
}

.inputFiltroPrincipal {
    background-color: transparent;
    border: #6c757d 1px solid
}

.filtro-card {
    box-shadow: black 3px 3px 14px 0px;
    background-color: #ffffffcc;
    color: var(--cdi-color-secundary);
    border-radius: 15px;
    padding: 10px 20px;
    z-index: 5;
    width: 800px;
}

.tamanho-input {
    max-width: 163px;
}

.filtro-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: -webkit-fill-available;
    justify-content: space-between;
    align-items: flex-end;
}

.filtro-btn {
    padding: 5px 15px;
    background-color: var(--cdi-color-secundary);
    color: var(--cdi-color-contraste);
    border-radius: 10px;
}

.filtro-submit {
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.filtro-grupo {
    display: flex;
    flex-direction: row;
    width: 33%;
}

.checkInferior {
    padding: 0px 5px !important;
}

.btn-bairro {
    display: block;
    width: 100%;
    padding: 0px .75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border-bottom: 2px solid #9b9b9b;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-icone-pesquisa {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0px var(--bs-border-radius) var(--bs-border-radius) 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.smallLabel {
    text-align: center;
    width: 100%;
}

.up {
    z-index: 6;
}

.filtro-grupo-small {
    display: flex;
    flex-direction: row;
    padding: 0px;
    width: 23%;
    gap: 5px;
    align-items: flex-end;
}

.filtro-area {
    width: 100%;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    justify-content: center;
    background-color: transparent;
    margin-top: 70px;
    z-index: 5;
}

.banner-destaque4 {
    background-color: var(--cdi-color-contraste);
    width: 100%;
    padding: 50px 0px;
    color: var(--cdi-color-primary);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.carousel-indicators {
    z-index: 7;
}


.manutencao-text {
    width: 60%;
    padding: 0px 60px;
}

.manutencao-image {
    display: flex;
    margin-left: 60px;
    width: 40%;
    text-align: center;
    justify-content: center;
    align-items: center;
}


.carousel-inner {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.carousel-inner-size {
    width: 38vw;
}

.banner-selo {
    width: 100%;
    background-color: var(--cdi-color-primary);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: var(--cdi-color-contraste);
    justify-content: space-evenly;
    padding: 50px 0px;
    box-shadow: 0px 0px 16px var(--cdi-color-primary);
    margin: 50px 0px;
}


.banner-caracteristicas {
    width: 100%;
    background-color: var(--cdi-color-primary);
    display: flex;
    flex-direction: row;
    color: var(--cdi-color-contraste);
    flex-wrap: nowrap;
    justify-content: space-evenly;
    padding: 50px 0px;
    box-shadow: 0px 0px 16px var(--cdi-color-primary);
    margin: 50px 0px;
}

.banner-item {
    text-align: center;
    align-items: center;
    margin: 20px;
}

.espaca-icon {
    height: 53px;
    width: 100%;
}


.big-icon {
    font-size: 42px;
    margin-bottom: 5px;
}

#contato {
    margin-top: 50px;
}

.home-page-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: var(--cdi-color-footer);
    color: var(--cdi-color-contraste);
    padding: 15px;
    align-items: center;
}

.titulo {
    text-align: center;
}

.icon-footer-group {
    font-size: 30px;
}

.cdi-subtitulo {
    margin: 40px;
}

.team-title {
    color: var(--cdi-destaque);
    font-size: 24px;
    font-weight: bold;
}

.team-description {
    font-size: 14px;
}

.caracteristica-descricao {
    font-size: 14px;
}

.images-equipe {
    display: flex;
    flex-direction: row;
}

.third {
    text-align: center;
    width: 33.33%;
    padding: 8px;
}

.page-link {
    color: var(--cdi-color-primary);
}

.image-resize {
    overflow: hidden;
    width: auto;
}

.pagination-cards {
    display: flex;
    justify-content: center;
}

.images-container {
    width: 100%;
    background-color: var(--cdi-color-primary);
    display: flex;
    gap: 7px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.nav-icon {
    height: 20px;
    width: 20px;
}

.input-senha {
    border-radius: 20px 0px 0px 20px !important;
}

.card-imovel {
    border-radius: 20px 0px 20px 20px;
}

.carousel-black {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    margin-right: -100%;
    background-color: #00000077;
    height: 600px;
    z-index: 1;
}

.carousel {
    display: flex;
    justify-content: center;
}

.card-info-icon {
    display: flex;
    font-size: 14px;
}

.valor-old {
    text-decoration: line-through;
    color: #b30000;
    font-size: 10px;
    text-align: start;
}


.grupo-list-contato{
    border-top: 1px solid var(--cdi-color-primary)
}

.valor {
    align-self: flex-end;
    font-size: 14px;
    text-align: end;
}


.card-valor-direito {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--cdi-color-primary);
    background-color: var(--cdi-color-primary);
    color: var(--cdi-color-contraste);
    font-weight: bold;
    width: 97%;
    font-size: 14px;
    border-radius: 10px;
    margin: 0px 0px 0px 5px;
}

.valor-tamanho {
    width: 100%;
}

.card-valor-esquerdo {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--cdi-color-primary);
    background-color: var(--cdi-color-primary);
    color: var(--cdi-color-contraste);
    font-weight: bold;
    width: 97%;
    font-size: 14px;
    border-radius: 10px;
    margin: 0px 5px 0px 0px;

}

.card-valor {
    display: flex;
    justify-content: space-between;
    border: 2px solid var(--cdi-color-primary);
    background-color: var(--cdi-color-primary);
    color: var(--cdi-color-contraste);
    font-weight: bold;
    width: 100%;
    font-size: 14px;
    border-radius: 10px;
    align-items: center;
}

.card-imovel-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 200px;
}

.card-codigo {
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}

.card-bairro {
    font-size: 14px;
    font-weight: bold;
}


.card-cidade {
    font-size: 12px;
    margin: 0px
}

.card-endereco {
    font-size: 12px;

}

.carousel-card {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    margin-right: -100%;
    height: 200px;
    z-index: 1;
}

.input-group {
    align-items: center;
}

.botao-senha {
    justify-content: center;
    text-align: center;
    border-radius: 0px 20px 20px 0px !important;
    font-size: 100%;
    padding: 0.65em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    border-left: none;
    background-color: transparent;
    width: 100%;
}


.videos-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.cointainer-dividir {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 15px;
}

.container-imagens {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 15px;
    background-color: var(--cdi-color-primary);
}

.container-videos {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 15px;
}

.videos-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
}

.videos-left {
    display: flex;
    justify-content: start;
    margin: 10px;
}

.videos-right {
    margin: 10px;
    display: flex;
    justify-content: end;
}

.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    margin: 0.6em 0 0.6em 0;
    position: relative;
}

.video-edit {
    width: 440px;
    height: 260px;
}

.inputGroup input {
    font-size: 100%;
    padding: 0.4em;
    padding-left: 1em;
    outline: none;
    color: var(--cdi-color-primary);
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
}

.inputGroup textarea {
    font-size: 100%;
    padding: 0.4em;
    padding-left: 1em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
}



.pesquisa-bairro {
    right: 6px;
    top: 2px;
    background: red;
    position: absolute;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    min-width: 14px;
}

.pesquisa-tipo {
    top: 2px;
    right: 6px;
    background: red;
    position: absolute;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    min-width: 14px;
}

.btn-pesquisa-tipo {
    font-size: 12px;
    padding: 0px;
    padding-bottom: 2px;
    display: flex;
    text-align: start;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-bottom: 2px solid #9b9b9b;
    color: var(--cdi-color-secundary);
}

.inputGroup label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.5em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.4s ease;
    color: var(--cdi-color-primary);
}

.inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0px 0.4em;
    background-color: var(--cdi-color-contraste);
    box-shadow: 10px var(--cdi-color-contraste);
}

.inputGroup :is(input:focus, input:valid) {
    border-color: rgb(150, 150, 200);
}

.inputGroup :is(textarea:focus, textarea:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0px 0.4em;
    background-color: var(--cdi-color-contraste);
    box-shadow: 10px var(--cdi-color-contraste);
}

.inputGroup :is(textarea:focus, textarea:valid) {
    border-color: rgb(150, 150, 200);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    color: var(--cdi-color-primary);
    margin: 5px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    right: -60px;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 5px;
    border-radius: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--cdi-color-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-toggler-icon {
    color: var(--cdi-color-contraste);
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.navbar-nav {
    margin-top: 0px;
}

.navbar-icon {
    min-width: 21px;
}

.dropdown-content {
    right: auto;
}

.transitionClass {
    transition: all 0.25s ease-out;
}

.marcado {
    font-size: 12px;
    position: relative;
    background-color: var(--cdi-color-secundary);
    color: var(--cdi-color-contraste);
    border-radius: 5px;
    padding: 2px 2px;
    text-align: center;
}

.mega-Image {
    height: 500px !important;
}

.marcado::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff10;
}

.desmarcado {
    font-size: 12px;
    position: relative;
    background-color: #ebe4ec;
    color: #9b969e;
    border-radius: 5px;
    padding: 2px 2px;
    text-align: center;
}

.vendaDesmarcado {
    background-color: var(--cdi-fundo-claro);
}

.vendaMarcado {
    background-color: var(--cdi-color-secundary);
}

.tamanho-image {
    object-fit: cover;
    object-position: center;
    height: 300px;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    /* Ajuste o valor do desfoque conforme necessário */
    z-index: -1;
    /* Coloca a imagem desfocada atrás do conteúdo */
}

.tamanho-image-card {
    border-radius: 20px 0px 0px 0px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 200px;
}

.ajustaTamanho {
    width: 38vw;
    height: 500px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.item-vazio {
    display: flex;
    font-size: 20px;
    text-align: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.tamanho-image-destaque {
    height: auto;
}

.button-avancadas {
    cursor: pointer;
    align-self: flex-start;
    text-align: start;
}

.form-check {
    margin-left: 5px;
}

.extras-filtro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.checkButon {
    cursor: pointer;
}

.acordeon-avancadas {
    display: none;

}

.input-anuncio {
    width: 24%;
}

.input-imovel {
    width: 20%;
}

.input-endereco {
    width: 45%;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.input-codigo {
    width: 10%;
}

.filtro-btn {
    cursor: pointer;
}

.page-link.active {
    background-color: var(--cdi-color-secundary);
}


@media screen and (max-width: 750px) {
    .conjunto-select-numeros {
        width: 25%;
    }

    .filtro-area {
        position: relative;
        margin-top: 10px;
    }

    .mega-Image {
        height: 300px !important;
    }


    .telefone-cabecalho-texto {
        margin: 0px !important;
    }

    .input-anuncio {
        width: 20%;
    }

    .input-imovel {
        width: 65%;
    }

    .input-endereco {
        width: 75%;
    }

    .input-codigo {
        width: 20%;
    }


    .filtro-row {
        flex-wrap: wrap;
    }

    .carousel-inner-size {
        width: 80vw;
    }

    .ajustaTamanho {
        width: 80vw;
        height: 400px;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .contato-div {
        display: flex;
        flex-direction: column;
    }

    .home-page-footer {
        flex-direction: column;
    }

    .divisao {
        width: auto;
    }

    .banner-caracteristicas {
        flex-direction: column;
    }

    .images-equipe {
        display: flex;
        flex-direction: column;
    }

    .third {
        width: 100%;
    }

    .banner-destaque1 {
        flex-direction: column;
        align-items: center;
    }

    .banner-destaque2 {
        flex-direction: column;
        align-items: center;
    }

    .banner-destaque3 {
        flex-direction: column;
        align-items: center;
    }

    .banner-destaque4 {
        flex-direction: column;
        align-items: center;
    }

    .manutencao-text {
        width: 100%;
    }

    .manutencao-image {
        display: flex;
        width: 100%;
    }

    .cointainer-dividir {
        flex-direction: column;
    }

    .images-container {
        width: 100%;
    }

    .float-button {
        right: 10px;
        bottom: 70px;
        top: auto;
    }

    .scrolled {
        background-color: transparent;
    }


    .navbar {
        position: absolute;
    }

    .filtro-card {
        width: 100%;
    }
}

@media screen and (min-width: 1000px) {
    .tamanho-image {
        object-fit: cover;
        object-position: center;
        height: 300px;
    }

    .filtro-card {
        width: 65%;
    }
}

@media screen and (max-width: 575px) {
    .carousel-caption-small{
        margin: 10px 5%;
        width: 90%;
    }

    
    .telefone-cabecalho {
        flex-direction: column;
        gap: 5px;
    }

    .acordeon-avancadas {
        width: 100%;
        padding: 0px;
    }

    .card::before {
        top: 23px;
    }

    .navbar-toggler {
        position: absolute;
        top: 29px;
    }

    .logo-telefone {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }

    .telefone-cabecalho-colapse {
        color: var(--cdi-color-contraste);
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
    }

    .container {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 10px;
    }

    .filtro-area {
        position: relative;
        margin-top: 10px;
    }

    .extras-filtro {
        grid-template-columns: repeat(2, 1fr);
    }

    .filtro-grupo-small {
        display: flex;
        flex-direction: row;
        width: 45%;
    }

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        margin: 0px;
        align-self: baseline;
    }

    .manutencao-image {
        margin-left: 0px;
    }

    .ajustaTamanho {
        width: 80vw;
        height: 400px;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .video-edit {
        width: auto;
    }

    /* .slide-top {
        font-size: 20px;
    }

    .slide-bot {
        font-size: 20px;
    } */

    .g-recaptcha {
        transform: scale(0.67);
        -webkit-transform: scale(0.67);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .tamanho-image {
        height: 30vh;
    }

    .mega-Image {
        height: 30vh !important;
    }

    .tamanho-image-destaque {
        height: 50vh;
    }

    .video-edit {
        width: 100%;
    }

    .destaque-hover {
        display: flex;
        align-items: center;
    }

    .nav-link {
        margin-left: 10px;
    }

    .conjunto-select-numeros {
        width: 25%;
    }

    .fundo-pequeno {
        background-color: var(--cdi-color-primary);
    }

}
