:root {
   /* Referencias de cores Padrao ------  */
   --bs-blue: #0d6efd;
   --bs-indigo: #6610f2;
   --bs-purple: #6f42c1;
   --bs-pink: #d63384;
   --bs-red: #dc3545;
   --bs-orange: #c5691b;
   --bs-yellow: #ffc107;
   --bs-green: #198754;
   --bs-teal: #20c997;
   --bs-cyan: #0dcaf0;
   --bs-black: #000000;
   --bs-white: #fff;
   /* Fim referencias ---------------- */

   --bs-primary: #be9b2b !important;
   --bs-primary-rgb: 212, 175, 55 !important;
   --bs-primary-start: #d4af37;
   --bs-primary-end: #ab8b21;
}

.font-inter {
   font-family: 'Inter', sans-serif;
}

.font-quicksand{
   font-family: "Quicksand",sans-serif;
}

.img-zoom {
   transform: scale(1.05); /* Começa 10% maior */
   transition: transform .7s ease-out; /* Suaviza a transição */
 } 
 /* Classe para aplicar após a imagem entrar no viewport, iniciando a animação */
 .img-visible {
   transform: scale(1); /* Volta ao tamanho normal */
 }


.landing-header {
   display: flex;
   align-items: center;
   height: 85px;
}

.carousel-item {
   transition: transform 0s ease;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: rgb(24 24 24);
  /* min-height: 300px; */
  height: 77px;
  width: auto;
  padding: 25px;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}

.carousel-control-prev {
  margin-left: -80px;
}

.carousel-control-next {
  margin-right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%;
  background-image: url("../../assets/media/imagens/controls.png");
  width: 75px;
  border-radius: 3px;
  top: 46%;
  height: 90px;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -30px;
  opacity: 0.7;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.carousel-control-prev-icon {
  background-position: 26px 13px;
}

.carousel-control-next-icon {
  background-position: -26px 13px;
}

@keyframes carouselEntrance {
   0% {
      opacity: 0;
      transform: scale(0.95) translateY(10px);
   }

   100% {
      opacity: 1;
      transform: scale(1) translateY(0);
   }
}

.carousel-entrance {
   animation: carouselEntrance 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.descricao-truncada {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; /* 3 linhas * 1.5 line-height */
}

.titulo-truncado {
   display: block;
   overflow: hidden;
   white-space: normal;
   text-overflow: ellipsis;
   height: 1.2em;
   /* Altura para 1 linha */
   line-height: 1.2em;
   transition: height 0.3s ease;
}

.titulo-truncado:hover {
   height: 2.5em;
   /* Altura para 3 linhas (1.2em * 3) */
}

.noUi-target .noUi-connect {
   background: #b69424 !important;
}

.bg-success-active {
   background-color: #11964d !important;
}

.carousel-item img {
   display: block;
   margin-left: auto;
   margin-right: auto;
   max-height: 600px;
   /* Altura máxima da imagem */
}

.whatsapp-icon {
   position: fixed;
   right: 15px;
   /* Distância da direita */
   bottom: 20px;
   /* Distância do fundo */
   z-index: 1000;
   /* Garante que o ícone fique acima de outros elementos */
}

.whatsapp-icon a {
   color: inherit;
   /* Herda a cor do elemento pai */
}

.whatsapp-icon i {
   font-weight: 600;
   /* Peso da fonte do ícone */
   /* font-size: 40px; */
   /* Tamanho do ícone */
   color: #0da70d;
   /* Cor do ícone */
}

.parallax {
   /* A altura do background parallax */
   /* height: 500px;   */
   /* Imagem de fundo e configurações para parallax */
   /* background-image: url('caminho-para-sua-imagem.jpg'); */
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.bg-glass {
   border-left: none;
   border-right: none;
   background: #00000052;
   /* backdrop-filter: blur(5px); */
   box-shadow: 0 0 8px rgb(0 0 0 / 50%);
   border: 1px solid rgb(199 199 199 / 50%);
}

.bg-glass2 {
   border-left: none;
   border-right: none;
   backdrop-filter: blur(20px);
   box-shadow: 0 0 20px rgb(0 0 0 / 50%);
   border: 1px solid rgb(199 199 199 / 50%);
}

.img-zoom-container {
   overflow: hidden;
   position: relative;
}

.img-zoom {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.10);
   transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.img-zoom.img-visible {
   transform: scale(1);
}

.curva-custom {
   /* position: absolute; */
   /* bottom: 0; */
   left: 0;
   width: 100%;
   overflow: hidden;
   line-height: 0;
   transform: rotate(180deg);
}

.curva-custom svg {
   position: relative;
   display: block;
   width: calc(100% + 1.3px);
   height: 60px;
}

.curva-custom .shape-destaques {
   fill: var(--cor-home-secondary) !important;
}

.curva-custom .shape-lancamentos {
   fill: #181818  !important;
}

.dropdown-menu {
   display: none;
   list-style: none;
   padding: 0;
   margin: 0;
 }
 
 .dropdown-selector {
   cursor: pointer;
   padding: 10px;
   /* background-color: #f0f0f0; */
   /* border: 1px solid #ccc; */
   border-radius: 5px;
 }
 
 .dropdown-menu li {
   padding: 10px;
   background-color: #fff;
   border-bottom: 1px solid #eee;
 }
 
 .dropdown-menu li:hover {
   background-color: #f0f0f0;
   border-left: 5px solid var(--bs-primary);
 }

.menu-title-gray-200 .menu-item .menu-link {
   color: var(--cor-primaria);
}

.bg-exagonal {
   background-image: url("/assets/media/imagens/5134336.webp");
}

.landing-dark-bg {
   background-color: #181818;
}

/*/ --------------------------------------------------------- //
// -- begin:: Animações customizadas 
// --------------------------------------------------------- /*/

.custom-animate {
   opacity: 0;
   transition: all 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Efeitos de entrada */
.custom-animate[data-animation="fadeLeft"] {
   transform: translateX(-60px);
}

.custom-animate[data-animation="fadeRight"] {
   transform: translateX(60px);
}

.custom-animate[data-animation="fadeUp"] {
   transform: translateY(60px);
}

.custom-animate[data-animation="fadeDown"] {
   transform: translateY(-60px);
}

.custom-animate[data-animation="zoomIn"] {
   transform: scale(0.95);
}

/* Delays para o título */
.custom-animate h2 span.custom-animate:nth-child(1) {
   transition-delay: 0.2s;
}

.custom-animate h2 span.custom-animate:nth-child(2) {
   transition-delay: 0.4s;
}

.custom-animate h2 span.custom-animate:nth-child(3) {
   transition-delay: 0.6s;
}

/* Delay para o parágrafo */
.custom-animate p.fs-2 {
   transition-delay: 0.8s;
}


/* Delays específicos pra hero section */
section.bg-fume .custom-animate:nth-child(1) {
   transition-delay: 0.2s;
}

section.bg-fume .custom-animate:nth-child(2) {
   transition-delay: 0.6s;
}

section.bg-fume .custom-animate:nth-child(3) {
   transition-delay: 1s;
}

/* Ajuste na transição pra ficar mais dramático */
.custom-animate[data-animation="fadeDown"] {
   transform: translateY(-30px);
   transition-duration: 0.8s;
}

.custom-animate[data-animation="fadeUp"] {
   transform: translateY(30px);
   transition-duration: 0.8s;
}

/* Estado final das animações */
.custom-animate.animated {
   opacity: 1;
   transform: translate(0) scale(1);
}

.toastr.toastr-warning {
   background-color: #f88b1d;
}

@media (max-width: 812px) {
   .carousel-control-prev {
     margin-left: 0px;
   }
 
   .carousel-control-next {
     margin-right: 0px;
   }
 
   .menu-title-gray-200 .menu-item .menu-link {
     color: var(--bs-primary);
   }
 
   .carousel-item img {
     height: auto;
   }
 
   .bg-mobile-none {
     background-color: transparent !important;
   }
 
   .menu-title-gray-100 .menu-item .menu-link {
     color: #000000 !important;
   }
 
   .bola {
     background: transparent !important;
   }
 
   .bola.transformada {
     background: transparent !important;
   }
   
   .tns.tns-default .tns-outer {
     margin: 0 1rem;
   }

   .bg-glass {
      border-left: none;
      border-right: none;
      backdrop-filter: none;
      box-shadow: none;
      border: none;
  }
   
 }

 @media (max-width: 768px) {
   .animate__animated {
       animation: none !important;
       opacity: 1 !important;
   }
   /* Para garantir que elementos escondidos apareçam */
   .animate__fadeIn,
   .animate__fadeInUp,
   .animate__fadeInLeft,
   .animate__fadeInRight {
       opacity: 1 !important;
   }

   .carousel-control-prev-icon {
      background-position: 22px 13px;
    }
    
    .carousel-control-next-icon {
      background-position: -22px 13px;
    }
  
    .carousel-control-prev, .carousel-control-next {
      top: 40%;
    }
}

/* --- begin:: Animation ----------------------------- */
   @keyframes fadeInUpSmooth {
      0% {
      opacity: 0;
      transform: translateY(
         25px
      ); /* Menor deslocamento para uma entrada mais suave */
      }
      100% {
      opacity: 1;
      transform: translateY(0);
      }
   }
   
   .fadeInUpSmooth {
      animation: fadeInUpSmooth 0.5s ease-out; /* Duração maior e easing mais suave */
   }
      

   @keyframes fadeIn {
   0% {
      opacity: 0;
   }

   100% {
      opacity: 1;
   }
   }

   .fadeIn {
   animation: fadeIn 0.4s ease-in-out;
   }

   @keyframes fadeInLeft {
   0% {
      opacity: 0;
      transform: translateX(-50px);
   }

   100% {
      opacity: 1;
      transform: translateX(0);
   }
   }

   .fadeInLeft {
   animation: fadeInLeft 0.4s ease-in-out;
   }

   /* Fade In Right */
   @keyframes fadeInRight {
   0% {
      opacity: 0;
      transform: translateX(50px);
   }

   100% {
      opacity: 1;
      transform: translateX(0);
   }
   }

   .fadeInRight {
   animation: fadeInRight 0.4s ease-in-out;
   }

   /* Fade In Up */
   @keyframes fadeInUp {
   0% {
      opacity: 0;
      transform: translateY(50px);
   }

   100% {
      opacity: 1;
      transform: translateY(0);
   }
   }

   .fadeInUp {
   animation: fadeInUp 0.4s ease-in-out;
   }

   /* Fade In Down */
   @keyframes fadeInDown {
   0% {
      opacity: 0;
      transform: translateY(-37px);
   }

   100% {
      opacity: 1;
      transform: translateY(0);
   }
   }

   .fadeInDown {
   animation: fadeInDown 0.4s ease-in-out;
   }

   @keyframes fadeOut {
   0% {
      opacity: 1;
   }

   100% {
      opacity: 0;
   }
   }

   .fadeOut {
   animation: fadeOut 0.4s ease-in-out;
   }

   @keyframes slideInLeft {
   0% {
      transform: translateX(-100%);
      opacity: 0;
   }

   100% {
      transform: translateX(0);
      opacity: 1;
   }
   }

   .slideInLeft {
   animation: slideInLeft 0.4s ease-in-out;
   }

   /* Slide In Right */
   @keyframes slideInRight {
   0% {
      transform: translateX(100%);
      opacity: 0;
   }

   100% {
      transform: translateX(0);
      opacity: 1;
   }
   }

   .slideInRight {
   animation: slideInRight 0.4s ease-in-out;
   }

   /* Slide Out Left */
   @keyframes slideOutLeft {
   0% {
      transform: translateX(0);
      opacity: 1;
   }

   100% {
      transform: translateX(-100%);
      opacity: 0;
   }
   }

   .slideOutLeft {
   animation: slideOutLeft 0.4s ease-in-out;
   }

   /* Slide Out Right */
   @keyframes slideOutRight {
   0% {
      transform: translateX(0);
      opacity: 1;
   }

   100% {
      transform: translateX(100%);
      opacity: 0;
   }
   }

   .slideOutRight {
   animation: slideOutRight 0.3s ease-in-out;
   }

   /* Slide In Down */
   @keyframes slideInDown {
   0% {
      transform: translateY(-20%);
      opacity: 0;
   }

   100% {
      transform: translateY(0);
      opacity: 1;
   }
   }

   .slideInDown {
   animation: slideInDown 0.4s ease-in-out;
   }

   /* Slide In Up */
   @keyframes slideInUp {
   0% {
      transform: translateY(20%);
      opacity: 0;
   }

   100% {
      transform: translateY(0);
      opacity: 1;
   }
   }

   .slideInUp {
   animation: slideInUp 0.3s ease-in-out;
   }

   /* Slide Out Down */
   @keyframes slideOutDown {
   0% {
      transform: translateY(0);
      opacity: 1;
   }

   100% {
      transform: translateY(100%);
      opacity: 0;
   }
   }

   .slideOutDown {
   animation: slideOutDown 0.3s ease-in-out;
   }

   /* Slide Out Up */
   @keyframes slideOutUp {
   0% {
      transform: translateY(0);
      opacity: 1;
   }

   100% {
      transform: translateY(-100%);
      opacity: 0;
   }
   }

   .slideOutUp {
   animation: slideOutUp 0.3s ease-in-out;
   }

/* --- end:: Animation ------------------------------- */

.nav-pills-custom .nav-link.active {
   background: linear-gradient(-30deg, #d4af37 0%, #ab8b21 100%);
}

.btn-primary {
   background: linear-gradient(-30deg, #d4af37 0%, #ab8b21 100%);
   padding: 15px 30px;
   display: inline-block;
   color: #fff;
   font-size: 15px;
   text-decoration: none;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
   cursor: pointer;
   border: none;
   transition: all 0.3s ease;
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.btn-primary:active {
   transform: translateY(1px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* --- begin:: Botão Animado ----------------------------- */

.animated-button {
   background: linear-gradient(-30deg, #d4af37 0%, #c5a028 100%);
   padding: 15px 30px;
   position: relative;
   display: inline-block;
   color: #fff;
   font-size: 15px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-decoration: none;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
   overflow: hidden;
   cursor: pointer;
}

/* Variantes */
.button-orange {
   background: linear-gradient(-30deg, #d4af37 0%, #ab8b21 100%);
}

.button-orange2 {
   background: linear-gradient(-30deg, #b13f0f 0%, #963004 100%);
}

.button-orange.active {
   background: linear-gradient(-30deg, #542511 50%, #542511 50%);
   border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Efeito hover */
.animated-button::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #fff;
   opacity: 0;
   transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
   opacity: 0.1;
}

/* Bordas animadas */
.animated-button span {
   position: absolute;
}

/* Borda superior */
.animated-button span:nth-child(1) {
   top: 0;
   left: 0;
   width: 100%;
   height: 2px;
   background: linear-gradient(to left, transparent, #ffd700);
   animation: 2s animateTop linear infinite;
}

/* Borda direita */
.animated-button span:nth-child(2) {
   top: 0;
   right: 0;
   height: 100%;
   width: 2px;
   background: linear-gradient(to top, transparent, #ffd700);
   animation: 2s animateRight linear -1s infinite;
}

/* Borda inferior */
.animated-button span:nth-child(3) {
   bottom: 0;
   left: 0;
   width: 100%;
   height: 2px;
   background: linear-gradient(to right, transparent, #ffd700);
   animation: 2s animateBottom linear infinite;
}

/* Borda esquerda */
.animated-button span:nth-child(4) {
   top: 0;
   left: 0;
   height: 100%;
   width: 2px;
   background: linear-gradient(to bottom, transparent, #ffd700);
   animation: 2s animateLeft linear -1s infinite;
}

/* Animações */
@keyframes animateTop {
   0% {
      transform: translateX(100%);
   }

   100% {
      transform: translateX(-100%);
   }
}

@keyframes animateRight {
   0% {
      transform: translateY(100%);
   }

   100% {
      transform: translateY(-100%);
   }
}

@keyframes animateBottom {
   0% {
      transform: translateX(-100%);
   }

   100% {
      transform: translateX(100%);
   }
}

@keyframes animateLeft {
   0% {
      transform: translateY(-100%);
   }

   100% {
      transform: translateY(100%);
   }
}

/* --- end:: Botão Animado ----------------------------- */


/*--------------------- NOVIDADES--------------------- */

/* Mobile Filters */
@media (max-width: 991.98px) {
    .filter-form {
        display: none; /* Esconde por padrão no mobile */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: #fff;
        overflow-y: auto;
        padding: 1rem;
    }

    .filter-form.show {
        display: block;
    }

    /* Remove margens e padding desnecessários no mobile */
    .filter-form .card {
        border: none !important;
        margin: 0 !important;
        height: 100%;
    }
}

.nav-link,
.btn {
   padding: 0.75rem 1rem;
   margin: 0.25rem;
}

.selected-tags {
  color: #5E6278;
  font-size: 0.9rem;
}


/* --------------------------------------------------------- */
/* -- begin:: Estilos Base para todos os Swipers
/* --------------------------------------------------------- */
.swiper-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    margin-top: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(33, 33, 33, 0.7));
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-nav-buttons:hover {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9), rgba(0, 0, 0, 0.95));
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.swiper-nav-buttons:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev,
.swiper-button-next {
    pointer-events: all !important;
}

/* --------------------------------------------------------- */
/* -- begin:: Property Swiper (Lista de Imóveis)
/* --------------------------------------------------------- */
.property-swiper-container {
    height: 100%;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.property-swiper-container .swiper,
.property-swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.property-swiper-container .swiper-slide {
    width: 100% !important;
    height: 100%;
}

.property-swiper-container img {
    height: 100%;
    object-fit: cover;
}

.property-swiper-container .swiper-button-prev,
.property-swiper-container .swiper-button-next {
    width: 47px;
    height: 47px;
}

.property-swiper-container .swiper-button-prev:after,
.property-swiper-container .swiper-button-next:after {
    font-size: 16px;
    color: white;
}

.property-swiper-container .swiper-button-prev {
    left: 10px;
}

.property-swiper-container .swiper-button-next {
    right: 10px;
}

/* Ajuste específico para mobile */
/* Smartphones pequenos (iPhone SE, etc) */
@media (max-width: 375px) {
    .property-swiper-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Smartphones médios (S22 Ultra, iPhone X/11/12, Galaxy S10 etc) */
@media (min-width: 376px) and (max-width: 428px) {
    .property-swiper-container {
        max-width: 365px;
        margin: 0 auto;
    }
}

/* Smartphones grandes (iPhone Pro Max etc) */
@media (min-width: 429px) and (max-width: 750px) {
    .property-swiper-container {
        max-width: 412px;
        margin: 0 auto;
    }
}

/* Comum para todos os mobiles */
@media (max-width: 750px) {
    .property-swiper-container img {
        height: 100%;
        object-fit: cover;
    }
}

/* Tablets e desktop */
@media (min-width: 751px) {
    .property-swiper-container {
        max-width: 600px;
    }
}


/* Controles do Swiper Home */
.propertySwiper .swiper-button-prev,
.propertySwiper .swiper-button-next {
    width: 60px;
    height: 60px;
}

.propertySwiper .swiper-button-prev:after,
.propertySwiper .swiper-button-next:after {
    font-size: 22px;
    color: white;
}

.propertySwiper .swiper-button-prev {
    left: 10px;
}

.propertySwiper .swiper-button-next {
    right: 10px;
}

/* --------------------------------------------------------- */
/* -- begin:: Main Swiper (Detalhe do Imóvel)
/* --------------------------------------------------------- */
.main-swiper {
    margin: 0 auto;
}

.main-swiper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .main-swiper .swiper-button-prev,
    .main-swiper .swiper-button-next {
        width: 60px;
        height: 60px;
    }

    .main-swiper .swiper-button-prev:after,
    .main-swiper .swiper-button-next:after {
        font-size: 24px;
        color: white;
    }

    .main-swiper .swiper-button-prev {
        left: -5rem;
    }

    .main-swiper .swiper-button-next {
        right: -5rem;
    }
}

/* Mobile Styles */
@media (max-width: 991px) {
    .main-swiper .swiper-button-prev,
    .main-swiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .main-swiper .swiper-button-prev:after,
    .main-swiper .swiper-button-next:after {
        font-size: 16px;
        color: white;
    }
}

/* --------------------------------------------------------- */
/* -- begin:: Thumb Swiper (Miniaturas)
/* --------------------------------------------------------- */
.thumb-swiper {
    padding: 10px 0;
    margin: 0 auto;
}

.thumb-swiper .swiper-slide {
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumb-swiper .swiper-slide img {
    width: 190px !important;
    height: 100%;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-swiper .swiper-slide-thumb-active img {
    border-color: var(--bs-primary);
}

@media (min-width: 992px) {
    .thumb-swiper .swiper-slide {
        width: 190px !important;
        height: 110px !important;
    }
}

@media (max-width: 991px) {
    .thumb-swiper .swiper-slide {
        width: 97px !important;
        height: 80px !important;
    }

    .thumb-swiper .swiper-slide img {
        width: 120px !important;
    }
}

.swiper-lazy-preloader {
    border: 4px solid var(--bs-white);
}

/* --------------------------------------------------------- */
/* -- begin:: Similares Swipper (Miniaturas)
/* --------------------------------------------------------- */

/* Desktop Styles (992px e acima) */
@media (min-width: 992px) {
    .similarsSwiper .swiper-button-prev,
    .similarsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .similarsSwiper .swiper-button-prev:after,
    .similarsSwiper .swiper-button-next:after {
        font-size: 24px;
        color: white;
    }
}

/* Mobile Styles (991px e abaixo) */
@media (max-width: 991px) {
    .similarsSwiper .swiper-button-prev,
    .similarsSwiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .similarsSwiper .swiper-button-prev:after,
    .similarsSwiper .swiper-button-next:after {
        font-size: 16px;
        color: white;
    }
}



/* ------- Pagination Datatables --------- */

.dataTables_empty{
  padding-left: 10px;
  padding-top: 10px;
}

.dataTables_paginate {  
  margin-top: 10px;
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.dataTables_paginate .paginate_button {
  cursor: pointer;
  font-size: 14px;
  padding: 7px 14px;
  margin-left: 7px;
   border: 1px solid var(--bs-primary);
   border-radius: 10px;
   color: var(--bs-text-gray-700) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.paginate_button.current {
  color: var(--bs-text-gray-200) !important;
  background: var(--bs-primary);
}

/* Ajuste específico para mobile */
@media (max-width: 768px) {
  .dataTables_paginate {
    /* Remove a margem direita no mobile */
    margin-right: 0;
    /* Centraliza a paginação */
    width: 100%;
    padding: 10px;
  }
  
  .dataTables_paginate .paginate_button {
    /* Reduz um pouco o padding nos botões em telas menores */
    padding: 5px 10px;
    /* Reduz a margem entre os botões */
    margin-left: 5px;
  }
}

/* Animações e Efeitos Whatsapp Icone */
.hover-scale {
   transition: transform 0.3s ease;
}
.hover-scale:hover {
   transform: scale(1.2);
}

.hover-text-white:hover {
   color: white !important;
   transition: color 0.3s ease;
}

.social-hover {
   transition: all 0.3s ease;
   color: #6c757d;
}
.social-hover:hover {
   color: white;
   transform: translateY(-3px);
}

/* Customização do WhatsApp */
@keyframes custom-pulse {
   0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      transform: scale(1);
   }
   70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      transform: scale(1.05);
   }
   100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      transform: scale(1);
   }
}

.whatsapp-button .fab.fa-whatsapp {
   animation: custom-pulse 2s infinite;
   border-radius: 50%; /* Faz o elemento ficar redondo */
}

/* Container do botão também precisa ser redondo para a sombra */
.whatsapp-button a {
   border-radius: 50px !important; /* Força o arredondamento */
   overflow: hidden; /* Garante que nada vaze do border-radius */
}

.feature-item {
   display: inline-block;
   margin-right: 20px;
   position: relative;
   padding-left: 18px;
   margin-bottom: 10px;
}

.feature-item:before {
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 8px;
   height: 8px;
   background-color: #cf713c;
   border-radius: 50%;
}

.text-shadow {
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* VariaÃ§Ãµes de intensidade */
.text-shadow-sm {
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
   position: relative;
   z-index: 1;
}

.footer-bg-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background-image: url('/assets/media/imagens/city.png');
   background-position: bottom center;
   background-repeat: no-repeat;
   background-size: contain;
   opacity: 0.09;
   height: 100%;
   width: 100%;
   z-index: -1;
}