@font-face {
  font-family: "Termina-Demi";
  src: url(../fonts/Termina-Demi.woff);
  font-display: swap;
}
 /* Fancybox thumbs: manter sempre renderizado para permitir transições por transform/opacity */
 .fancybox-container .fancybox-thumbs{ display: block; }
 /* A visibilidade (mostrar/ocultar) é controlada via transform/opacity em property.html */

@font-face {
  font-family: "Termina-Regular";
  src: url(../fonts/Termina-Regular.otf);
  font-display: swap;
}

@font-face {
  font-family: "Termina-Medium";
  src: url(../fonts/Termina-Medium.woff);
  font-display: swap;
}

@font-face {
  font-family: "Termina-Bold";
  src: url(../fonts/Termina-Bold.otf);
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Regular";
  src: url(../fonts/Montserrat-Regular.otf);
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Medium";
  src: url(../fonts/Montserrat-Medium.otf);
  font-display: swap;
}
@font-face {
  font-family: "Montserrat SemiBold";
  src: url(../fonts/Montserrat-SemiBold.otf);
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Bold";
  src: url(../fonts/Montserrat-Bold.otf);
  font-display: swap;
}

@font-face {
  font-family: "Roboto Regular";
  src: url(../fonts/Roboto-Regular.ttf);
  font-display: swap;
}


/* Variables */

:root {
  --white: #fff;
  --black: #000;
  /* bg-primary levemente mais escuro para melhor contraste com texto branco */
  --bg-primary: #047748;
  --whatsapp: #0ab66e;
  /* --bg-2: rgba(194,143,77,0.30); */
  --bg-secondary: rgba(194, 143, 77, 0.30);
  --link: #1C8247;
}

/* Global */


/*Custom Select*/
.custom-select {
  position: relative;
  font-family: Arial;
  width: 100%;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: white;
  border: 1px solid #acacac;
  color: rgba(0,0,0,0.6) !Important;
  font-family: "Termina-Regular" !important;
  font-size: 14px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid; /* Set the border style */
  border-width: 1px; /* Set the border width */
  border-color: black transparent transparent transparent; /* Set the border color */
}


/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent black transparent;
  top: 7px;
}
.select-selected.select-arrow-active{
  border: 1px solid black;

}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #4F4F4F;
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.select-items div{
	color: black;
    }
.select-selected::before {
    content: "\f282";
    font-family: bootstrap-icons !important;
    right: 10px;
    position: absolute;
    font-size: 20px;
    color: #333333;
    top: 6px;
}
.select-selected.select-arrow-active::before{
    transform: rotate(-180deg);
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  top: 113%;
  left: 0;
  right: 0;
  z-index: 1;
  color: black !important;
  border: 1px solid #acacac;
  font-family: "Termina-Medium";
  font-size: 12px;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15);
  max-height: 200px;
    overflow: auto;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #F2F2F2;
}
body.stepFormPage .select-selected {
    border-color: #868686;
        font-size: 14px !important;
    color: black !important;
    font-family: "Montserrat Regular" !important;
}
body.stepFormPage .select-items div {
    font-size: 12px !important;
    color: black !important;
    font-family: "Montserrat Regular" !important;
}



.paraLightColor{
    color: #666666 !important;
}
.dashed-top-border {
  border-top: 1px dashed #ACACAC;
  margin: 20px 0;
}

.greenHover:hover {
  background-color: var(--bg-primary) !important;
}

select option:not([value]) {
  display: none;
}

body#home .my-header,
body#technology .my-header,
body#sell .my-header,
body#partners .my-header {
  position: absolute !important;
  width: 100%;
}

body#sell .my-header {
  z-index: 10;
}
.hero-section p{
    font-family: "Montserrat SemiBold";
    line-height: 24px;
}
.full-height,
.full-height .full-height-row {
  height: 100vh;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

.form-select {
  background-image: url(../images/chevronDown.svg);
}

.form-select:focus {
  background-image: url(../images/chevronUp.svg);
}

a {
  color: black;
}

h1 {
  text-decoration: uppercase;
  font-size: 48px;
  line-height: 116%;
  text-align: center;
  color: var(--white);
  font-family: "Termina-Demi";
}

h2 {
  color: var(--white);
  font-family: "Termina-Demi";
  /* text-transform: uppercase; */
  font-size: 40px;
  line-height: 120%;
}

h3 {
  font-family: "Termina-Demi";
  color: var(--black);
  font-size: 24px;
  line-height: 116%;
}

h4 {
  font-family: "Termina-Demi";
  color: var(--white);
  font-size: 20px;
}

h5 {
  font-family: "Termina-Demi";
  font-size: 18px;
  color: var(--white);
  line-height: 129%;
}

h6 {
  font-size: 16px;
  font-family: "Termina-Demi";
  line-height: 150%;
  color: var(--white);
}

.home p {
  margin: 25px 0px;
}

p .link {
  color: var(--link);
  font-family: "Montserrat Bold";
}

p {
  color: var(--white);
  font-family: "Montserrat Medium";
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
}

.para-dark p {
  color: #333333;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  font-family: "Montserrat Regular";
}

.para-dark p:last-child {
  margin-bottom: 0;
}

.padding-120 {
  padding: 120px;
}

.paddingY-100 {
  padding: 100px 0;
}

.w-740 {
  max-width: 740px;
  margin: 0 auto;
}

.bg--green {
  background-color: var(--bg-primary);
}

.btn-1 {
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 12px;
  font-family: "Termina-Medium" !important;
  position: relative;
  display: inline-flex;
  align-items: center !important;
  /* gap: 15px; */
  letter-spacing: 0.4px;

}

.btn-1:hover {
  background-color: var(--white);
}

.btn-2 {
  background-color: transparent;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 13px;
  font-family: "Termina-Medium" !important;
  position: relative;
  display: inline-flex;
  align-items: center !important;
  /* gap: 15px; */
  letter-spacing: 0.4px;

}

.btn-3 {
   background-color: var(--bg-primary);
  color: white;
  border-radius: 2px;
  padding: 8px 20px;
  font-size: 13px;
  font-family: "Termina-Medium" !important;
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px;
  letter-spacing: 0.4px; 
  /* Mantém o mesmo verde em todos os estados (Bootstrap 5 usa CSS variables) */
  --bs-btn-bg: var(--bg-primary);
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--bg-primary);
  --bs-btn-hover-bg: var(--bg-primary);
  --bs-btn-hover-border-color: var(--bg-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--bg-primary);
  --bs-btn-active-border-color: var(--bg-primary);
  --bs-btn-active-color: #fff;
  --bs-btn-focus-shadow-rgb: 0,0,0; /*remove brilho*/
}

/* Extra: escopo direto no link de parceiro da página de perfil */
body.profile a.btn.btn-3[href*="parceiro"]:hover,
body.profile a.btn.btn-3[href*="parceiro"]:focus,
body.profile a.btn.btn-3[href*="parceiro"]:active{
  background-color: var(--bg-primary) !important;
  border-color: var(--bg-primary) !important;
  color: #fff !important;
}

/* Botão Parceiro ATLAS fixo verde (com classe específica) */
body.profile a.btn.partner-btn.btn-3,
body.profile a.btn.partner-btn.btn-3:hover,
body.profile a.btn.partner-btn.btn-3:focus,
body.profile a.btn.partner-btn.btn-3:active {
  background-color: var(--bg-primary) !important;
  border-color: var(--bg-primary) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-1 i,
.btn-2 i,
.btn-3 i {
  font-size: 30px;
  display: flex;
}

.btn-1,
.btn-2,
.btn-3 {
  min-width: 200px;
  justify-content: center;
  min-height: 50px;
}

.btn-bg--black {
  background-color: black !important;
}
.btnShadow:hover{
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
hr {
  color: #DBDBDB;
  opacity: 1 !important;
}

.my-ul {
  padding-left: 0;
}

.my-ul li {
  list-style: none;
}

.my-ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-family: "Termina-Medium";
}

[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  -webkit-user-modify: read-write !important;
  cursor: pointer;
  height: 20px;
  width: 14px;
    margin-right: -10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E");
}

/* Header */

.my-header .navbar-toggler i{
  display: none;
  position: relative;
  right: 5px;
  top: 5px;
}

body.nav-overlay-open {
  overflow: hidden !important;
}

body.nav-overlay-open,
html.nav-overlay-open {
  overflow-x: hidden !important;
}

/* @media (max-width: 991.98px) {
  body.nav-overlay-open .my-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
  }

  body.nav-overlay-open .my-header .navbar-brand,
  body.nav-overlay-open .my-header .navbar-toggler {
    position: relative;
    z-index: 10001;
  }

  body.nav-overlay-open .my-header .navbar-toggler {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10002;
  }

  body.nav-overlay-open .my-header .navbar-brand {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 10002;
  }

  .my-header .navbar-collapse {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: #fff;
    z-index: 9999;
    padding-top: 88px;
    box-sizing: border-box;
    transform: translate3d(0, -8px, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .my-header .navbar-collapse > ul.navbar-nav {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .my-header .navbar-collapse::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .my-header .navbar-collapse {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .my-header .navbar-collapse.collapse {
    display: block !important;
  }

  .my-header .navbar-collapse.show,
  .my-header .navbar-collapse.collapsing {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }
} */
.my-header {
  position: relative;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 100%);
}

.my-nav  {
  background-color: transparent !important;
}

.my-nav .navbar-nav a {
  color: var(--white);
  font-family: "Termina-Medium";
  font-size: 12px;
}

/* .my-nav .navbar-nav a:hover {
  text-decoration: underline;
  text-decoration-color: white;
  text-underline-offset: 26px;
  text-decoration-thickness: 4px;
} */

.my-nav ul.navbar-nav {
  gap: 20px;
}

.header-search {
  display: none !important;
}

.header-search input,
.header-search button {
  border-radius: 0px;
  margin: 0 !important;
}

.header-search input {
  border: 1px solid #DBDBDB;
  font-family: "Montserrat Regular";
  font-size: 12px;
  letter-spacing: 0.4px;
  width: 360px;
  /*border-right: 0;*/
  background-color: #666666;
}

.header-search .form-control:focus {
  border-color: #666666;
}

.header-search button {
  background-color: black;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search button:hover {
  background-color: black;
  color: white;
}

.header-search button i {
  font-size: 14px;
}

.header-search input {
    padding-left: 16px !important;
     min-height: 40px;
    font-size: 12px !important;
    font-family: "Montserrat Regular" !important;
    letter-spacing: 0.4;
    color: #666666 !important;

}

.header-search form ::placeholder {
  color: #666666;
}

/* Hero Section */

.hero-section {
  background-image: url(../images/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  height: 100vh;
}

body#home .hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 180px;
}

body#home .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

body#home .hero-section > .container {
  position: relative;
  z-index: 1;
}

.hero-section form {
  max-width: 710px;
  height: 60px;
  margin: 0 auto;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 12px;
  background-color: var(--white);
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.hero-section form input {
  border-radius: 0px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #666666;
  font-family: "Montserrat Regular";
  
}

.hero-section form input:focus {
  outline: none;
  box-shadow: none;
}

.hero-section button {
  padding: 0px 5px 0 15px;
}

.hero-section form i {
  font-size: 20px;
}

.hero-section button:active {
  border: none;
}

.hero-section form ::placeholder {
  color: #666666 !important;
}

.atlas-hero-arrow {
  text-align: center;
  padding-bottom: 16px;
  min-height: 44px;
}

.atlas-hero-arrow__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.atlas-hero-arrow__icon {
  width: 22px;
  height: 24px;
  cursor: pointer;
  animation: heroArrowBounce 1.6s ease-in-out infinite;
}

body#home .hero-section {
  position: relative;
}

body#home .hero-section .atlas-hero-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

body#sell .sell-hero,
body#partners .partners-hero,
body#technology .technology-hero {
  position: relative;
}

body#sell .sell-hero .atlas-hero-arrow,
body#partners .partners-hero .atlas-hero-arrow,
body#technology .technology-hero .atlas-hero-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 991.98px) {
  body.mobile-menu-open .atlas-hero-arrow {
    display: none !important;
  }
}

.hero-down-arrow {
  width: 20px;
  cursor: pointer;
}

/* .down-arrow-link {
  bottom: 40px;
} */

/* body#sell .down-arrow-link,
body#partners .down-arrow-link {
  position: static;
} */

/* Hero microinteractions */

body#home .hero-section h1,
body#partners .hero-section h1,
body#technology .hero-section h1 {
  opacity: 0;
  transform: translateY(10px);
  animation: heroTitleFadeIn 0.8s ease-out forwards;
}

.hero-down-arrow {
  animation: heroArrowBounce 1.6s ease-in-out infinite;
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(2px);
  }
}

/* search */
 form .search-container {
  width: 100%;
  display: flex;
  position: relative;
}

 form .search-results {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  width: 360px;
  max-height: 200px;
  overflow-y: auto;
  top: 100%;
  border-radius: 4px;
  margin-left: -17px;
}

 form .search-result-item {
  padding: 18px 10px 18px 50px;
  cursor: pointer;
  font-size: 14px;
}

 form .search-result-item:hover {
  background-color: #f8f8f8;
}

/* Home */

.home-bottom-section {
  padding: 50px 0px;
}

.home-bottom-section .row>div {
  padding: 80px 0px;
}

.home-bottom-section .col-md-6:first-child {
  border-right: 1px solid var(--white);
}

.home-section-3 .btn-2 {
  background-color: var(--black);
}

/* Technology page */

.technology-hero {
  background-image: url(../images/technologyHero.webp);
}

.technology-hero p {
  font-weight: 600;
}

.technology-section-1 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon {
  width: 30px;
  height: 30px;
}

.icon-box {
  display: inline-block;
  padding: 16px;
  background-color: #333333;
  border-radius: 100px;
}

/* Sell page */

.sell-hero {
  background-image: url(../images/vender.webp);
  position: relative;
}

body#sell .sell-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

body#sell .sell-hero > .container {
  position: relative;
  z-index: 1;
}

body#sell .sell-hero > .container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* body#sell .sell-hero > .container > .row:last-child {
  margin-top: auto;
} */

body#sell .sell-hero {
  align-items: flex-start;
  padding-top: 180px;
}

/* body#sell .sell-hero .arrow {
  margin: 0;
} */

.sell-hero .btn-2 {
  min-width: 300px;
  font-family: "Termina-Demi" !important;
  font-size: 14px;
}

.sell-hero .btn-2:hover {
  background-color: var(--black);
  border-color: var(--black) !important;
}

.icon-left-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon-left-box>div:first-child {
  background-color: #f5f5f5;
  padding: 18px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border-radius: 100px;
  width: 60px;
  height: 60px;
}

.icon-left-box>div:first-child span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: "Termina-Medium";
  font-size: 16px;
  font-weight: 700;
}

.icon-box-heading {
  font-size: 16px;
  color: var(--black);
  font-family: "Termina-Medium";
  font-weight: 500;
}

.sell-section-2 {
  background-color: #e6d6b5;
}

.sell-section-2 .btn-2 {
  color: var(--black) !important;
  font-size: 14px;
  min-width: 260px;
}

.sell-section-2 .btn-2:hover {
  background-color: var(--whatsapp);
  color: var(--white) !important;
  border-color: var(--whatsapp) !important;
}

.sell-section-2 .btn-2 img {
  transition: all 0.3s;
}

.sell-section-2 .btn-2:hover img {
  filter: invert(1);
}

.sell-accordion-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none !important;
  color: var(--black);
}

.sell-accordion-section .accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.sell-accordion-section .accordion-body {
  padding-top: 0px;
  padding-bottom: 25px;
}

.sell-accordion-section .accordion-item button {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.sell-accordion-section .accordion-button:focus {
  border: none;
  box-shadow: none !important;
}

.sell-section-3 .icon-left-box>div:first-child {
  position: relative;
}

.sell-section-3 .icon-left-box>div:first-child::after {
  display: none;
  position: absolute;
  background-color: #dbdbdb;
  left: 50%;
  top: 60px;
  content: "";
  width: 2px;
  height: 100%;
}

.sell-section-3 .icon-left-box:last-child>div:first-child::after {
  display: none !important;
}

/* PARTNER PAGE CSS */

/* BASE */
body#partners .hero-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 180px;
}

@supports (height: 100svh) {
  body#partners .hero-section {
    min-height: 100svh;
  }
}

@supports (height: 100dvh) {
  body#partners .hero-section {
    min-height: 100dvh;
  }
}

body#partners .my-header {
    z-index: 10;
}

/* IMAGEM */
.partners-hero .hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* IMG RESPONSIVA */
.partners-hero .hero-media picture,
.partners-hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.partners-hero .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* CONTEÚDO */
.partners-hero .hero-content {
    position: relative;
    color: #fff;
    z-index: 1;
}

/* body#partners .partners-hero .hero-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body#partners .partners-hero .hero-content > .row {
  width: 100%;
} */

/* body#partners .partners-hero .hero-content > .row:last-child {
  margin-top: auto;
} */

/* body#partners .partners-hero .arrow {
  margin: 0;
} */


.partners-section-2 {
  background-color: var(--black);
}

.partners-section-2 h3,
.partners-section-2 p,
.partners-section-2 a {
  color: white;
}

.partners-section-2 .btn-2 {
  color: white !important;
}

.partners-section-2 .btn-2 {
  border-color: white !important;
}

.partners-section-2 .btn-2 img {
  filter: invert(1);
}

 .popupVerificationSection .img-2{
   
    display:none !important;
   }



/* PROFILE PAGE CSS */
body.profile .my-header {
  background: white;
  border-bottom: 1px solid #dbdbdb;
  margin: 0;
}

body.profile .my-nav a:hover {
  color: black;
  text-decoration-color: black;
}

body.profile .my-nav a {
  color: #333333;
}

body.profile .navbar-brand img {
  filter: brightness(0) saturate(100%) invert(5%) sepia(7%) saturate(845%) hue-rotate(22deg) brightness(95%) contrast(85%);
}

.profile-section form {
  max-width: 300px;
  margin: 0 auto;
}
.profile-section form input::placeholder,
.profile-section form input{
    font-family: "Montserrat Regular" !important;
    font-size: 14px;
    color: rgba(0,0,0,0.87);
}
.profile-section form label {
  font-size: 12px;
  font-family: "Roboto Regular";
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
}

.profile-section form input,
.profile-section form select {
  border-radius: 4px;
  border-color: #acacac;
  color: black;
}
.partner-form-section ::placeholder,
.partner-form-section select,
.partner-form-section input{
    font-family: "Termina-Regular" !important;
    
}
.partner-form .btn-2{
    font-family: "Termina-Demi" !important;
}
.profile-section form ::placeholder {
  font-family: "Montserrat Regular";
  font-size: 14px;
  color: rgba(0, 0, 0, .60);
}

.profile-section form .form-control:focus {
  border-color: #acacac;
}

.profile-section form button {
  width: 100%;
  font-size: 13px;
}

.profile-section .btn-2 {
  background-color: black;
  border-radius: 4px;
}

.profile-section .btn-1 {
  border-color: #DBDBDB;
  border-radius: 4px;
}

/* FAVORITES CSS */
.favorites-box {
  background-color: var(--bg-secondary);
  padding: 28px;
}

body.favorites .btn-2 {
  background-color: black;
}
body.favorites > section{
    padding-top: 48px;
}
/* PARTNER FORM CSS */
.partner-form-section .black-logo {
  width: fit-content;
  margin: 0 auto 30px auto;

}

body.partner-form form {
  max-width: 600px;
  margin: 0 auto;
}

body.partner-form .terms-links {
  font-size: 12px;
  font-family: "Roboto Regular";
  color: rgba(0, 0, 0, 0.60);
  margin: 30px 0;
}

body.partner-form .terms-links b {
  color: black;
}

body.partner-form .btn-2 {
  width: 50%;
}

body.partner-form .form-select:focus {
  border-color: #acacac;
}

body.partner-form select {
  color: rgba(0, 0, 0, .60);
}



body.partner-form option {
  color: black;
  font-family: "Termina-Medium";
  font-size: 12px;
  line-height: 40px !important;
}

body.partner-form select:focus {
  border-color: black !important;
}

body.partner-form select {
  background-image: url('../images/chevronDown.svg');
}



/*loginscreen*/

section.Login-Sec {
  background: url(../images/Signin.webp);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.Login-Sec .row {
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  height: 100vh;
}

.Login-Sec .col-md-6 {
  text-align: center;
}

.entrar p a {
  text-decoration: none;
}

.entrar p span {
  color: #069257;
  font-family: 'Montserrat Bold';
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}

.entrar p {
  color: #333333;
  text-align: left;
  font-family: 'Montserrat Regular';
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.entrar h1 {
  text-align: left;
  color: #000;
  font-family: "Termina-Demi" !important;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0 !important;
}

.entrar {
  background: #fff;
  padding: 48px;
}

.entrar input[type=text],
.entrar input[type=mail],
.entrar input[type=password],
.entrar input[type=submit] {
  width: 100%;
  padding: 6px;
  margin: 0px 0;
  display: inline-block;
  border: 0px solid #ccc;
  box-sizing: border-box;
  border-radius: 4px;
}

.entrar input[type=text] {
  border-bottom: 1px solid #ccc;
}

.entrar input[type=mail] {
  border-bottom: 1px solid #ccc;
}

.entrar input[type=password] {
  border-bottom: 1px solid #ccc;
}

.entrar input[type=checkbox] {
  margin-top: 16px;
}

.entrar input[type=submit] {
  background-color: #000000;
  color: white;
  border: none;
  margin-top: 24px;
  font-size: 12px;
  line-height: 22px;
  width: 110px;
  height: 38px;
  font-family: "Termina-Demi" !important;
  border-radius: 4px;
}

.entrar input[type=submit]:hover {
  opacity: 0.8;
}

.entrar label {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #333333;
  font-family: "Montserrat Regular";
}

.entrar form .container {
  text-align: left;
}

.entrar form .container:nth-child(2) {
  text-align: right;
}

.or-content {
  display: flex;
  flex-direction: row;
}

.or-content p {
  font-family: "Montserrat Regular";
  color: #000;
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  padding: 0 10px;
}

.or-content .border-left,
.or-content .border-right {
  border: 1px solid #DBDBDB;
  width: 45%;
  height: 1px;
  margin: auto 0;
}

.googlebutton button {
  width: 100%;
  padding: 10px 60px;
  border: 1px solid #ACACAC;
  background: transparent;
  color: #121212;
  font-family: "Termina-Demi" !important;
  font-size: 12px;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.googlebutton i.bi.bi-google {
  padding-right: 12px;
  font-size: 24px;
}

.googlebutton {
  margin-bottom: 100px;
}

.last-para p {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #121212;
  font-family: "Montserrat Regular";
  margin: 0;
}

.Login-Sec .col-md-6:nth-child(2) {
  padding-left: 40px;
}

/*Magic Link*/

.magic-sec {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.magic-sec .col-md-12 img {
  margin-bottom: 24px;
}

.magic-sec h2 {
  color: #000000;
  font-size: 24px;
}
.magic-sec h2{
    text-transform: none;
}
.magic-sec p {
  color: #666666;
  font-family: 'Montserrat Regular';
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.magic-sec p a{
    color: #666666;
}
button.reenviar {
  background: #121212;
  border: 0;
  color: #fff;
  padding: 16px 95px;
  font-family: "Termina-Demi" !important;
  font-size: 13px;
  letter-spacing: 0.4px;
}

/*Favourite Filled*/

.favorites-filled header img {
  filter: invert(1);
}

.favorites-filled .my-header {
  background: #fff;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 0;
}

.favorites-filled .para-dark {
  padding-top: 48px !important;
  padding-bottom: 45px !important;
}

.favourite-card > div > i.active{
    color: #E52726;
}
.favourite-card a {
  text-decoration: none;
}
.favourite-card > div > i{
    z-index: 1;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #DBDBDB;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
  text-align: right;
     bottom: 45px !important;
    right: 4px !important;
  color: black;
  font-size: 20px;
}

@media (max-width: 576px){
  .favourite-card > div > i{
     bottom: 63px !important;
}
}   

.favourite-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.favourite-card > div{
    position: relative;
    margin: 12px;
    transition: all 0.3s;

}
.favourite-card > div:hover{
        box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);
}
.ImageSlider .carousel-inner img{
    height: 180px;
    object-fit: cover;
}
.ImageSlider .carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert() !important;
  background-size: 45% !important;
  background-position: center center;
}

.ImageSlider .carousel-control-prev,
.ImageSlider .carousel-control-next {
  opacity: 1;
  background-color: white;
  height: fit-content;
  width: fit-content;
  border-radius: 100px;
  padding: 1px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.09);

}

.ImageSlider .carousel-control-prev {
  left: 10px;
}

.ImageSlider .carousel-control-next {
  right: 10px;
}

.ImageSlider .carousel-indicators>button {
  border-radius: 100% !important;
  height: 6px !important;
  width: 6px !important;


}
.ImageSlider > button{
      z-index: 0 !important;
}

.ImageSlider .carousel-indicators {
  gap: 8px;
}

.ImageSlider .carousel-indicators>button.active {
  transform: scale(1.4);
}
.card-content {
  padding: 20px 16px 12px;
  border: 1px solid #DBDBDB;
}

.card-content h2 {
  font-family: 'Termina-Demi';
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
}

.card-content h3 {
  font-family: 'Termina-Medium';
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  margin-bottom: 10px;
}

.card-content p {
  font-family: "Montserrat SemiBold";
  font-size: 13px;
  font-weight: 400;
  color: #069257;
    line-height: 24px;
  margin-bottom: 6px;
}

.card-content h6 {
  font-size: 12px;
  line-height: 22px;
  color: #121212;
  font-family: "Montserrat SemiBold";
}

.card-content .reenviar {
  background: #000;
  border: 0;
  color: #fff;
  padding: 16px 30px;
  font-family: "Termina-Demi" !important;
  font-size: 13px;
  letter-spacing: 0.4px;
  width: 100%;
  margin-top: 20px;
}

.favourite-card img {
 
  width:100% ;
}

/*Search Engine*/
.search-engine input#toSlider {
  z-index: 0 !important;
}
/* Inputs do modal de filtros (Valor/Área): remover bordas/quadrado */
body.search-engine .floatSearchFilters .form_control_container__time__input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}
body.search-engine .floatSearchFilters .form_control_container__time__input:focus,
body.search-engine .floatSearchFilters .form_control_container__time__input:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Controle do "+" visual nos filtros (ao lado do prefixo) */
body.search-engine .floatSearchFilters .minMaxPrefix {
  display: flex;
  align-items: center;
  gap: 6px;
}
body.search-engine .floatSearchFilters .minMaxPrefix .plus-sign {
  visibility: hidden;
}
body.search-engine .floatSearchFilters .minMaxPrefix.show-plus .plus-sign {
  visibility: visible;
}
/* Enquanto qualquer input dentro do container estiver focado, esconda o '+' visual */
body.search-engine .floatSearchFilters .minMaxPrefix:focus-within .plus-sign {
  visibility: hidden !important;
}
body.search-engine div.modal-backdrop{
    display: none;
}
body.search-engine div.modal{
    background-color: rgba(0,0,0, 0.5);
}
body.search-engine .modal-header button:focus{
    box-shadow: none;
}


.pagination{
    margin-top: 40px;
    justify-content: center;
}
.pagination ul{
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination ul li a{
    border: 2px solid black;
    padding: 14px 19px;
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-family: "Termina-Demi";
    transition: all .3s ease;
}

.pagination-active,
.pagination ul li:not(.paginationLeftArrow, .paginationRightArrow) a:hover{
    color: white !important;
    background-color: black;
}
.paginationLeftArrow a,
.paginationRightArrow a{
    border: none !important;
    padding: 0 !important;
}
.search-engine .map-col > div{
    position: sticky;
    top: 73px;
    height: calc(100vh - 73px);
} 
.map-col{
    padding-right: 10px !important;
}
.list-col{
    padding-left: 10px !important;
}
.floatSearchFilters {
    background: white;
    margin-left: -2px;
}

/* Footer mobile layout */
footer.footer-mobile .footer-divider {
  border-color: #3A3A3A;
  opacity: 1;
}

body.property-page footer.footer-mobile {
  overflow-x: hidden;
}

body.property-page footer.footer-mobile .container-fluid {
  overflow-x: hidden;
}

body.property-page footer.footer-mobile .row {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  footer.footer-mobile {
    padding-top: 30px !important;
  }

  footer.footer-mobile .row.p-5 {
    padding: 16px !important; /* 16px spacing in mobile */
  }

  footer.footer-mobile .my-ul li a {
    display: inline-block;
    padding: 8px 0; /* visual rhythm; combined gives ~16px between items */
  }

  footer.footer-mobile .logo-column {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  /* Mobile social icons size and spacing */
  footer.footer-mobile .d-md-none img[src*="assets/images/"] {
    width: 24px;
    height: 24px;
  }

  footer.footer-mobile .social-column a {
    margin: 0 8px;
  }
}
.floatSearchFiltersScroll {
  /* position: sticky; */
   top: 73px;
    z-index: 3;
    
}

::-webkit-slider-thumb{
    box-shadow: none !important;
}
.rangeSliderThumbTo::-webkit-slider-thumb {
  background: black !important;
  box-shadow: none !important;
  border: 0px !important;
}

.search-engine header img {
  filter: invert(1);
}

.search-engine header ul li a {
  color: #333333 !important;
}

.search-engine .my-header {
  background: #fff;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 0;
}

.cards-style {
  width: 100%;
}

.search-engine .row {
  width: 100% !important;
}

.search-engine .card-content p {
  color: #666666 !important;
  /* color: #069257 !important;   */
  font-family: 'Montserrat Medium';
}

.search-engine .card-content h3 {
  font-family: 'Montserrat Medium' !important;
  font-weight: 400 !important;
}

.search-engine .card-content h3 {
  font-family: 'Montserrat Medium' !important;
  font-weight: 400 !important;
}

.search-engine .card-content h6 {
  font-family: 'Montserrat Medium' !important;
  font-weight: 400 !important;
  color: #666666 !important;
}

.contentsearch h1 {
  padding: 16px;
  border-bottom: 1px solid #ccc;
}

.contentsearch h1 {
  text-align: left;
  color: #000;
 font-family: "Termina-Medium";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.15px;
  padding-left: 16px;
}

.contentbutton button,
.contentbutton button:hover {
  min-width: unset;
  min-height: 40px;
  border-radius: 4px;
}
.modal-footer button:active{
    border: none !important;
    box-shadow: none !important;
}
.contentbutton {
  padding: 16px 16px;
  border-bottom: 1px solid #ccc;
}

.contentbutton button i,
.contentbutton button:hover i {
  font-size: 20px;
  display: flex;
  align-items: end;
}

.contentfilter {
  padding-top: 16px;
  display: flex;
  gap: 20px;
  align-items: center; 
  padding-left: 16px; 
}
.contentfilter a{
    font-family: 'Termina-Regular' ;
    font-size: 12px !important;
    color: #000 !important;
}
.contentfilter a:hover{
    background-color: #F2F2F2;
}

.contentfilter .dropdown-menu{
    border-radius: 0px;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}
.contentfilter p b {
  font-family: 'Termina-Demi';
  font-size: 12px;
  color: #000;
}

.contentfilter p {
  font-family: 'Montserrat Regular';
  font-size: 12px;
  color: #000;
  line-height: 19px;
  margin-bottom: 0;
}

.contentfilter .dropdown button {
  font-family: 'Termina-Medium';
  font-size: 12px;
  color: #000;
}
.propertiesCount{
    font-family: "Termina-Medium" !important;
}
.modal-dialog {
  max-width: 600px !important;
}

.modal-header {
  background: #000;
}

.modal-header h1#exampleModalLabel {
  font-size: 16px !important;
  font-family: "Termina-Medium" !important;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-header h2#exampleModalLabel {
  font-size: 16px !important;
  font-family: "Termina-Medium" !important;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-body {
  padding: 0;
}

.modal-body .body1 {
  border-bottom: 1px solid #00000012;
  padding: 24px;
  padding-bottom: 30px;
}

.valor h3 {
  font-size: 16px;
  color: #000;
  font-family: "Termina-Medium";
}
.modal p{
    color: #666666;
}
.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
}

.form_control .form_control_container {
  border: 1px solid #ACACAC;
  padding: 10px;
  width: 100%;
}

.form_control .form_control_container__time {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  font-family: "Montserrat Regular";
  color: rgba(0,0,0,0.60);
}

.form_control input#fromInput,
.form_control input#toInput {
  border: 0px solid;
  padding: 0px;
  color: #000 !important;
  width: 100%;
  height: auto;
  font-family: "Montserrat Regular";
  font-size: 14px;
  line-height: 24px;
}
.minMaxPrefix {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}
.minMaxPrefix span{
    font-size: 12px;
    font-family: "Montserrat Regular";
    color: rgba(0,0,0,0.60);
}
.modal input[type=number]::-webkit-inner-spin-button, 
.modal input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.sliders_control {
  position: relative;
  min-height: 50px;
}
.modal ::-webkit-scrollbar {
  display: none;
}
.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  color: #635a5a;
  gap: 40px;
}

.range_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

.range_container input[type=range]::-moz-range-thumb {
  --webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

.range_container input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

.range_container input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

.range_container input[type="number"] {
  color: #8a8383;
  width: 50px;
  height: 30px;
  font-size: 20px;
  border: none;
}

.range_container input[type=number]::-webkit-inner-spin-button,
.range_container input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.range_container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}

.rangeSliderThumbFrom {
  height: 0 !important;
  z-index: 1 !important;
   top: 2px;
   filter: invert();
}
body.search-engine .modal-content input{
    outline: none;
}
.body1 .checkforms .form-check {
  margin-bottom: 20px;
}

.body1 .checkforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}

.body1 label.form-check-label {
  font-family: 'Montserrat Regular';
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: rgba(0,0,0,0.87);
}

/* PROPERTY PAGE  */
body.property-page .btn-2{
      font-family: "Termina-Demi" !important;
}
body.property-page .accordion-body ::marker{
    font-size: 10px;
}
/* .fancybox-button--arrow-left i {
    font-size: 16px; /* ícone menor 
}
.fancybox-button--arrow-left{
    left: 16px !important;   /* afastado da borda 
    right: unset !important;
} */

.fancybox-navigation .fancybox-button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px ; /* tamanho conforme inspeção */
    width: 30px ;  /* tamanho conforme inspeção */
    position: absolute !important; /* garante posicionamento independente */
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.fancybox-button--arrow-left { left: 6px !important; right: auto !important; }
.fancybox-button--arrow-right { right: 6px !important; left: auto !important; }
/* Fancybox v3 usa classes com underscore: --arrow_left/--arrow_right */
.fancybox-button--arrow_left { left: 6px !important; right: auto !important; }
.fancybox-button--arrow_right { right: 6px !important; left: auto !important; }

/* Aumenta a especificidade para garantir que a margem lateral prevaleça */
.fancybox-container .fancybox-navigation .fancybox-button { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; }
.fancybox-container .fancybox-navigation .fancybox-button--arrow-left { left: 6px !important; right: auto !important; }
.fancybox-container .fancybox-navigation .fancybox-button--arrow_right { right: 6px !important; left: auto !important; }
.fancybox-container .fancybox-navigation .fancybox-button--arrow_left { left: 6px !important; right: auto !important; }
.fancybox-container .fancybox-navigation .fancybox-button--arrow-right { right: 6px !important; left: auto !important; }
.fancybox-button--arrow-right i {
    font-size: 16px; /* ícone menor */
}

/* ===== Fancybox: ajustes MOBILE para botões de navegação ===== */
@media (max-width: 560px) {
  /* Força tamanho menor e padding compacto */
  .fancybox-container .fancybox-navigation .fancybox-button,
  .fancybox-button--arrow-left,
  .fancybox-button--arrow-right,
  .fancybox-button--arrow_left,
  .fancybox-button--arrow_right {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    background: rgba(0, 0, 0, 0.37) !important;
  }

  /* Afastar das bordas laterais no mobile */
  .fancybox-container .fancybox-navigation .fancybox-button--arrow-left,
  .fancybox-button--arrow-left,
  .fancybox-button--arrow_left { left: 12px !important; right: auto !important; }

  .fancybox-container .fancybox-navigation .fancybox-button--arrow-right,
  .fancybox-button--arrow-right,
  .fancybox-button--arrow_right { right: 12px !important; left: auto !important; }

  /* Ícone menor para caber melhor no botão reduzido */
  .fancybox-button--arrow-left i,
  .fancybox-button--arrow-right i,
  .fancybox-button--arrow_left i,
  .fancybox-button--arrow_right i {
    font-size: 14px !important;
    line-height: 32px !important;
  }
}
.fancybox-thumbs{
    position: fixed !important;             /* overlay fixo, não reflow */
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    top: auto !important;                   /* neutraliza sidebar (thumbs.css) */
    width: 100% !important;                 /* largura total (não 212px) */
    z-index: 100003;                        /* acima do stage */
    background: rgba(0, 0, 0, 0.281);            /* leve contraste sobre a imagem */
    justify-content: center;
    text-align: center;
    display: flex !important;               /* derrota display:none do thumbs.css */
    margin: 0 !important;                   /* evita deslocamento por margem */
    transform: translateY(100%);            /* começa oculta fora da tela */
    transition: transform .25s ease;        /* transição suave */
    will-change: transform;                 /* otimiza animação */
    pointer-events: none;                   /* não captura cliques quando oculta */
    max-height: 120px;                      /* limite de altura */
}
.fancybox-container.fancybox-show-thumbs [style*="bottom"] { bottom: 0 !important; }
.fancybox-container.fancybox-show-thumbs [style*="padding-bottom"] { padding-bottom: 0 !important; }
.fancybox-container.fancybox-show-thumbs [style*="margin-bottom"] { margin-bottom: 0 !important; }
.fancybox-show-thumbs .fancybox-thumbs{ transform: translateY(0); pointer-events: auto; }
/* Layout horizontal estável (evita "piscar" entre grid/list) */
.fancybox-thumbs__list{
    display: flex !important;               /* força horizontal sempre */
    gap: 8px;
    overflow-x: auto; overflow-y: hidden;
    white-space: nowrap;
    position: static !important;            /* neutraliza absolute do thumbs.css */
    height: auto !important;
}
.fancybox-thumbs-x .fancybox-thumbs__list,
.fancybox-thumbs-y .fancybox-thumbs__list{ display: flex !important; }
.fancybox-thumbs__list a{
    float: none !important;                 /* neutraliza float do thumbs.css */
    display: inline-block !important;
    width: 92px; height: 64px;              /* miniaturas padrão */
    margin: 0 !important;
}
.fancybox-content { top: 0 !important; }
.fancybox-container{ height: 100vh !important; overflow: hidden !important; }
body.fancybox-active { overflow: hidden !important; }
/* Não force altura/topo do inner; apenas garanta que não há empurrão por bottom no stage/caption */
.fancybox-show-thumbs .fancybox-stage{ bottom: 0 !important; }
.fancybox-show-thumbs .fancybox-stage{ transform: none !important; }
.fancybox-show-thumbs .fancybox-caption{ bottom: 0 !important; }
/* Remoção dos outlines de debug */
/* Não reservar espaçamento no conteúdo da imagem quando thumbs estão visíveis */
.fancybox-show-thumbs .fancybox-slide { padding-bottom: 0 !important; }
.fancybox-show-thumbs .fancybox-slide--image { padding-bottom: 0 !important; }
.fancybox-show-thumbs .fancybox-slide > * { margin-bottom: 0 !important; }
.fancybox-show-thumbs img.fancybox-image { margin: 0 !important; }
/* Não force altura no content quando thumbs estão visíveis (evita reflow)
   A lista é overlay por transform, então o content permanece padrão */
.fancybox-slide--image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.fancybox-slide--image .fancybox-image {
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}
.fancybox-slide{
    transition: all .3s ease !important;
}
.fancybox-caption{
    display: none;
}
.fancybox-thumbs__list a:before{
    border: 1px solid white;
}
body.property-page .my-header,
body.search-engine .my-header{
    position: sticky;
    top: 0;
    z-index: 9;
}

html.property-page,
body.property-page {
  overflow-x: hidden;
}

body.property-page .header-search,
body.search-engine .header-search{
  display: flex !important;
}
body.search-engine a.nav-link {
    text-decoration-color: black !important;
}

body.property-page .property-description {
  position: relative;
  z-index: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: max-height .35s ease, opacity .25s ease;
  will-change: max-height;
}

body.property-page .property-description .property-description-p{
  margin: 0 0 8px 0;
}

body.property-page .property-description .property-description-p:last-child{
  margin-bottom: 0;
}
body.property-page .property-description.is-collapsed {
  max-height: 96px;
  overflow: hidden;
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
body.property-page .property-description.is-expanded {
  max-height: 1200px;
  overflow: hidden;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}
body.property-page .property-description-toggle {
  margin-top: 12px;
  display: flex;
  padding: 8px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: #f2f2f2;
  border: none;
  font-family: "Termina-Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.46px;
}

body.property-page .property-description.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.78) 55%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 576px) {
  body.property-page .property-description-toggle {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 16px;
    padding: 10px 22px;
  }
}

@media (max-width: 991.98px) {
  body.property-page .propertyPage-section-2 .property-description-toggle.btn {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 12px !important;
  }
}
body.property-page .user-card{
    position: sticky;
    top: 90px;
}

@media (min-width: 768px) {
  html, body, body.property-page {
    overflow-x: hidden;
  }
}
body.property-page h4 {
  color: black;
}
.propertyStep .row .col-md-8{
    max-height: calc(100vh - 25vh);
    overflow: auto;
}
.propertyStep .row .col-md-4{
    max-height: calc(100vh - 20vh);
    overflow: auto;
}

.propertyImagesCol {
  height: 100%;
}
.propertyPage-section-1 .container-fluid {
  overflow-x: hidden;
}
body.property-page .propertyPage-section-1 > .container-fluid > .row {
  --bs-gutter-x: 0rem;
  margin-left: 0;
  margin-right: 0;
}
.propertyImagesLeftCol img{
  min-height: 91%;
  height: 430px !important;
  object-fit: cover ;
}
.propertyImagesRightCol img {
  min-height: 100%;
  height: 215px !important;
  object-fit: cover ;
}

.propertyFormPage{
overflow: hidden;
}

body.propertyFormPage ::-webkit-scrollbar,
body.propertyFormPage::-webkit-scrollbar{
  display: none;
}

.propertyPage-section-2 .btn-2 {
  background-color: black;

}

.propertyPage-section-2 .first-row .icon-box-heading {
  color: #1c8247;
}

.share-icons i {
  font-size: 22px;
}

.share-icons .bi-heart-fill {
  color: #DD4425 !important;
}

.fa-solid-1 {
  color: #eeecec !important;
}

.fa-solid {
  color: #dd0d0d !important;
}


.share-icons a {
  cursor: pointer;
}

.facilties ul {
  list-style: none;
  padding: 0;
  gap: 10px 70px;
  flex-wrap: wrap;
}

.facilties li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 152px;
}

.facilties i {
  color: #1c8247;
  font-size: 24px;
  font-weight: bold;
}

.propertyPage-section-2 .accordion-item button {
  font-family: "Termina-Demi";
  color: black;
  font-size: 20px;
  padding: 30px 5px 30px 5px !important;
  border-radius: 0px !important;
}

.propertyPage-section-2 .accordion-item .accordion-body {
  padding-left: 2px;
}

.propertyPage-section-2 .accordion-item li {
  margin-bottom: 8px;
}

.propertyPage-section-2 .accordion-item:hover button {
  background-color: #f2f2f2 !important;
}

.propertyPage-section-2 .accordion-body {
  padding-top: 15px !important;
}

.propertyPage-section-2 li {
  font-family: "Montserrat Regular";
  font-size: 14px;
  color: #333333;
}

.propertyPage-section-2 .breadcrumbs {
  gap: 10px;
  align-items: center;
}

.propertyPage-section-2 .breadcrumbs a {
  color: #069257;
  font-size: 14px;
  font-family: "Montserrat Medium";
  text-decoration: none;
}

.propertyPage-section-2 .breadcrumbs i::before {
  font-weight: bold !important;
}

.feature-images {
  justify-content: space-between;
}

.feature-images p {
  font-size: 10px;
  font-family: "Termina-Medium";
}

.feature-images img {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
}

.not-available {
  filter: brightness(0) saturate(100%) invert(86%) sepia(8%) saturate(9%) hue-rotate(354deg) brightness(101%) contrast(81%);
}

.price {
  font-size: 28px;
  font-family: "Termina-Demi";
  color: black;
  line-height: 116%;
}

.user-card {
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: -75px;
  background-color: white;
}

.user-card p {
  color: #666666;
  font-family: "Montserrat Medium";
}

.user-image-box img {
  border-radius: 100px;
}

.user-image-box p {
  font-family: "Termina-Regular";
  font-size: 10px;
}

.user-details {
  font-family: "Montserrat Medium";
  font-size: 14px;
  color: #666666;
}

.related-properties {
  margin-top: 70px;
}

.propertyPage-section-3 .btn-2 {
  background-color: black;
  width: fit-content;
  margin: 0 auto;
}


/* STEP FORM */
.stepFormPage .btn-1,
.stepFormPage .btn-2{
    min-height: 45px;
    padding: 8px 15px;
}
.stepFormPage .step-buttons button{
    gap: 5px;
}
#concludeButton {
  display: none;
}

body.stepFormPage header {
  background-color: black;
}

body.stepFormPage #navbarSupportedContent>ul {
  display: none !important;
}

body.stepFormPage {
  position: relative;
}

body.propertyFormPage header {
  position: sticky;
  top: 0;
  z-index: 9;
}

body.propertyFormPage {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 63%, rgba(245, 245, 245, 1) 63%);
}

.stepForm-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.propertyFormPage .stepForm-section h6 {
  color: black;
  font-family: "Termina-Medium";
}

.stepForm-section .progress {
  height: 4px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 40px;
}

.stepForm-section .progress-bar {
  background-color: #069257;
}

.current-page {
  font-size: 14px;
  color: black;
  font-family: "Montserrat Regular";
}

.propertyFormPage .progress-btn-wrap {
  position: fixed;
  bottom: 0px;
  padding: 20px 0 20px 0;
  margin: 0 auto;
  width: 720px;
  right: 480px;
  left: 0;
  background-color: white;
  z-index: 99;
}

.stepForm-section .progress-percent {
  position: relative;
  display: flex;
  text-align: right;
  justify-content: end;
  font-family: "Roboto";
  font-size: 14px;
  color: rgba(0, 0, 0, .60);
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-buttons .btn {
  min-width: unset;
  border-radius: 4px !important;
  font-size: 13px;
}

.step-buttons .btn i {
  font-size: 16px;
  ;
}

.step-buttons .btn i:before {
  font-weight: bold !important;
}


.right-card {
  background-color: white;
  box-shadow: 0px 1.5px 0px 1px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 1.5px 0px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 1.5px 0px 1px rgba(0, 0, 0, 0.14);
}

.formPadding {
  padding: 0 100px 40px 60px;
}

.addInputWrapper input,
#carNumbersList p {
  font-family: "Montserrat Regular";
  font-size: 14px;
  color: black;
  text-transform: capitalize;
}

.addInputWrapper input {
  width: 100%;
  border-radius: 4px !important;
  border: 1px solid #ACACAC !important;
  padding: 10px;
  outline: none !important;
}

#carNumbersList {
  text-align: right;
  display: flex;
  flex-direction: column-reverse;
  align-items: end;
}

#carNumbersList a {
  min-width: fit-content;
}

.addInputWrapper {
  text-align: end;
}

.step-1 .btn-1,
.step-3 .btn-1 {
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: end;
  padding-right: 0;
  gap: 10px;
  min-width: fit-content;
  width: fit-content;
}

.step-1 .btn-1:active,
.step-3 .btn-1:active {
  outline: none !important;
  border-color: transparent !important;
}

#carNumbersList p {
  display: flex;
  justify-content: space-between;
  width: 100% !important;
}

.paraDeleteIcon {
  cursor: pointer;
  color: #666666;
  font-size: 20px;
}

.right-card {
  padding: 35px 25px 50px 25px;
}

.right-card p {
  color: black !important;
  font-size: 12px !important;
  line-height: 17px !important;
}

.right-card a {
  color: black !important;
  text-decoration: none;
  font-family: "Montserrat Regular";
  font-size: 12px !important;
  line-height: 17px !important;
}

.right-card .rightCardsHeading {
  font-size: 14px !important;
  color: black !important;
  font-family: "Termina-Medium" !important;
  line-height: 175% !important;
}

.step-2 h6,
.step-3 h6,
.step-4 h6,
.step-5 h6,
.step-6 h6 {
  font-family: "Termina-Demi" !important;
}

.formCheckdiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.formCheckdiv .form-check-input {
  border: 1px solid #ACACAC;
  padding: 10px;
  cursor: pointer;
  border-radius: 3px;
}
body.search-engine .form-check-input {
  border: 1px solid #ACACAC;
  cursor: pointer;
  border-radius: 3px;
}

.formCheckdiv .form-check-input:checked,
body.search-engine .form-check-input:checked{
  background-color: black;
  border-color: black;
}

.formCheckdiv .form-check-input:focus,
body.search-engine .form-check-input:focus{
  box-shadow: none;
}

.formCheckdiv p {
  color: black;
  margin-bottom: 0;
}

.formCheckdiv .countIconColor::before {
  color: #ACACAC !important;
}

.countColorWrap i::before {
  color: black;
}

.countColor::before {
  color: #ACACAC;
}

.zero-count.zeroCountColor {
  color: black;
}

.zero-count {
  color: #ACACAC;
}
.count {
    width: 48px;
    outline: none;
    border: none;
    text-align: center;
}
.count::placeholder{
    color: #ACACAC;
}
input.count[type=number]::-webkit-inner-spin-button, 
input.count[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.formCheckdiv .plusMinusBtnWrap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.plusButton i::before {
  color: #121212;
}

/* Step 3 */
.step .accordion-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.step .accordion-item {
  width: 100%;
  margin-top: 10px;
}

.accordion-body .formCheckdiv {
  margin-top: 20px;
}

.accorInsideHeading {
  margin-top: 30px;
  color: black;
  font-family: "Termina-Medium" !important;
  font-size: 16px !important;
}

.hasFormAccordion {
  gap: 20px;
  margin-top: 10px !important;
}

.hasFormAccordion select {
  border-radius: 0px !important;
  border-color: #868686;
  padding: 12px 10px;
}

.formCheckdiv a {
  min-width: unset;
  float: right;
}

.form-select,
.form-select option {
  cursor: pointer;
}

.form-select:focus {
  border-color: black;
}

.form-select {
  font-size: 14px;
  color: black;
  font-family: "Montserrat Regular";
}

.form-select option {
  font-size: 14px;
  color: black;
  font-family: "Termina-Medium";
}

#formCollapseSeven .hasFormAccordion .plusMinusBtnWrap button {
  border-radius: 100px !important;
}

.globalValueStyle {
  margin-top: 100px;
}

.globalValueStyle p {
  font-size: 14px;
  color: black;
  font-family: "Montserrat Regular";
}

.globalValueStyle>div {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  margin-bottom: 20px;
}

.globalValueStyle span {
  position: absolute;
  right: 0;
}

/* Step 4 */

.step-4 .addInputWrapper p {
  text-align: left;
}



/* Step 5 */
.comissionDiv {
  border: 1px solid #ACACAC;
}

.comissionDiv p {
  color: black;
  font-family: "Termina-Medium";
  font-size: 12px;
}

.comissionDiv .row>div:first-child p {
  text-align: left;
}

.comissionDiv .row>div:last-child p {
  text-align: right;
}


/* Step 6 */

.step-6 .btn {
  min-width: unset;
  border-radius: 8px;
}

.photo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-container img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.photo-container .menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  padding: 0;
  top: 45px;
  right: 10px;
  border-radius: 8px;
  min-width: 150px;
  padding: 6px;
}


.photo-container .menu li {
  cursor: pointer;
  padding: 5px;
  font-size: 12px;
  font-family: "Montserrat Regular";
  color: #121212;
}

.photo-container .menu li:hover {
  background-color: #F6F6F6;
}

.photo-container .image-container {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
}

.photo-container .menu-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  padding: 12px 5px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  line-height: 0;
  font-weight: bold;
  border: 1px solid transparent;

}

.coverImage {
  height: 300px;
  object-fit: cover;
}

.photo-container .menu-icon:hover {
  border: 1px solid black;
}


/* Verification Popup */
.popupVerificationSection {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100svh;
  position: absolute;
  width: 100vw;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 999;
}

.popupVerificationSection>.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  overflow: hidden;
  padding: 0;
}

.popupVerificationSection>.container>.row:first-child {
  background-color: white;
  padding-top: 25px;


}

.popupVerificationSection h4 {
  color: black !important;
}

.popupVerificationSection p {
  color: #666666;
}

.verificationButtonBox {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background-color: white;
  padding: 30px;
  width: 420px;
}

.verificationButtonBox .btn {
  min-width: 150px;
  padding: 0 20px;
  gap: 10px;
}




/* Vendor PANEL CSS */

body.propertyFormPage .formHeader,
 body.vendorPanelPage .formHeader{

z-index:99 !important;
}

body.propertyFormPage .globalValueStyle,
 body.vendorPanelPage .globalValueStyle{

margin-top :70px !important
}

 body.propertyFormPage .custom-select,
body.vendorPanelPage .custom-select
{

margin-bottom :25px !important
}

body.propertyFormPage .checkCountWrap > div:last-of-type {
    padding-bottom: 100px !important;
}

.formCheckdiv  .plusMinusBtnWrap button {
  border: 1px solid #ACACAC;
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  border-radius: 3px;
}
body.vendorPanelPage .step-3 .accordion-item,
body.propertyFormPage .step-3 .accordion-item{
margin:0px ;
}

body.vendorPanelPage .step-3 .accordion-button,
body.propertyFormPage .step-3 .accordion-button

{
padding-top :24px !important;
padding-bottom:24px !important;

}
body.propertyFormPage .step-3 .accordion-button:nth(1){
padding-top:0px !important;

}

body.vendorPanelPage .step-3 .accordion-button, body.vendorPanelPage .step-3 .accordion-body, 
body.propertyFormPage .step-3 .accordion-button, body.propertyFormPage .step-3 .accordion-body 
{

padding-left:0px !important;

padding-right:0px !important;

}
 body.vendorPanelPage .step-3 .accordion-body,
  .propertyFormPage .step-3 .accordion-body
 {

padding-top:0px !important;
padding-bottom:40px !important;

}
body.vendorPanelPage .step-3 hr,
body.propertyFormPage .step-3 hr {

margin:1px 0rem !important;

}

body.vendorPanelPage .step-3 .accordion-button:focus,
body.propertyFormPage .step-3 .accordion-button:focus
{

border-color:transparent !important;
box-shadow:none !important;
}

body.vendorPanelPage .step-3 .formCheckdiv,
 body.propertyFormPage .step-3 .formCheckdiv{

    margin-bottom: 0px !important;
}

body.vendorPanelPage .step-3 .accordion-item,
body.propertyFormPage .step-3 .accordion-item
{
border:0px !important;
}

body.vendorPanelPage .step-3 .accordion-button:not(.collapsed),
body.propertyFormPage .step-3 .accordion-button:not(.collapsed)
{

background:transparent !important;
box-shadow:none !important;
}


body.vendorPanelPage .favourite-card > div{
    margin: 0;
}
.vendorPanelPage .stepForm-section{
    margin-top: 0;
}
body.vendorPanelPage header {
  background: white !important;
  border-bottom: 1px solid #DBDBDB;
}

body.vendorPanelPage .navbar-brand img {
  filter: invert(1);
}

body.vendorPanelPage #navbarSupportedContent>ul {
  display: flex !important;
}

body.vendorPanelPage .my-nav a {
  color: #333333;
}

body.vendorPanelPage .my-nav a:hover {
  text-decoration-color: #333333;
}

.vendorPanelPage .stepForm {
  width: 800px;
  margin: 0 auto;
  box-shadow: 0px 2px 7px 2px rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: hidden;
  background-color: white;

}

.vendorPanelPage .formPadding {
  padding: 45px 50px 30px 50px !important;
}

.vendorPanelPage .formPaddingVendorButton {
  padding: 5px 50px 20px 50px !important;
}


.vendorPanelPage .stepForm-section {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.vendorMenuSection .criarbtn {
  font-family: "Termina-Demi" !important;
}

.vendorMenuSection form {
  border: 1px solid #DBDBDB;
  display: flex;
  align-items: center;
  padding: 0 17px;
}

.vendorMenuSection form input {
  border: 0;
  outline: none;
  width: 100%
}
.meusCardsMainSection{
    background-color: white;
}
.vendorMenuSection form input {
  padding: 15px;
  background-color: transparent; 
}

.vendorMenuSection form i {
  color: #333333 !important;
  font-size: 19px;
}


.float-border-bottom {
  border-bottom: 1px solid #E0E0E0;
  margin: 20px 0px;
}



.vendorMenuSection .meusCardTopBar a {
  text-transform: uppercase;
  justify-content: end;
}

.vendorMenuSection .favourite-card img {
  border: none;
  height: 260px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 360px){
.vendorMenuSection .favourite-card img {
  height: 230px;
}
}

.vendorMenuSection .favourite-card {
  overflow: hidden;
}

.vendorMenuSection .btn {
  border-radius: 0;
}

.vendorMenuSection .btn-bg--yellow {
  color: black !important;
}

.switch .slider.round {
  border-radius: 34px;
}

.btn-inactive {
  border: 1px solid #E0E0E0;
  color: #666666 !important;
}

.btn-inactive:hover {
  border: 1px solid #E0E0E0;
}

.btn-pending {
  background-color: #FCC40F !important;
  color: black !important;
}


.vendorMenuSection .favourite-card ul {
  list-style: none;
  background-color: white;
  padding: 0;
  margin: 0;
}

.vendorMenuSection ul li a {
  padding: 18.5px 15px;
  text-decoration: none;
  font-size: 12px;
  color: #121212;
  font-family: "Termina-Medium" !important;
  position: relative;
}

.vendorMenuSection ul li {
  border-bottom: 1px solid #E0E0E0;
  cursor: pointer;
}

.vendorMenuSection ul i {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;

}

.vendorMenuSection li a {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.vendorMenuSection ul i::before {
  color: black;
  font-weight: bold !important;

}

.cardVoltarSecondaryDiv {
  /*display: none;*/
  display: block;
}

.cardVoltarSecondaryDiv {
  border: 1px solid #E0E0E0;
  border-top: 0px;
}

.cardVoltarSecondaryDiv>div {
  padding: 20px 0px 13px 0px;
}



.switch .slider.round:before {
  border-radius: 50%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 14px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9e9e9e;
  -webkit-transition: .3s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: -3px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .4s;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

}

.switch input:checked+.slider {
  background-color: #e79292;

}

.switch input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;

}

.switch input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  background-color: #d32f2f;
}

.vendorPanelPage .stepForm h6{
  color: white;
  font-family: "Termina-Medium" !important;
}

.formHeader h6 {
  color: white;
}

.formHeader {
  padding: 18px 35px;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 0;

}

.para-red {
  color: #CB1A19 !important;
}

#concludeButtonVendor {
  display: none;
}

.vendorStep {
  height: 540px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.vendorStep::-webkit-scrollbar {
  display: none;
}

.vendorPanelPage .step-buttons .btn {
  padding: 0 45px;
}

.mobile-carousel {


  display: none;
}

.mobile-propertyPage-section1 {

  display: none;
}

.mobile-searchengine {

  display: none;
}


/* search form */


form .search-result-item {
  padding: 10px 10px 5px 50px;
  
}

.search-head {
  color: #000;
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: "Montserrat Medium";
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
}

 .marker-icon {

  position: absolute;
  left: 15px;
  /*top: 105px;*/

}

.home form p {
  margin: 10px 0px;
}

 .search-text {
  margin: 10px;
  color: var(--primary-black, #121212);
  font-feature-settings: 'clig' off, 'liga' off;
    margin-left: 0;
  font-family: "Montserrat Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  text-decoration: none;
}

.bi-search::before {
  font-weight: 800 !important;
}
 .search-icon {
  position: absolute;
  left: 15px;
  top: 10px;
   
}
 .search-icon svg{
   width: 21px;
}

/* New CSS addition for including the header in login/sign-up pages */
body.registerform , body.loginform{
  height: 100vh;
  display: flex;
  flex-direction: column;
}
section.Login-Sec{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.Login-Sec .row{
  height: auto;
}
.vendorMenuSection .row.w-370 > .col-md-12{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.vendorMenuSection .criarbtn{
  width: auto !important;
  margin-bottom: 0 !important;
}
.vendorMenuSection .favourite-card{
  padding: 12px;
  background-color: unset;
}
.vendorMenuSection .favourite-card .card-content{
  background-color: white;
}
.cardVoltarSecondaryDiv>div{
  background-color: white;
}
a.mobile-menu-logo {
  filter: brightness(0);
  position: absolute;
  top: 22px;
  left: 16px;
}
body.search-engine .search-result-item.mobile a.search-text {
  margin: 0;
}
/* Desktop styles for mapbox property popup */
body.search-engine #map .mapboxgl-popup{
  width: 332px !important;    
}
body.search-engine #map .mapboxgl-popup-content{
  border-radius: 8px;
  padding: 8px !important;
  width: 100%;
}
body.search-engine #map .mapboxgl-popup-content .container{
  padding: 0 !important;
  width: 100% !important;
}
body.search-engine #map .mapboxgl-popup-content .container .row{
  width: 100% !important;
  margin: 0 !important;
}
body.search-engine #map .mapboxgl-popup-content img{
  border-radius: 5px;
  width: 122px !important;
  height: 84px !important;
  object-fit: cover;
}
body.search-engine #map .mapboxgl-popup-content h3{
  font-size: 14px !important;
  font-weight: 600 !important;
}
body.search-engine #map .mapboxgl-popup-content p{
  font-weight: 600 !important;
  font-size: 11px !important;
  margin: 0;
}
body.search-engine #map .mapboxgl-popup-content .col-6:nth-child(1){
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0;
  max-width: 122px !important;
}
/* body.search-engine #map .mapboxgl-popup-content{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
} */
body.search-engine #map .mapboxgl-popup-content .col-6:nth-child(2){
  flex-grow: 1;
  padding-left: 12px !important;
}
.propertyStep .accordion .btn.float-end{
  background-color: black;
  color: white;
  padding: 8px 12px;
}
.propertyStep .accordion .btn.float-end i{
  display: none;
}
.propertyStep .accordion .formCheckdiv.hasFormAccordion {
  align-items: baseline;
}
.propertyStep .accordion .btn.float-end{
  margin-top: -15px !important
}
.propertyStep .accordion .formCheckdiv.hasFormAccordion .count{
  width: 37px;
}
.property-page .proContactModalMain .modal-body{
  padding: 12px;
}
.favorites-box a{
  background-color: black;
}
.fa.vendorPanelPage .formCheckdiv .btn-2{
  margin-top: 10px;
}
.vendorPanelPage .hasFormAccordion > div:nth-child(1) select{
  width: 100%;
}
.vendorPanelPage .formCheckdiv .btn-2{
  margin-top: 10px;
}
.vendorPanelPage .hasFormAccordion .plusMinusBtnWrap{
  width: auto !important
}
.vendorPanelPage .hasFormAccordion > div:nth-child(1) select{
  width: 100%;
}
.vendorPanelPage .formCheckdiv .btn-2{
  margin-top: 10px;
}
.vendorPanelPage .formCheckdiv .btn-2{
  margin-top: 10px;
}

/* Cookie consent bar */
.cookie-consent{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #000;
  color: #fff;
  z-index: 9999;
  /* padding: 14px 16px; */
  min-height: 64px;       /* permite crescer quando o texto quebra */
  padding: 0 16px;   
  display: flex;          /* garante alinhamento vertical consistente */
  align-items: center;    /* centraliza verticalmente o conteúdo */
  text-align: left; /* reseta possivel herança de centralização */
  padding-left: 32px;
  padding-right: 32px;
}
.cookie-consent__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* ocupar toda a largura do banner */
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 32px;
}
.cookie-consent__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: left !important;
  font-family: "Montserrat Regular", sans-serif; /* peso normal */
  font-weight: 400; /* normal */
  flex: 1 1 auto;
  padding-right: 8px;
}
.cookie-consent p{ text-align: left !important; margin: 0 !important; }
/* Home page overrides: garante margem zerada mesmo com `.home p { margin: 25px 0 }` */
body#home .cookie-consent p { margin: 0 !important; }
.cookie-consent__link{
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-consent__btn{
  background: #fff;
  color: #000;
  border: none;
  border-radius: 2px;
  /* padding: 10px 16px; */
  font-family: "Termina-Medium", sans-serif;
  font-size: 12px;
  margin-left: auto; /* fixa o botão à direita mesmo se o texto centralizar */
  height: 32px;
  padding: 0 12px;       /* só padding horizontal */
  display: inline-flex;
  align-items: center;
}
.cookie-consent__text{ line-height: 1.4; }
@media (max-width: 576px){
  /* Caixa flutuante com cantos superiores arredondados e afastamentos de 16px */
  .cookie-consent{
    margin-top: 0px;
    height: auto;                 /* deixa crescer conforme o conteúdo */
    padding: 16px 8px calc(8px + env(safe-area-inset-bottom)); /* adiciona padding-top e respeita safe-area */
    border-radius: 8px 8px 0 0;   /* apenas cantos superiores */
    padding-bottom: 16px;
  }
  .cookie-consent__text{
    font-size: 12px;
  }
  .cookie-consent__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;                    /* espaçamento entre texto e botão */
    min-height: unset;            /* não força altura mínima no mobile */
    padding: 0px;
  }
  .cookie-consent__btn{
    align-self: flex-end;         /* alinha botão à direita na coluna */    
  }
}
