:root {
    --vermelhoMS: #E30016;
    --cinzaTextoMS: #3B3A45;
    --cinzaMedioMS: #5C5C5C;
    --bgCinzaSuaveMS: #F2F2F2;
}

body {
    font-family: "Sora", sans-serif;
    margin: 0;
    padding: 0;
}

/****ANIME******/

/* Animação */

[data-anime] {
    opacity: 0;
    transition: all 0.7s;
}

[data-anime="left"] {
    transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
    transform: translate3d(0, -50px, 0);
}

[data-anime="bottom"] {
    transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}


/****************************************************************************/
.alighContent {
    display: grid;
    align-content: center;
}

/****************************************************************************/

.fixedHeader {
    position: fixed;
    z-index: 500;
    width: 100%;
    backdrop-filter: blur(12px) saturate(200%);
    -webkit-backdrop-filter: blur(12px) saturate(200%);
    background-color: rgba(242, 242, 242, 0.7);
}

.header {
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    margin: 24px 0;
    border-radius: 10px;
    padding: 5px 20px 5px 20px;
    height: 90px;
    position: relative;
    z-index: 150;
}

.header .logoHeader {
    width: 109%;
    height: auto;
    margin: 0 0 0 -4px;
}

.header .botImoveis {
    background: #888;
    padding: 10px 30px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    margin: 18px 0 0 20px;
    float: left;
}

.menuInstitucional ul {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    height: 68px;
    align-items: center;
    margin: 7px 0 0 0;
}

.menuInstitucional ul,
.menuInstitucional ul li {
    list-style-type: none;
}

.menuInstitucional ul li a {
    color: var(--cinzaTextoMS);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s;
}

.menuInstitucional ul li a:hover {
    color: var(--vermelhoMS);
    transition: all 0.5s;
}

.menuInstitucional .current-menu-item a {
    color: var(--vermelhoMS);
}

.header .socialIcons ul {
    display: flex;
    gap: 11px;
    justify-content: right;
    height: 79px;
    align-items: center;
}

.header .socialIcons ul,
.header .socialIcons ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header .dropdown-toggle::after {
    font-size: 20px;

}

/*********** MENU DROPDOWN IMOVEIS **************/
/* Container do menu */
.dropdown-imoveis {
    position: relative;
    display: inline-block;
}

/* Esconde a lista por padrão */
.dropdown-menu-list {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    padding: 10px 10px;
    margin: 62px 0 0 19px;
    border-radius: 8px;
}

/* Estilo dos itens do menu */
.dropdown-menu-list li a {
    color: #333;
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.3s;
    border-radius: 6px;
}

/* Hover nos itens */
.dropdown-menu-list li a:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* Mostra o menu ao passar o mouse (Hover) */
.dropdown-imoveis:hover .dropdown-menu-list {
    display: block;
}

/* Ajuste do ícone de chave */
.iconChaveBt {
    margin-right: 8px;
    vertical-align: middle;
}

/***********************************************/
.heroHome {
    width: 100%;
    padding: 125px 0 0;
    background: var(--bgCinzaSuaveMS);
    margin: -143px 0 -40px 0;
}


/********* SLIDER HOME - DESTAQUES ************/
.sliderHeroDestaque {
    padding: 190px 0 70px 0;
}

.destaque-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.container-destaque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 60px;
}

.col-texto {
    flex: 0 0 40%;
    padding: 0 90px 0 0;
}

.col-imagem {
    flex: 0 0 55%;
    position: relative;
}

.titulo-destaque {
    color: #e30613;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    font-size: 32px;
}

.titulo-destaque b {
    font-weight: 900;
}

.btn-saiba-mais {
    display: inline-block;
    background: #888;
    color: #fff;
    padding: 12px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
	transition: all 0.5s;
}

.btn-saiba-mais:hover {
    color: #fff;
	background: #e30613;
	transition: all 0.5s;
}

.wrapper-img {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.wrapper-img img {
    border-radius: 24px;
    width: 100%;
    height: auto;
}

/* Posicionamento da Logo conforme a foto */
.logo-sobreposta {
    position: absolute;
    bottom: 40px;
    left: -60px;
    /* Ajuste conforme necessário para "sair" da foto */
    background: #fff;
    /* Opcional: fundo branco se a logo não tiver */
    padding: 0;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-sobreposta img {
    height: auto;
}

.destaque-carousel:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.destaque-carousel:not(.slick-initialized) .item-destaque {
    display: none;
}

.destaque-carousel:not(.slick-initialized) .item-destaque:first-child {
    display: block;
    width: 100%;
}

/* Container pai */
.destaque-carousel {
    position: relative;
}

/* Estilo geral das setas (comum a ambas) */
.seta-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    margin: 0 0 0 -110px;
    border: none;
    background: #7F000C;
    background: linear-gradient(-90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: #fff;
    padding: 5px 18px 4px 17px;
    font-size: 41px;
    /* float: left; */
    border-radius: 13px;
}

.seta-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    margin: 0 -110px 0 0;
    border: none;
    background: #7F000C;
    background: linear-gradient(-90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: #fff;
    padding: 5px 18px 4px 17px;
    font-size: 41px;
    /* float: left; */
    border-radius: 10px;
}



/* Posição específica da Esquerda */
.seta-prev {
    left: 10px;
}

/* Posição específica da Direita */
.seta-next {
    right: 10px;
}

/* Estilo quando o slide está passando (opcional) */
.slick-active {
    /* Estilos para o slide visível */
}

/************ BUSCA HERO PAGE HOME *****************/
.box-buscaAvancada {
    background: var(--bgCinzaSuaveMS);
    padding-bottom: 25px;
    background-image: url(../images/bgCurvaBranca.svg);
    background-repeat: no-repeat;
    background-position: bottom;
}

.contentCirle {
    display: flex;
    justify-content: center;
    margin: 60px 0 0 0;
}

.contentCirle img {
    margin: 0 5px 0 0;
}


.msi-search-container {
    background-color: #D0D0D0;
    /* Cinza claro do fundo */
    border-radius: 15px 15px 15px 15px;
    padding: 30px;
}

.msi-tabs .nav-link {
    background-color: #9D9D9D;
    color: #3B3A45;
    border: none;
    border-radius: 10px 10px 0 0;
    margin-right: 5px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 15px;
    margin: 0 -25px 0 28px;
}

.msi-tabs .nav-link.active {
    background-color: #D0D0D0;
}

.msi-search-title {
    font-weight: 500;
    color: #3B3A45;
    margin-bottom: 20px;
    font-size: 20px;
}

.msi-input-group select {
    border-radius: 8px;
    border: none;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.msi-btn-search {
    background-color: #343a40;
    /* Cor escura do botão de lupa */
    color: white;
    border: none;
    border-radius: 8px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.5s;
}

.msi-btn-search:hover {
    background-color: var(--vermelhoMS);
    color: #fff;
    transition: all 0.5s;
}

.msi-contact-section {
    border-left: 1px solid #bbb;
    padding-left: 30px;
}

.msi-contact-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.msi-contact-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.msi-search-ad-fields select {
    padding: 15px;
    height: 50px;
    border-radius: 6px;
}

.msi-search-sin-fields .input-group {
    margin-bottom: 0 !important;
    padding: 0;
}

.msi-search-sin-fields input[type=text] {
    width: 74%;
    padding: 20px;
    border-radius: 8px;
}


.msi-search-sin-fields .btn {
    border-radius: 8px;
}

.msi-whatsapp-btn {
    background-color: #888;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: 600;
    transition: all 0.5s;
}

.msi-whatsapp-btn:hover {
    background-color: #25d366;
    color: white;
    transition: all 0.5s;
}

.msi-carousel-item {
    margin: 10px;
}

/******************* SLIDER IMOVEIS HOME *********/



/************************ HOME PAGE ***********************************/
.titOImovelDoSeuJeito h1 {
    width: 100%;
    color: var(--cinzaMedioMS);
    font-size: 30px;
    text-align: center;
    margin: 40px 0;
}

.boxSlider {
    width: 100%;
    padding: 0 160px;
}

/* Responsividade */
@media (max-width: 1650px){
	.boxSlider {
    	width: 100%;
    	padding: 0 70px;
	}
}

.boxSlider .iconDtSlider {
    float: left;
}

.boxSlider .contentDtSliders {
    float: left;
    width: 86%;
    padding: 0 0 0 30px;
    margin-bottom: 25px;
}

.boxSlider .contentDtSliders h3 {
    background: #A60010;
    background: linear-gradient(to right, #A60010 0%, #E30016 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    font-weight: bold;
    margin: 0;
}

.boxSlider .contentDtSliders p {
    font-size: 13px;
    color: var(--cinzaMedioMS);
}

.boxSlider .contentDtSliders a {
    background: #7E7E7E;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    margin: 32px 0 0 0;
    float: left;
    transition: all 0.5s;
}

.boxSlider .contentDtSliders a:hover {
    background: var(--cinzaMedioMS);
    transition: all 0.5s;
}

.boxSliderVenda {
    width: 100%;
    background: var(--bgCinzaSuaveMS);
    padding: 70px 160px;
    margin: -28px 0 0 0;
    background-image: url(../images/bgCurvaCinza.svg);
    background-position: top;
    background-repeat: no-repeat;
}
/* Responsividade */
@media (max-width: 1650px){
	.boxSliderVenda {
    	width: 100%;
    	padding: 0 70px;
	}
}


.boxSlider .sliderButtomPrev {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50px;
    font-size: 30px;
    color: var(--vermelhoMS);
    transition: all 0.5s;
    margin: 220px -20px 0 0;
    position: absolute;
    z-index: 100;
    right: 0;
}

.boxSlider .sliderButtomPrev:hover {
    background: var(--vermelhoMS);
    transition: all 0.5s;
    color: #fff;
}

.boxSlider .sliderButtomPrev .fas {
    margin: 0 0px 0 0;
}

.boxSlider .sliderButtomNext {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50px;
    font-size: 30px;
    color: var(--vermelhoMS);
    transition: all 0.5s;
    margin: -349px 0 0 -20px;
    position: absolute;
    z-index: 100;
    left: 0;
}

.boxSlider .sliderButtomNext:hover {
    background: var(--vermelhoMS);
    transition: all 0.5s;
    color: #fff;
}

.boxSlider .sliderButtomNext .fas {
    margin: 0 0 0 2px;
}

/*********************** HOME QUEM SOMOS *****************************/
.boxInsitucionalHome {
    padding: 50px 0 0 0;
}

.boxInsitucionalHome h2 {
    font-size: 23px;
    color: var(--vermelhoMS);
    font-weight: 600;
    padding: 30px 210px 10px 0;
}

.boxInsitucionalHome p {
    font-size: 18px;
    color: var(--cinzaMedioMS);
    line-height: 35px;
}

.boxInsitucionalHome a {
    text-decoration: none;
    display: inline-block;
    background: #7F000C;
    background: linear-gradient(90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: #fff;
    padding: 7px 10px 7px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
    width: fit-content;
    line-height: 35px;
}


.boxInsitucionalHome a img {
    margin: 0 0 0 20px;
}

.boxInsitucionalHome .imgSobreHome {
    margin: 98px 0 -100px 50px;
}

/************************ CARD IMOVEIS GRID***************************/
.msi-card-body-premium {
    display: grid;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 250px;
    align-content: flex-start;
    gap: 10px;
}

.msi-card-body-premium>span {
    margin-bottom: auto;
    /* Empurra o contentCTAcard para baixo */
}

.contentCTAcard {
    margin-top: auto;
    /* Garante que fique na base */
}


.cardImovel {
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    border-radius: 15px;
    float: left;
    display: grid;
    padding-bottom: 20px;
}

.cardImovel h2 {
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 25px 10px 25px;
    color: var(--cinzaTextoMS);
    height: 70px;
}

.cardImovel span {
    font-size: 13px;
    text-transform: uppercase;
    padding: 0px 25px 20px 25px;
    color: #5C5C5C;
    margin: 0;
    float: left;
    align-items: center;
    height: 100px;
}

.cardImovel span img {
    float: left;
    margin: 0 4px 60px 0;
}

.cardImovel h3 {
    color: var(--vermelhoMS);
    font-size: 18px;
    font-weight: 800;
    padding: 0;
}

.cardImovel .contentCTAcard {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    padding: 0 0 0 22px
}


.cardImovel .tagAluguel {
    background: #FFC106;
    color: #fff;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 0 0 10px 10px;
    margin: 0 0 -36px 30px;
    position: relative;
    z-index: 10;
}

.cardImovel .tagVenda {
    background: var(--vermelhoMS);
    color: #fff;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 0 0 10px 10px;
    margin: 0 0 -36px 30px;
    position: relative;
    z-index: 10;
}

.cardImovel .wp-post-image {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
}

.cardImovel .msi-btn-detalhes {
    text-decoration: none;
    display: inline-block;
    background: #7F000C;
    background: linear-gradient(90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: #fff;
    padding: 7px 10px 7px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
}

.cardImovel .msi-btn-detalhes p {
    margin: 0;
    height: 30px;
    line-height: 30px;
    font-weight: 400;
}

.cardImovel .msi-btn-detalhes p img {
    margin: 0 0 0 20px;
    float: right;
}

.cardSlider {
    min-height: 550px;
    display: grid;
}


.pagination span {
    background: #fff;
    border: solid 2px var(--bgCinzaSuaveMS);
    padding: 8px;
    color: var(--vermelhoMS);
    width: 43px;
    text-align: center;
    border-radius: 5px;
    margin: 3px;
    font-weight: 600;
}

.pagination a {
    background: #dfdfdf !important;
    border: solid 2px var(--bgCinzaSuaveMS);
    padding: 8px;
    color: var(--cinzaMedioMS);
    width: 43px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    color: #7E7E7E;
    margin: 3px;
    background: var(--bgCinzaSuaveMS);
    font-weight: 600;
    transition: all 0.5s;
}

.pagination a:hover,
.pagination span:hover {
    color: var(--vermelhoMS);
    transition: all 0.5s;
}


/******************** IMOVEIS EM DESTAQUE ***********************/
.imoveisEmDestaque {
    width: 100%;
    background: var(--bgCinzaSuaveMS);
    padding: 70px 100px;
    margin: -30px 0 0 0;
    background-image: url(../images/bgCurvaCinza.svg);
    background-position: top;
    background-repeat: no-repeat;
}

.imoveisEmDestaque .titImovesDestaque {
    width: 100%;
    text-align: center;
    color: var(--vermelhoMS);
    font-weight: 900;
    margin: 25px 0 50px 0;
}

/***************** INSTAGRAM ***********************************/
.boxInstagramFeedSite {
    width: 100%;
    padding: 55px 0;
    background: #5C5C5C;
    float: left;
    margin-bottom: 60px;
}

.boxInstagramFeedSite .avatar {
    border: solid 3px var(--vermelhoMS);
    border-radius: 150px;
    float: right;
}

.boxInstagramFeedSite h2 {
    color: #fff;
    font-weight: 900;
    font-size: 25px;
}

.boxInstagramFeedSite p {
    color: #fff;
}

.boxInstagramFeedSite .botInsta {
    text-align: center;
    padding: 40px 0 0 0;
}

.boxInstagramFeedSite .botInsta a {
    color: var(--vermelhoMS);
    background: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

.feedInsta img{
	border-radius: 15px;
}

/*************** BOXES CONTATOS ************************************/
.boxContatos {
    padding: 40px 0;
}

/* Configurações Gerais dos Banners */
.msi-banner-card {
    border-radius: 20px;
    padding: 10px 25px;
    height: 100%;
    min-height: 164px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.msiCardCorretor {
    background-color: #7F000C;
    background-image:
        url('../images/corretor.webp'),
        linear-gradient(0deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: relative;
    border-radius: 20px;
}


.msiCardAtendente {
    background: url(../images/atendente.webp) no-repeat right #5C5C5C;
}

.msiCardMapa {
    background-color: #7F000C;
    background-image:
        url('../images/predio-mapa.webp'),
        linear-gradient(0deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: relative;
    border-radius: 20px;
}

.msi-map-container iframe {
    height: 450px;
}



/* Conteúdo */
.msi-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.msi-banner-title {
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.msi-banner-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Imagens */
.msi-banner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.msi-banner-img-right {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 120px;
}

/* Botões e Elementos Específicos */
.msi-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.msi-btn-outline {
    background: #7F000C;
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.5s;
}

.msi-btn-outline:hover {
    color: #fff;
    transition: all 0.5s;
    background: #66000a;
}

.msi-phone-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 11px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
}

.msi-address-box {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.msi-btn-waze {
    background: #7F000C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: all 0.5s;
}

.msi-btn-waze:hover {
    color: #fff;
    transition: all 0.5s;
    background: #66000a;
}



/****************** FOOTER ***************/
.footer {
    width: 100%;
    padding: 50px 0;
    background: var(--bgCinzaSuaveMS);
}

.footer .fogoFooter {
    width: 80%;
    height: auto;
}

.footer h2 {
    color: var(--vermelhoMS);
    font-size: 22px;
    font-weight: bold;
}

.footer ul {
    margin-bottom: 25px;
}

.footer ul,
.footer ul li {
    list-style-type: none;
    padding: 0;
}

.footer ul li {
    list-style-type: none;
}

.footer ul li a {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 45px;
    transition: all 0.5s;
}

.footer ul li a:hover {
    color: var(--vermelhoMS);
    transition: all 0.5s;
}

.footer .socialIcon li {
    float: left;
    margin: 0 10px 0 0;
}

.footer .widget-container {
    width: 100%;
    float: left;
    list-style-type: none;
}

.footer .widget-containe ul,
.footer .widget-containe li {
    list-style-type: none;
    padding: 0;
}

.footer .widget-container h3 {
    color: #5C5C5C;
    font-size: 18px;
    font-weight: 800;
    padding: 25px 0 25px 0;
    margin: 0;
}

.footer .widget-container p {
    color: #5C5C5C;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.copyright {
    text-align: center;
    padding: 40px 0;
}

.copyright p {
    margin: 0;
    padding: 0;
    color: #555;
}

/************************** DETALHES SUBPAGINAS **************************/
.curveDetalheSubpaginas {
    width: 100%;
    height: 60px;
    background: url(../images/bgCurvHeroSubpages.svg) no-repeat top #F2F2F2;
}

.curveDetalheSubpaginas img {
    margin: -30px 0 0 159px;
}

.boxDetalheSubpaginas {
    width: 100%;
    height: 140px;
    background: #E2E3E4;
}

/************************* PAGINA IMOVEIS *********************************/
.heroPageImoveis {
    width: 100%;
    padding: 260px 0 0 0;
    background: #F2F2F2;
    margin: -160px 0 0 0;
}

.heroPageImoveis .breavCrumbs {
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    width: fit-content;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 12px;
    color: #7E7E7E;
    margin-bottom: 20px;
    margin-top: -50px;
}

.heroPageImoveis .breavCrumbs a {
    color: var(--vermelhoMS);
    text-decoration: none;
}

.heroPageImoveis h1 {
    color: var(--cinzaMedioMS);
    font-size: 36px;
}

.boxBuscaDetalhadaColuna {
    background: #D0D0D0;
    padding: 30px;
    border-radius: 15px;
    margin: -110px 0 0 0;
}

.listImoveisGrid {
    margin: -250px 0 0 0;
}

.boxBuscaDetalhadaColuna h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3B3A45;
}

.boxBuscaDetalhadaColuna select {
    margin-bottom: 18px;
    padding: 20px;
    height: 57px;
    border-radius: 9px;
}

.msi-search-sidebar {
    background-color: #d9d9d9;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
}

.msi-search-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.msi-search-sidebar select {
    border-radius: 8px;
    border: none;
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 0.95rem;
    color: #666;
}

/* Estilização do Slider */
.price-range-container {
    margin: 30px 0 40px;
    padding: 0 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

#price-slider {
    height: 4px;
    border: none;
    background: #fff;
    box-shadow: none;
}

#price-slider .noUi-connect {
    background: #fff;
}

#price-slider .noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #444;
    border: none;
    box-shadow: none;
    cursor: pointer;
    right: -9px;
    top: -7px;
}

#price-slider .noUi-handle::before,
#price-slider .noUi-handle::after {
    display: none;
}

.msi-btn-search-box {
    background-color: #444;
    border: none;
    border-radius: 8px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.msi-btn-search-box:hover {
    background-color: #000;
}

.msi-btn-search-box img {
    width: 24px;
    filter: invert(1);
}

/********************************/
.institucionalPgs {
    margin: 0;
    background: #F2F2F2;
    background-image: url(../images/bgCurvaCinza.svg);
    background-position: top;
    background-repeat: no-repeat;
    padding: 30px 0 70px 0;
    margin: -29px 0 0 0;
}

.institucionalPgs .imgSobreHome {
    margin: 76px 0 -74px 0;
}

.boxDetalheSubpaginas .fraseDestaque h2 {
    font-size: 25px;
    color: #5C5C5C;
    margin-top: 20px;
    float: left;
}

.heroPageSobre .attachment-tnb-imgSobre {
    margin: 180px 0 -260px 0;
    border-radius: 25px;
}

.quemSomos {
    padding: 50px 0;
}

.quemSomos p {
    line-height: 30px;
    color: var(--cinzaMedioMS);
    font-weight: 300;
    text-align: justify;
    padding: 0 15px 0 0;
}

.quemSomos .txtAddInstitucional p {
    font-weight: 900;
    padding: 40px 59px 0 0;
}

.missaoVisao {
    width: 100%;
    padding: 50px 0 30px 0;
    background: #D0D0D0;
    float: left;
    margin-bottom: 40px;
}

.missaoVisao p {
    font-weight: 300;
    font-size: 18px;
}

.missaoVisao h2 {
    color: var(--vermelhoMS);
    font-weight: 700;
    font-size: 30px;
}

.valores {
    background: #F5F5F5;
    padding: 0;
    float: left;
    border-radius: 30px;
    margin: 30px 0 0px 0;
}

.valores .paragrafo {
    padding: 50px;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
}

.valores .paragrafo p {
    color: var(--cinzaMedioMS);
}

.valores p strong {
    font-weight: 800;
}

.valores h2 {
    color: var(--vermelhoMS);
    font-weight: 700;
    font-size: 30px;
}

.valores img {
    margin: 57px 0 -10px 30px;
}

/********************************/

.heroPageCorretores24 .imgCorretores24h {
    margin: 10px 0 -199px 0;
}

.lateralCorretores {
    margin: -140px 0 30px 0;
}

.postsCorretores {
    padding: 17px;
    background: #fff;
    border: solid 1px #F2F2F2;
    border-radius: 20px;
    margin: 20px;
}

.postsCorretores .attachment-tnb-imgCorrertor {
    border-radius: 100px;
}

.postsCorretores .cont {
    padding: 0px 20px 0px 30px;
}

.postsCorretores .cont h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.postsCorretores .cont p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
    padding: 0;
}

.postsCorretores a {
    text-decoration: none;
    display: inline-block;
    background: #7F000C;
    background: linear-gradient(90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: #fff;
    padding: 10px 10px 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    width: fit-content;
    justify-content: space-around;
    line-height: 29px;
    margin: 50px 0 0 30px;
}

.postsCorretores a img {
    margin: 0 0 0 20px;
}

.contatosSidebar {
    margin: 190px 20px 0 0;
}

/*********************************************/
.boxDetalheSubpaginasPortfolio {
    width: 100%;
    height: 200px;
    background: #E2E3E4;
}

.ms-btn-saiba-mais:hover {
    color: #fff !important;
}

.boxDetalheSubpaginasPortfolio .fraseDestaque h2 {
    font-size: 25px;
    color: #5C5C5C;
    margin-top: 20px;
    float: left;
}

.heroPortfolio {
    height: 530px;
    padding: 360px 0 0 0;
}

.carrosselPortfolio {
    margin: -350px 0 20px 0;
}

.logosPortfolio {
    margin: 0;
}

.ms-logo-item .ms-logo-wrapper img {
    border: none !important;
}


.imoveisEmDestaqueTitle h3 {
    background: #A60010;
    background: linear-gradient(to right, #A60010 0%, #E30016 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    height: 50px;
    padding: 30px 0 57px 0;
    float: left;
}


/************ SLIDER BANNERS ******************/
.bannersDestaquesHorizontal {
    width: 100%;
    float: left;
}

/* Estilos para o Carrossel de Banners */
.custom-banner-carousel {
    width: 100%;
    max-width: 100%;
    margin: 90px 0 90px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.banner-item {
    height: 240px;
    /* Ajuste conforme necessário */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px;
}

.banner-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Permite clicar no link overlay */
}

.banner-cta-button {
    background-color: #c40000;
    /* Vermelho conforme imagem */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-cta-button .arrow-icon {
    background-color: #ffffff;
    color: #c40000;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 10px;
}

/* Customização das setas do Swiper */
.custom-banner-carousel .swiper-button-next,
.custom-banner-carousel .swiper-button-prev {
    background-color: #c40000;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #ffffff !important;
}

.custom-banner-carousel .swiper-button-next:after,
.custom-banner-carousel .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-item {
        height: 200px;
        padding: 15px;
    }

    .banner-cta-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}




/*********************************/
.heroContato .imgContato {
    margin: 0 0 -260px 0;
}



.paginaDeContato {
    background-color: #fff;
    padding: 60px 0 5px 0;
}

.paginaDeContato .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.paginaDeContato .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    background: white;
    overflow: hidden;
}

.paginaDeContato .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 50px 40px;
}

/* Estilização do lado esquerdo - Informações */
.paginaDeContato .col-lg-6:first-child h2 {
    color: #d32f2f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.paginaDeContato .col-lg-6:first-child h2:first-of-type {
    margin-top: 0;
}

.paginaDeContato .col-lg-6:first-child h2:last-of-type {
    margin-top: 40px;
}

.paginaDeContato .col-lg-6:first-child h2 i {
    font-size: 28px;
}

.paginaDeContato .col-lg-6:first-child p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.paginaDeContato .col-lg-6:first-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paginaDeContato .col-lg-6:first-child ul li {
    padding: 7px 15px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 11px;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
    margin: 0 0 8px 20px;
    border: solid 1px #DBDBDB;
}

.paginaDeContato .col-lg-6:first-child ul li:before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #d32f2f;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.paginaDeContato .col-lg-6:first-child ul li:hover {
    background: #ffe5e5;
    transform: translateX(5px);
}

/* Estilização do formulário - lado direito */
.paginaDeContato .col-lg-6:last-child {
    background: #fff;
}

.paginaDeContato .col-lg-6:last-child h2 {
    color: #d32f2f;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.paginaDeContato .col-lg-6:last-child p {
    color: #5C5C5C;
}

.paginaDeContato .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.paginaDeContato .wpcf7-form>p:first-of-type {
    margin-top: 0;
}



.paginaDeContato .wpcf7-form p {
    margin: 0;
    display: flex;
    gap: 8px;
}

.paginaDeContato .wpcf7-form p label {
    color: #5C5C5C;
    color: #5C5C5C;
    padding: 12px 0 0 0;
}

.paginaDeContato .wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

.paginaDeContato .wpcf7-select,
.paginaDeContato .wpcf7-text,
.paginaDeContato .wpcf7-email,
.paginaDeContato .wpcf7-tel,
.paginaDeContato .wpcf7-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.paginaDeContato .wpcf7-select:focus,
.paginaDeContato .wpcf7-text:focus,
.paginaDeContato .wpcf7-email:focus,
.paginaDeContato .wpcf7-tel:focus,
.paginaDeContato .wpcf7-textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.paginaDeContato .wpcf7-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.paginaDeContato .wpcf7-textarea {
    resize: vertical;
    font-family: inherit;
	height: 150px;
}

.paginaDeContato .wpcf7-submit {
    background: #d32f2f;
    color: white;
    padding: 13px 50px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    position: relative;
}

.paginaDeContato .wpcf7-submit:after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    font-size: 14px;
}

.paginaDeContato .wpcf7-submit:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

.paginaDeContato .wpcf7-spinner {
    display: none;
}

.paginaDeContato .wpcf7-response-output {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
}

.paginaDeContato .wpcf7-validation-errors {
    background: #ffebee;
    border: 1px solid #ef5350;
    color: #c62828;
}

.paginaDeContato .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    border: 1px solid #66bb6a;
    color: #2e7d32;
}

.paginaDeContato .hidden-fields-container {
    display: none;
}

.paginaDeContato .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}

.paginaDeContato .botoesWhatsappContato {
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
    display: flex;
}

.paginaDeContato .botoesWhatsappContato a {
    color: #fff;
    background: #50B744;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 8px;
    margin: 10px 9px 0 0;
    transition: all 0.3s;
}

.paginaDeContato .botoesWhatsappContato a:hover {
    background-color: #2e7d32;
    transition: all 0.3s;
}

.paginaDeContato .map {
    width: 90%;
    height: 500px;
    margin: 30px 0 30px 5%;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
}

.paginaDeContato .map iframe {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}



/************************** IMOVEIS ABERTOS ******************************/

.heroImoveisAberto {
    height: auto;
    padding: 329px 0 130px 0;
}

.heroImoveisAberto .tipoImoveTag {
    background: var(--vermelhoMS);
    color: #fff;
    width: fit-content;
    padding: 7px 17px;
    border-radius: 10px;
}

.heroImoveisAberto .bravTag {
    display: flex;
    gap: 10px;
}

.heroImoveisAberto .breavCrumbs {
    margin: 0;
}


.heroImoveisAberto h1 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
}

.heroImoveisAberto .boxEndereco {
    color: #fff;
    background: #4a4a4e;
    padding: 10px;
    border-radius: 8px;
    width: 81%;
    margin: 0 0 13px 0;
}

.heroImoveisAberto .boxEndereco p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.heroImoveisAberto .boxEndereco p .fa-map-marker-alt {
    font-size: 28px;
    float: left;
    margin: 6px 10px 0 0;
}

.msi-gallery-wrapper {
    margin: -270px 0 0 0;
}

.msi-gallery-wrapper .slick-slide img {
    border-radius: 25px;
}

.msi-gallery-wrapper .tnbImages {
    margin: 0 5px;
}

.slick-track .tn {
    border-radius: 35px;
}

.slick-track .slick-current .tn {
    border: solid 2px var(--vermelhoMS);
}

.msi-gallery-wrapper .slick-prev-custom {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background: var(--vermelhoMS);
    font-size: 25px;
    float: left;
    margin: 49px 0 -70px -29px;
    position: relative;
    z-index: 100;
}

.msi-gallery-wrapper .slick-next-custom {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background: var(--vermelhoMS);
    font-size: 25px;
    float: right;
    margin: -69px -30px 0 0;
    position: relative;
    z-index: 100;
}

.descricaoCompleta {
    background: var(--bgCinzaSuaveMS);
    padding: 15px 35px;
    border-radius: 17px;
}

.descricaoCompleta p {
    text-transform: uppercase;
    font-size: 16px;
}

.detalhesDoImovel {
    background: var(--bgCinzaSuaveMS);
    padding: 15px 35px 33px 35px;
    border-radius: 17px;
}

.detalhesDoImovel h3 {
    font-size: 20px;
    color: var(--cinzaMedioMS);
}

.detalhesDoImovel .col-md-6 {
    margin: 0;
}

.detalhesDoImovel .listDetalhes {
    background: #fff;
    margin: 5px;
    padding: 8px 17px;
    border-radius: 10px;
    color: #ccc;
}

.detalhesDoImovel .listDetalhes span {
    color: var(--cinzaMedioMS) !important;
}


.detalhesDoImovel .listDetalhes .fa-caret-right {
    color: #c40000 !important;
}

.mapaDeLocalizacao {
    width: 100%;
    padding: 35px;
    border: solid 1px #E2E3E4;
    border-radius: 20px;
    margin-bottom: 50px;
}

.mapaDeLocalizacao h3 {
    font-size: 20px;
    color: var(--cinzaMedioMS);
    margin: 0 0 20px 0;
    padding: 0;
}

.mapaDeLocalizacao iframe {
    width: 100%;
}

/**************************************************************************/

/* Responsividade */
@media (max-width: 991px) {
    .paginaDeContato .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .paginaDeContato .col-lg-6:last-child {
        background: white;
    }
}

@media (max-width: 768px) {
    .paginaDeContato {
        padding: 40px 0;
    }

    .paginaDeContato .col-lg-6 {
        padding: 30px 25px;
    }

    .paginaDeContato .wpcf7-form p {
        flex-direction: column;
        gap: 15px;
    }

    .paginaDeContato .wpcf7-submit {
        width: 100%;
    }

    .paginaDeContato .col-lg-6:first-child h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .paginaDeContato .col-lg-6 {
        padding: 25px 20px;
    }

    .paginaDeContato .col-lg-6:first-child h2 {
        font-size: 20px;
    }

    .paginaDeContato .col-lg-6:first-child ul li {
        font-size: 14px;
    }
}


/********************* PAGINA RESULTADO **************************/
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #FFF;
    border-color: #d9d9d9;
    color: var(--vermelhoMS);
}

/* Cabeçalho da Página de Resultados da Busca */
.resultados-busca header {
    padding: 190px 0 90px;
    margin-bottom: 40px !important;
    border-bottom: 3px solid #d32f2f;
    position: relative;
    overflow: hidden;
}

.resultados-busca header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d32f2f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.resultados-busca header .container {
    position: relative;
    z-index: 1;
}

.resultados-busca header h1 {
    color: #d32f2f;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.resultados-busca header p {
    color: #666;
    font-size: 18px;
    margin: 0 0 0 0;
    line-height: 1.6;
}

.resultados-busca header .search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    vertical-align: middle;
}

.resultados-busca header .search-icon i {
    color: white;
    font-size: 24px;
}

.resultados-busca header .header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.resultados-busca header .header-text {
    flex: 1;
}

.resultados-busca header .results-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.resultados-busca header .results-count i {
    color: #d32f2f;
    font-size: 16px;
}

.resultados-busca header .breadcrumb {
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.45);
    width: fit-content;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 12px;
    color: #7E7E7E;
    margin-bottom: 20px;
    margin-top: -50px;

}

.resultados-busca header .breadcrumb-item {
    color: #999;
    font-size: 14px;
}

.resultados-busca header .breadcrumb-item.active {
    color: #d32f2f;
    font-weight: 500;
}

.resultados-busca header .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resultados-busca header .breadcrumb-item a:hover {
    color: #d32f2f;
}

.resultados-busca header .breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ccc;
    font-size: 10px;
}

/********************** 404 ***********************/
.errorPg404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 120px 20px 50px 20px;
    position: relative;
    overflow: hidden;
    margin: 0 0 0 0;
}

.errorPg404::before {
    content: '404';
    position: absolute;
    font-size: 400px;
    font-weight: 900;
    color: rgba(211, 47, 47, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 1;
}

.errorPg404 .error-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.errorPg404 h2 {
    color: #d32f2f;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.errorPg404 h1 {
    color: #d32f2f;
    font-size: 120px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow: 4px 4px 0px rgba(211, 47, 47, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.errorPg404 p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0 40px 0;
}

.errorPg404 .error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.errorPg404 .error-icon i {
    font-size: 60px;
    color: white;
}

.errorPg404 .back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d32f2f;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    margin-top: 20px;
}

.errorPg404 .back-home:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.errorPg404 .back-home i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.errorPg404 .back-home:hover i {
    transform: translateX(-5px);
}

.errorPg404 .decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.errorPg404 .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
}

.errorPg404 .dot:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 15px;
    height: 15px;
}

.errorPg404 .dot:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 8px;
    height: 8px;
}

.errorPg404 .dot:nth-child(3) {
    bottom: 15%;
    left: 20%;
    width: 12px;
    height: 12px;
}

.errorPg404 .dot:nth-child(4) {
    bottom: 25%;
    right: 10%;
    width: 10px;
    height: 10px;
}

.errorPg404 .dot:nth-child(5) {
    top: 50%;
    left: 5%;
    width: 6px;
    height: 6px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    /*********** MENU MOBILE ****************/
    .menuInstitucional ul {
        display: block;
        gap: 10px;
        justify-content: space-around;
        height: auto;
        align-items: center;
        margin: 0 0 0 0;
    }

    .menuInstitucional ul,
    .menuInstitucional ul li {
        list-style-type: none;
        padding: 17px 0;
    }

    .menuInstitucional ul li a {
        font-size: 20px;
    }

    .mobileMenu .socialIcons {
        position: absolute;
        bottom: 30px;
        width: 84%;
    }

    .mobileMenu .socialIcons hr {
        margin: 0px 0 28px 0;
    }

    .mobileMenu .socialIcons ul {
        display: flex;
        margin: 0;
        padding: 0;
        gap: 15px;
    }

    .mobileMenu .socialIcons ul a img {
        margin: 0 0 0 0;
        width: 45px;
        height: auto;
    }

    .mobileMenu .menuInstitucional h2 {
        color: var(--vermelhoMS);
        margin: 40px 0 0 0;
        font-weight: 600;
    }

    /*****************************************/

    .header {
        margin: 14px 0;
    }

    .errorPg404::before {
        font-size: 250px;
    }

    .errorPg404 .error-content {
        padding: 40px 30px;
    }

    .errorPg404 h2 {
        font-size: 22px;
    }

    .errorPg404 h1 {
        font-size: 90px;
    }

    .errorPg404 p {
        font-size: 16px;
    }

    .errorPg404 .error-icon {
        width: 100px;
        height: 100px;
    }

    .errorPg404 .error-icon i {
        font-size: 50px;
    }

    .errorPg404 .back-home {
        padding: 14px 35px;
        font-size: 15px;
    }

    .resultados-busca header {
        padding: 35px 0 30px;
        margin-bottom: 30px !important;
    }

    .resultados-busca header h1 {
        font-size: 32px;
    }

    .resultados-busca header p {
        font-size: 16px;
    }

    .resultados-busca header .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .resultados-busca header .search-icon {
        width: 45px;
        height: 45px;
    }

    .resultados-busca header .search-icon i {
        font-size: 20px;
    }

    .header .botImoveis {
        padding: 10px 19px;
    }

    .header .logoHeader {
        width: 108%;
        height: auto;
    }

    .container-destaque {
        display: grid;
    }

    .logo-sobreposta {
        position: absolute;
        top: -110px;
        /* right: 0; */
        background: #fff;
        padding: 0;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 42%;
        height: fit-content;
        margin: 30px 0 0 300px;
    }

    .titulo-destaque {
        margin-bottom: 0;
        font-size: 28px;
    }

    .btn-saiba-mais {
        display: inline-block;
        background: #7F000C;
        background: linear-gradient(90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
        color: #fff;
        padding: 12px 60px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 20px;
        z-index: 100;
        position: relative;
    }

    .heroPageImoveis {
        width: 100%;
        padding: 350px 20px 0 20px;
        background: #F2F2F2;
        margin: -160px 0 0 0;
    }

    .heroPageImoveisOpenMB {
        width: 100%;
        padding: 350px 20px 90px 20px;
        background: #F2F2F2;
        margin: -160px 0 0 0;
    }

    .curveDetalheSubpaginas {
        width: 100%;
        height: 27px;
        background: url(../images/bgCurvHeroSubpages.svg) no-repeat top #F2F2F2;
    }

    .msi-gallery-wrapper {
        margin: 15px 0 0 0;
    }

    .heroPageImoveis .imgHeroImoveis {
        width: 170%;
        height: auto;
        margin: 0 0 0 -30px;
    }

    .heroPageImoveis h1 {
        color: var(--vermelhoMS);
        font-size: 28px;
        margin: 20px 0 20px 0;
        font-weight: 600;
    }

    .curveDetalheSubpaginas img {
        margin: -30px 0 0 199px;
    }

    .listImoveisGrid {
        margin: 16px 0 0 0;
    }

    .institucionalPgs {
        padding: 90px 20px 70px 20px !important;
    }

    .institucionalPgs h2 {
        font-size: 23px;
        color: var(--vermelhoMS);
        font-weight: 600;
        padding: 20px 0px 0px 0;
    }

    .institucionalPgs .imgSobreHome {
        margin: 0 0 -71px 0 !important;
        width: 100%;
    }

    .imoveisEmDestaqueTitle h3 {
        padding: 0;
    }

    .heroImoveisAberto .boxEndereco {
        width: 100%;
    }

    .heroImoveisAberto .boxEndereco p {
        font-size: 13px;
    }

    /* Estilo geral das setas (comum a ambas) */
    .seta-prev {
        margin: 170px 0 0 -42px;
        border-radius: 0 10px 10px 0;
    }

    .seta-next {
        margin: 170px -42px 0 0;
        border-radius: 10px 0 0 10px;
    }

    .col-texto {
        flex: 0 0 40%;
        padding: 0 90px 0 0;
        height: 310px;
    }

    .sliderHeroDestaque {
        padding: 130px 20px 100px 20px;
        margin: 0 0 -60px 0;
    }

    .boxSlider {
        width: 100%;
        padding: 0 20px;
    }

    .titOImovelDoSeuJeito h1 {
        width: 100%;
        color: var(--cinzaMedioMS);
        font-size: 28px;
        text-align: center;
        margin: 20px 0;
        padding: 10px;
    }

    .boxSlider .contentDtSliders h3 {
        margin: 0;
        padding: 0;
    }

    .boxSlider .contentDtSliders a {
        background: #7E7E7E;
        color: #fff;
        padding: 10px;
        border-radius: 10px;
        font-size: 13px;
        text-decoration: none;
        margin: 0;
        float: left;
        transition: all 0.5s;
    }

    .boxSlider .contentDtSliders {
        float: left;
        width: 73%;
        padding: 0 0 0 30px;
        margin-bottom: 25px;
    }

    .boxSliderVenda {
        padding: 70px 20px !important;
    }

    .boxInsitucionalHome {
        padding: 50px 30px;
    }

    .boxInsitucionalHome h2 {
        padding: 30px 70px 10px 0;
    }

    .boxInsitucionalHome .imgSobreHome {
        margin: 0 0 -190px 0;
        width: 100%;
    }

    .imoveisEmDestaque {
        padding: 60px 10px;
        margin: -30px 0 0 0;
        z-index: 105;
        position: relative;
    }

    .contentCirle {
        display: flex;
        justify-content: center;
        margin: 60px 0 0 0;
        position: relative;
        z-index: 115;
    }

    .footer {
        width: 100%;
        padding: 50px 20px;
        background: var(--bgCinzaSuaveMS);
        float: left;
    }

    .boxInstagramFeedSite {
        text-align: center;
    }

    .boxInstagramFeedSite .avatar {
        float: none;
    }

    .boxInstagramFeedSite {
        margin-bottom: 0;
    }

    .boxContatos {
        padding: 0 10px;
        float: left;
    }

    .copyright p {
        margin: 0;
        padding: 40px 80px;
        color: #555;
        width: 100%;
        float: left;
        font-size: 14px;
    }

    .heroPageSobre .attachment-tnb-imgSobre {
        margin: 0;
        border-radius: 25px;
        width: 100%;
        height: auto;
        margin: 0 0 50px 0;
    }

    .quemSomos {
        padding: 20px 20px;
    }

    .quemSomos p {
        padding: 0;
    }

    .quemSomos .txtAddInstitucional p {
        font-weight: 900;
        padding: 0;
    }

    .missaoVisao {
        padding: 25px;
    }

    .valores {
        background: #F5F5F5;
        padding: 0;
        float: left;
        border-radius: 30px;
        margin: 0px 15px 15px 15px;
    }

    .valores img {
        margin: -50px 0 0 60px;
    }

    .boxDetalheSubpaginas .fraseDestaque h2 {
        font-size: 25px;
        color: #5C5C5C;
        margin-top: 20px;
        float: left;
        padding: 0 20px 0 20px;
    }

    .custom-banner-carousel {
        width: 100%;
        max-width: 100%;
        margin: 50px 0 50px 0;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }


    .heroPageCorretores24 .imgCorretores24h {
        margin: -60px 0 0 -80px;
        width: 160%;
    }

    .postsCorretores a {
        margin: -10px 0 0 171px;
    }

    .contatosSidebar {
        margin: 10px;
    }

    .heroContato .imgContato {
        margin: -80px 0 0 -50px;
        width: 130%;
    }


    .paginaDeContato {
        padding: 20px 20px;
    }

    /********* AJUSTES PORTFOLIO ************/

    .carrosselPortfolio {
        margin: -60px 0 0 0;
    }



    .ms-logo-item {
        width: 100% !important;
    }

}

@media (max-width: 480px) {
    .errorPg404::before {
        font-size: 180px;
    }

    .errorPg404 .error-content {
        padding: 35px 25px;
    }

    .errorPg404 h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .errorPg404 h1 {
        font-size: 70px;
    }

    .errorPg404 p {
        font-size: 15px;
        margin: 20px 0 30px 0;
    }

    .errorPg404 .error-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .errorPg404 .error-icon i {
        font-size: 40px;
    }

    .errorPg404 .back-home {
        padding: 12px 30px;
        font-size: 14px;
    }

    .resultados-busca header {
        padding: 25px 0 20px;
        margin-bottom: 25px !important;
    }

    .resultados-busca header h1 {
        font-size: 26px;
    }

    .resultados-busca header h1::after {
        width: 60px;
        height: 3px;
    }

    .resultados-busca header p {
        font-size: 15px;
    }

    .resultados-busca header .results-count {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/******************** BANNER COOKIES ****************************/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--cinzaTextoMS);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--cinzaMedioMS);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--vermelhoMS);
    text-decoration: none;
    font-weight: 500;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-accept {
    background: #7F000C;
    background: linear-gradient(90deg, rgba(127, 0, 12, 1) 0%, rgba(227, 0, 22, 1) 100%);
    color: white;
}

.btn-accept:hover {
    background-color: #c5000f;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(227, 0, 22, 0.3);
}

.btn-settings {
    background-color: var(--bgCinzaSuaveMS);
    color: var(--cinzaTextoMS);
}

.btn-settings:hover {
    background-color: #e0e0e0;
}

.demo-container {
    text-align: center;
    margin-top: 100px;
}

.demo-container h1 {
    color: var(--cinzaTextoMS);
    margin-bottom: 16px;
}

.demo-container button {
    padding: 12px 24px;
    background-color: var(--vermelhoMS);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.demo-container button:hover {
    background-color: #c5000f;
    color: #FFF;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 120px;
    }
}



/******************** PAGINAS ESTATICAS ***********************/
.contentPagesDocs {
    padding: 50px 0;
    color: var(--cinzaMedioMS);
}

.contentPagesDocs a {
    text-decoration: none;
    color: var(--vermelhoMS);
}