: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: #a14f0f !important;
   --text-gray-600: #6B7280 !important;
}

.text-brand{
   color: var(--bs-primary);
}

.font-inter {
   font-family: 'Inter',sans-serif;
}

.font-quicksand{
   font-family: "Quicksand",sans-serif;
}

.font-text{
   font-family: "Figtree",sans-serif;
}

@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;
}

/* IMOBISOFT ----------- */

 .custom-tooltip {
   --bs-tooltip-max-width: 300px;
   --bs-tooltip-bg: linear-gradient(45deg, #4c453b, #000000);
   --bs-tooltip-padding-x: 1rem;
   --bs-tooltip-padding-y: 0.8rem;
   font-size: 1.1rem;
   font-weight: 500;
   letter-spacing: 0.3px;
   border-radius: 8px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.2);
 }
 
 .custom-tooltip .tooltip-inner {
   background: linear-gradient(45deg, #4c453b, #000000);
   border: 1px solid rgba(255,255,255,0.1);
   padding: 12px 20px;
   backdrop-filter: blur(5px);
   color: white;;
 }
 
 .custom-tooltip.bs-tooltip-top .tooltip-arrow::before {
   border-top-color: #c99846;
 }
 
 /* end -- IMOBISOFT ----------- */

.pagination {
   --bs-pagination-color: var(--bs-gray-300);
}

.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: -83px;
}

.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: 28px 13px;
}

.carousel-control-next-icon {
   background-position: -26px 13px;
}

.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; /* Fallback para browsers antigos: 1.5em (line-height) × 3 linhas */
}

.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: #ba6625 !important;
}

.noUi-touch-area {
   cursor: pointer;
}

.badge-primary {
   background: linear-gradient(288deg, #c87a59, #b14812);
}

.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;
   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;
}

.toastr.toastr-warning {
   background-color: #f88b1d;
}

/*/ --------------------------------------------------------- //
// -- 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);
}

@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) {
   .img-zoom {
      transform: none !important;
      transition: none !important;
  }
  
  .animate__animated {
      opacity: 1 !important;
      animation: none !important;
  }
  
  .custom-animate {
      opacity: 1 !important;
      transform: none !important;
      transition: none !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 ------------------------------- */


 /* --- begin:: Botão Animado ----------------------------- */

 .animated-button {
   background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);
   padding: 17px 36px;
   margin: 12px;
   display: inline-block;
   -webkit-transform: translate(0%, 0%);
           transform: translate(0%, 0%);
   overflow: hidden;
   color: #d4e0f7;
   cursor: pointer;
   font-size: 15px;
   letter-spacing: 2.5px;
   text-align: center;
   text-transform: uppercase;
   text-decoration: none;
   -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
           box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}



.button-orange {
background: linear-gradient(-30deg, #b13f0f 50%, #963004 50%);
}

.button-orange.active {
   background: linear-gradient(-30deg, #542511 50%, #542511 50%);
   border: 1px solid white;
}

.animated-button::before {
   content: '';
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   background-color: #8592ad;
   opacity: 0;
   -webkit-transition: .2s opacity ease-in-out;
   transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
opacity: 0.2;
}

.animated-button span {
position: absolute;
}

.animated-button span:nth-child(1) {
   top: 0px;
   left: 0px;
   width: 100%;
   height: 2px;
   background: -webkit-gradient(linear, right top, left top, from(rgba(43, 19, 8, 0)), to(#2662d9));
   background: linear-gradient(to left, rgba(43, 20, 8, 0),rgb(217, 139, 38));
   -webkit-animation: 2s animateTop linear infinite;
       animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
0% {
   -webkit-transform: translateX(100%);
           transform: translateX(100%);
}
100% {
   -webkit-transform: translateX(-100%);
           transform: translateX(-100%);
}
}

@keyframes animateTop {
0% {
   -webkit-transform: translateX(100%);
           transform: translateX(100%);
}
100% {
   -webkit-transform: translateX(-100%);
           transform: translateX(-100%);
}
}

.animated-button span:nth-child(2) {
   top: 0px;
   right: 0px;
   height: 100%;
   width: 2px;
   background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 23, 8, 0)), to(#2662d9));
   background: linear-gradient(to top, rgba(43, 13, 8, 0),rgb(217, 119, 38));
   -webkit-animation: 2s animateRight linear -1s infinite;
           animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
0% {
   -webkit-transform: translateY(100%);
           transform: translateY(100%);
}
100% {
   -webkit-transform: translateY(-100%);
           transform: translateY(-100%);
}
}

@keyframes animateRight {
0% {
   -webkit-transform: translateY(100%);
           transform: translateY(100%);
}
100% {
   -webkit-transform: translateY(-100%);
           transform: translateY(-100%);
}
}

.animated-button span:nth-child(3) {
   bottom: 0px;
   left: 0px;
   width: 100%;
   height: 2px;
   background: -webkit-gradient(linear, left top, right top, from(rgba(43, 20, 8, 0)), to(#2662d9));
   background: linear-gradient(to right, rgba(43, 16, 8, 0),rgb(217, 95, 38));
   -webkit-animation: 2s animateBottom linear infinite;
           animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
0% {
   -webkit-transform: translateX(-100%);
           transform: translateX(-100%);
}
100% {
   -webkit-transform: translateX(100%);
           transform: translateX(100%);
}
}

@keyframes animateBottom {
0% {
   -webkit-transform: translateX(-100%);
           transform: translateX(-100%);
}
100% {
   -webkit-transform: translateX(100%);
           transform: translateX(100%);
}
}

.animated-button span:nth-child(4) {
   top: 0px;
   left: 0px;
   height: 100%;
   width: 2px;
   background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 15, 8, 0)), to(#2662d9));
   background: linear-gradient(to bottom, rgba(43, 17, 8, 0),rgb(217, 83, 38));
   -webkit-animation: 2s animateLeft linear -1s infinite;
           animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
0% {
   -webkit-transform: translateY(-100%);
           transform: translateY(-100%);
}
100% {
   -webkit-transform: translateY(100%);
           transform: translateY(100%);
}
}

@keyframes animateLeft {
0% {
   -webkit-transform: translateY(-100%);
           transform: translateY(-100%);
}
100% {
   -webkit-transform: translateY(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-gray-700);
  border-radius: 10px;
  color: var(--bs-text-gray-200) !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%;
}