:root {
  /* COLORS */
  --white: #FFF;

  /* Variaçoes do Azul */
  --blue-900: #09194E;
  --blue-800: #203372;
  --blue-700: #23397E;
  --blue-600: #3d558d;
  --blue-550: #2A3863;
  --blue-500: #4C6AB0;
  --blue-400: #7088c0;
  --blue-300: #96B5EE;
  --blue-100: #E0E8F7;
  --blue-050: #7C98CF;
  --blue-hover-menu: #B4C0D8;

  /* Variações do cinza */

  --gray-1000: #282828;
  --gray-900: #394b57;
  --gray-800: #5B5B5B;
  --gray-600: #686868;
  --gray-500: #cdcdcd;
  --gray-400: #CDCDCD;
  --gray-300: #E6E6E6;
  --gray-200: #F2F2F2;

  /* Variaçoes do vermelho */
  
  --red-500: #DD5B66;
  --red-600: #DC4955;

  /* WEIGHT */
  --bold-700: 700;
  --bold-default: 600;
  --bold-500: 500;
  --bold-400: 400;

}

h1{
  font-size: 48px !important;
}

h2{
  font-size: 40px !important;
}

h3{
  font-size: 24px !important;
}

h4{
  font-size: 20px !important;
}

h5{
  font-size: 18px !important;
}

h6{
  font-size: 14px !important;
}

@media only screen and (max-width: 600px) {
  h1{
    font-size: 35px !important;
  }
  
  h2{
    font-size: 30px !important;
  }
  
  h3{
    font-size: 25px !important;
  }
  
  h4{
    font-size: 20px !important;
  }
  
  h5{
    font-size: 18px !important;
  }
  
  h6{
    font-size: 14px !important;
  }
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.2 !important;
}

.border-blue-900 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-900) !important;
}
.border-blue-800 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-800) !important;
}
.border-blue-700 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-700) !important;
}
.border-blue-600 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-600) !important;
}
.border-blue-550 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-550) !important;
}
.border-blue-500 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-500) !important;
}
.border-blue-400 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-400) !important;
}
.border-blue-300 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-300) !important;
}
.border-blue-100 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-100) !important;
}
.border-blue-050 {
   border: var(--bs-border-width) var(--bs-border-style) var(--blue-050) !important;
}

.border-gray-1000 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-1000) !important;
}
.border-gray-900 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-900) !important;
}
.border-gray-800 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-800) !important;
}
.border-gray-600 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-600) !important;
}
.border-gray-500 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-500) !important;
}
.border-gray-400 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-400) !important;
}
.border-gray-300 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-300) !important;
}
.border-gray-200 {
   border: var(--bs-border-width) var(--bs-border-style) var(--gray-200) !important;
}

.border-red-500 {
  border: var(--bs-border-width) var(--bs-border-style) var(--red-500) !important;
}
.border-red-600 {
  border: var(--bs-border-width) var(--bs-border-style) var(--red-600) !important;
}

.bg-blue-900 {
  background-color:var(--blue-900) !important;
}
.bg-blue-800 {
  background-color:var(--blue-800) !important;
}
.bg-blue-700 {
  background-color:var(--blue-700) !important;
}
.bg-blue-600 {
  background-color:var(--blue-600) !important;
}
.bg-blue-550 {
  background-color:var(--blue-550) !important;
}
.bg-blue-500 {
  background-color:var(--blue-500) !important;
}
.bg-blue-400 {
  background-color:var(--blue-400) !important;
}
.bg-blue-300 {
  background-color:var(--blue-300) !important;
}
.bg-blue-100 {
  background-color:var(--blue-100) !important;
}
.bg-blue-050 {
  background-color:var(--blue-050) !important;
}

.bg-gray-1000 {
  background-color:var(--gray-1000) !important;
}
.bg-gray-900 {
  background-color:var(--gray-900) !important;
}
.bg-gray-800 {
  background-color:var(--gray-800) !important;
}
.bg-gray-600 {
  background-color:var(--gray-600) !important;
}
.bg-gray-500 {
  background-color:var(--gray-500) !important;
}
.bg-gray-400 {
  background-color:var(--gray-400) !important;
}
.bg-gray-300 {
  background-color:var(--gray-300) !important;
}
.bg-gray-200 {
  background-color:var(--gray-200) !important;
}

.bg-red-500 {
 background-color:var(--red-500) !important;
}
.bg-red-600 {
 background-color:var(--red-600) !important;
}

.color-blue-900 {
  color: var(--blue-900) !important;
}
.color-blue-800 {
  color: var(--blue-800) !important;
}
.color-blue-700 {
  color: var(--blue-700) !important;
}
.color-blue-600 {
  color: var(--blue-600) !important;
}
.color-blue-550 {
  color: var(--blue-550) !important;
}
.color-blue-500 {
  color: var(--blue-500) !important;
}
.color-blue-400 {
  color: var(--blue-400) !important;
}
.color-blue-300 {
  color: var(--blue-300) !important;
}
.color-blue-100 {
  color: var(--blue-100) !important;
}
.color-blue-050 {
  color: var(--blue-050) !important;
}

.color-gray-1000 {
  color: var(--gray-1000) !important;
}
.color-gray-900 {
  color: var(--gray-900) !important;
}
.color-gray-800 {
  color: var(--gray-800) !important;
}
.color-gray-600 {
  color: var(--gray-600) !important;
}
.color-gray-500 {
  color: var(--gray-500) !important;
}
.color-gray-400 {
  color: var(--gray-400) !important;
}
.color-gray-300 {
  color: var(--gray-300) !important;
}
.color-gray-200 {
  color: var(--gray-200) !important;
}

.color-red-500 {
  color: var(--red-500) !important;
}
.color-red-600 {
  color: var(--red-600) !important;
}

.title-card-2 {
  font-size: 1rem;
  font-weight: var(--bold-700);
  line-height: normal;
  font-style: normal;
}

.accordion-plus {
  .accordion-button {
    &::after {
      background-image: url("../images/icons/plus.svg");
    }
  }
}


.border-left-gray {
  border-left: 1px solid var(--gray-500);
}

.border-right-gray {
  border-right: 1px solid var(--gray-500);
}

.color-white {
  color: var(--white) !important;
}

.color-white-bold {
  color: var(--white) !important;
  font-weight: var(--bold-700) !important;
}

.color-gray {
  color: var(--gray-800) !important;
}

.color-gray-1000 {
  color: var(--gray-1000) !important;
}

.color-blue-500 {
  color: var(--blue-500) !important;
}

.font-size-12-weight-400 {
  font-size: 12px;
  font-weight: var(--bold-400);
}

.font-size-16-weight-400 {
  font-size: 16px;
  font-weight: var(--bold-400);
}

.title {
  font-weight: var(--bold-700);
  color: var(--white);
}

.title-size4 {
  /* font-size: 4rem !important; */
  font-size: 48px;
}

.button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 25px;
  text-decoration: none;
}

.button-blue {
  background-color: var(--blue-500) !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.button-dark-blue {
  background-color: var(--blue-900);
  color: var(--white);
}

.button-tranparent {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.font-btn-banner {
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--bold-500);
  line-height: normal;
  text-transform: uppercase;
}

.button-tranparent-gray {
  background-color: transparent;
  border: 1px solid var(--gray-800);
  color: var(--gray-600);
}

#chamada-banner {
  padding-bottom: 50px;
  padding-top: 50px;

  @media only screen and (max-width: 767px) {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.chamada-banner {
  min-height: 400px;
  padding-bottom: 50px !important;
  padding-left: 76px !important;
  padding-right: 76px !important;
  padding-top: 50px !important;
  background-size: cover;
  background-repeat: no-repeat;

  @media only screen and (max-width: 767px) {
    height: 500px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 74px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    padding-top: 74px !important;
  }

  .p-title-banner {
    margin-bottom: 30px;

    @media only screen and (max-width: 767px) {
      font-size: 30px;
    }
  }

  .p-default {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 30px;

    @media only screen and (max-width: 767px) {
      font-size: 18px;
    }
  }

  .container-chamada-banner {
    justify-content: space-between !important;

    @media only screen and (max-width: 767px) {
      justify-content: end !important;
    }
  }
}

#produto-home-destaque {
  margin-top: 50px;
  margin-bottom: 50px;

  @media only screen and (max-width: 767px) {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.b-radius-chamada-banner {
  border-radius: 20px;
}

.box-shadow-bottom {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


.letter-spacing {
  letter-spacing: 8px;
}

.p-default {
  font-size: 19px;
  font-weight: var(--bold-500);
  line-height: 22px;
}

.p-title-banner {
  font-size: 40px;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 44px; /* 110% */
}

.p-default-2 {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 17px;
}

.p-default-bold {
  font-size: 20px;
  font-weight: var(--bold-default);
  line-height: 21px;
}

.p-default-bold-2 {
  color: var(--gray-600);
  font-size: 20px;
  font-weight: var(--bold-default);
  line-height: 22px;
  margin-top: 22px;
}

.p-default-3 {
  font-size: 24px;
  font-weight: var(--bold-500);
  line-height: 28px;
}

.p-default-3-bold {
  font-size: 24px;
  font-weight: var(--bold-default);
  line-height: 29px;
}

.p-default-bold-4 {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 17px;
  font-weight: var(--bold-default);
}

.border-radius-light {
  border: 1px solid var(--gray-500);
  border-radius: 5px;
  --bs-accordion-bg: unset !important;
}

.p-default-bold-3 {
  font-size: 1.63rem;
  font-weight: var(--bold-700);
  line-height: 2rem;
}

.li-default {
  font-size: 1.38rem;
  font-weight: var(--bold-400);
  list-style: none;

  .icon-check {
    min-width: 32px;
  }
}

.li-weight-light {
  font-weight: var(--bold-400);
}

.h2-default {
  color: var(--gray-1000);
  font-weight: var(--bold-700);
  font-size: 40px;
  line-height: 44px;
}

.font-weight-bold {
  font-weight: var(--bold-default) !important;
  font-style: normal;
}

.p-text-imovel {
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: normal;
  color: var(--gray-800);
}

.p-select-mes-imovel {
  color: var(--gray-1000);
  font-size: 16px;
  font-weight: var(--bold-400);
  font-weight: 400;
  line-height: 150%;
}

.h2-title-imovel {
  font-style: normal;
  font-weight: var(--bold-default);
  font-size: 40px;
  line-height: 44px;
  color: var(--gray-1000);
}

.h2-default-2 {
  font-weight: var(--bold-default);
  font-size: 40px;
  line-height: 49px;
}

.pt-30 {
  padding-top: 30px !important;
}

.h2-default-f-20 {
  font-weight: var(--bold-default);
  color: var(--gray-1000);
  font-size: 20px;
  line-height: 26px;
}

.p-redirect-parceiro {
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: normal;
}

.p-default-f-20 {
  font-weight: var(--bold-default);
  color: var(--gray-600);
  font-size: 20px;
  line-height: 26px;
}

.h2-default-f-40 {
  font-weight: var(--bold-default);
  font-size: 40px;
  line-height: 44px;
}

.h3-default {
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
}

.h3-default-f-16{
  font-size: 16px;
  line-height: 19px;
}


.h2-card-f-24 {
  font-weight: var(--bold-default);
  color: var(--gray-1000);
  font-size: 24px;
  line-height: 28px;
}

.email-px-cultura {
  color: var(--blue-500);
}

.p-cultural {
  font-size: 24px !important;
  line-height: 28px !important;
}

.p-title-cultural-galeria {
  font-size: 1.5rem !important;
  line-height: 26px !important;
}

.p-body-cultural-galeria {
  font-size: 1rem !important;
  line-height: 1.625rem !important;
  color: var(--gray-1000);
  font-weight: var(--bold-400);
}

.card-poupex-cultural {
  flex: 0 0 auto;

  .play {
    width: revert-layer !important;
  }
}

.title-card-cultural {
  color: var(--gray-1000) !important;;
  font-weight: var(--bold-default) !important;;
}

.b-right {
  border-right: 1px solid #C8C8C8;
}

.line-title {
  line-height: 5px !important;
}

.line-title-br {
  line-height: 35px;
}

.figure-0 {
  margin: 0 !important;
}

.card {
  height: 100%;
}

.title-card {
  font-size: 1.25rem;
  font-weight: var(--bold-700);
  color: var(--blue-700);
}

.p-card {
  color: var(--gray-1000);
  font-size: 1rem;
  line-height: 1.25rem;
}

.title-home-empreendimento-destaque {
  color: var(--gray-1000);
  font-size: 2.5rem !important;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 2.75rem !important; /* 110% */

  @media only screen and (max-width: 767px) {
    padding-top: 59px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}

.description-home-empreendimento-destaque {
  color: var(--gray-600);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 1.625rem;
  padding-bottom: 40px;
}

.img-andamento-obra {
  border-radius: 20px !important;
  height: 100%;
}

.background-image-center {
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.background-image-center2 {
  background-size: cover !important;
  background-position: center !important;
}

.background-image-center-card {
  background-size: 100% 50% !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

.image-slug {
  /* width: 50%;
  height: 50%; */
  max-width: 100px;
  max-height: 100px;
  background-color: var(--blue-800);
  border-radius: 15px;
}

.h4-default {
  font-size: 2rem;
  font-weight: var(--bold-default);
}

.btn-header {
  align-items: center;
  display: flex;
  height: 39px;
  line-height: 16px;
  min-width: 175px;
}

.btn-header-seja {
  /* background-color: var(--gray-900); */
  background-color: rgb(255 255 255 / 20%);
  -webkit-transition: background 0.5s;
  -moz-transition:    background 0.5s;
  -ms-transition:     background 0.5s;
  -o-transition:      background 0.5s;
  transition:         background 0.5s;
}

.btn-header-seja:hover {
  background-color: rgb(255 255 255 / 10%);
}

.navbar .btn-header:hover {
  background-color: rgb(255 255 255 / 20%);
}

.btn-default {
  align-items: center;
  border: 1.2px solid var(--white) !important;
  display: flex !important;
  justify-content: center;

  @media only screen and (max-width: 767px) {
    width: 100%;
  }
}

.btn-full-width {
  border: 1.2px solid var(--white) !important;
  max-width: 100%;
  width: 100%;
}

.background-transparent {
  background-color: transparent !important;
}

.background-gray-300 {
  background-color: var(--gray-300) !important;
}

.background-gray {
  background-color: var(--gray-200) !important;
  padding: 50px 0px;
}

.background-gray-p-0 {
  background-color: var(--gray-200) !important;
}

.background-blue-600 {
  background-color: var(--blue-600) !important;
}

.btn-red-imoveis {
    background-color: var(--red-600) !important;
    border: 1px var(--red-600) solid;
    border-radius: 8px;
    color: #FFFFFF !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: var(--bold-default);
    line-height: 1.25rem;
    padding: 15px 35px;
}

.btn-red-imoveis:hover {
  background-color: var(--red-500) !important;
  border: 1px var(--red-500) solid;
  border-radius: 8px;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 1.25rem;
  padding: 15px 35px;
}

.btn-light-card {
  border: 1.2px solid var(--gray-800) !important;
  background-color: var(--white) !important;
}

.btn-light-card:hover {
  border: 1.2px solid var(--blue-500) !important;
  background-color: var(--blue-500) !important;
  color: var(--white) !important;
}

.btn-light-card-send {
  border: 1.2px solid var(--blue-500) !important;
  background-color: var(--blue-500) !important;
  color: var(--white) !important;
}

.btn-light-card-cultural {
  border: 1px solid var(--gray-400) !important;
  background-color: var(--white) !important;
}

.icon-video-card-cultural {
  mix-blend-mode: lighten;
}

.icon-card-cultural {
  filter: gray;
  filter: grayscale(1);
}

.dados-card-cultural {
  font-size: 0.875rem;
  color: var(--gray-1000);
}

.p-poupex-cultural-comunicado {
  font-size: 1.25rem;
  line-height: 1.90rem;
  color: var(--gray-600);
}

.content-image {
  max-width: 400px;
  min-height: 380px;
}

.image-pdf {
  width: 64px;
  height: 64px;
}

.content-small {
  width: 400px;
  max-width: 100%;
}

.product-container {
  min-height: 451px;
}

.msg-contato {
  color: var(--gray-600);
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 26px;
}

.title-grafic {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: var(--bold-400);
  line-height: normal;
  width: 150px;
  margin: 0 auto;
}

.btn-product {
  width: 100%;
}

.btn-blue-500-peq {
  background-color: var(--blue-500);
  color: var(--white);
  transition: 200ms;
  border: 2px var(--blue-500) solid;
  height: 40px !important;
  padding: 10px 35px !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.btn-blue-500 {
  background-color: var(--blue-500);
  color: var(--white);
  transition: 200ms;
  border: 2px var(--blue-500) solid;
}

.btn-blue-500:hover {
  background-color: var(--white) !important;
  color: var(--gray-600) !important;
  border: 2px var(--gray-800) solid !important;
}

.btn-blue-500:disabled {
    background: var(--gray-300) !important;
    border-color: var(--gray-300) !important;
    color: var(--gray-500) !important;
}

.btn-gray-800 {
  color: var(--gray-800);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--bold-500);
  line-height: normal;
  background: rgba(255, 255, 255, 0.80);
  border: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(5px);
  transition: 200ms;
  border-radius: 25px !important;
  padding: 7px 20px 7px 7px;
}

.btn-red {
  background-color: var(--red-500);
  color: var(--gray-200);
  transition: 200ms;
  border: 2px var(--red-500) solid;
}

.blue-href {
  color: var(--blue-500);
  font-size: 1rem;
  line-height: 1.3rem;
  text-decoration: none;
}

.arrow-blue {
  background-image: url("../images/icons/arrow.svg");
  background-repeat: no-repeat;
  display: inline-block;
  height: 12.5px;
  width: 9.5px;
}

.number-ul {
  background-color: var(--red-500);
  color: white;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 22px;
}

.img-banner {
  transition: 0.6s;
  max-height: 30px;
}

.img-banner:hover {
  filter: none;
}

.img-max-100 {
  height: 100px;
  width: 100px;
  max-width: 100%;
  max-height: 100%;
}

.svg_icon_white {
  filter: invert(95%) sepia(83%) saturate(2%) hue-rotate(12deg) brightness(200%) contrast(100%);
}

.icon-card-empreendimentos {
  width: 33px;
  height: 27px;
}

.icon-card-dimensoes {
  width: 33px !important;
  height: 36px !important;
}

.icon-title-empreendientos {
  width: 50px;
  height: 50px;
}

.border-radius-planos-all {
  border-radius: 15px !important;
}

@media only screen and (max-width: 767px) {
  .ul-default {
    padding: 0;
  }

  .button {
    width: 100% !important;
  }

  .h2-default {
    font-size: 25px;
    line-height: 33px;
  }

  .h3-default {
    font-size: 3rem;
    font-weight: var(--bold-700);
    line-height: 40px;
  }

  .p-default {
    font-size: 19px;
    font-weight: var(--bold-400);
    line-height: 22px;
  }

  .p-default-2 {
    font-size: 12px;
    line-height: 12px;
  }

  .line-title {
    line-height: 0 !important;
  }

  .p-default-3 {
    font-size: 1rem;
    font-weight: var(--bold-default);
    line-height: 18px;
  }

  .card-poupex-cultural {
    flex: 0 0 auto;
    width: 100% !important;
  }

}

.table-purple {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}

.table-striped-purple {
  th:first-child {
    border-left: 1px solid var(--blue-500);
  }

  th:last-child {
    border-right: 1px solid var(--blue-500);
  }

  td:first-child {
    border-left: 1px solid var(--gray-500);
  }

  td:last-child {
    border-right: 1px solid var(--gray-500);
  }

  tr:last-child {
    border-bottom: 1px solid var(--gray-500);
  }
}

.table-purple {
  .th-purple {
    background-color: var(--blue-500);
    color: var(--white);
    border: 1px solid var(--white);
  }

  .td-purple-black {
    background-color: var(--blue-300);
    border: 1px solid var(--white);
    color: var(--gray-1000);
    font-weight: var(--bold-700);
  }

  .td-purple {
    background-color: var(--blue-400);
    color: var(--white);
  }
}

.table-purple .td-gray {
  background-color: var(--gray-300);
  color: var(--blue-500);
  border: 1px solid;
}

/* Estilos para arredondar as quinas externas */
.table-purple tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

.table-purple tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

.table-purple tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.table-purple tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.color-blue-050 {
  color: var(--blue-050);
}

.font-weight-700 {
  font-weight: var(--bold-700);
}

.font-weight-400 {
  font-weight: var(--bold-400);
}

.font-size-14 {
  font-size: 0.875rem;
  line-height: 1rem;
}

.font-size-16 {
  font-size: 1rem;
  line-height: 1.125rem;
}

.font-size-20 {
  font-size: 1.25rem;
  line-height: 1.275rem;
}

.font-size-30 {
  font-size: 1.875rem;
  line-height: 1.75rem;
}

.column-cobertura {
  width: 40% !important;
  color: #000;
  height: 150px;
}

.b-radius-planos {
  border-radius: 15px 15px 0 0 !important;
}

.b-radius-planos-footer {
  border-radius: 0 0 15px 15px !important;
}

.btn-blue-plano {
  background-color: var(--blue-500) !important;
  color: #FFFFFF !important;
  width: 90%;
}

.texto-vantagens-exclusivas {
  font-size: 1.375rem;
  line-height: 1.563rem;
  font-weight: var(--bold-500);
  color: var(--gray-1000);

  a {
    text-decoration: none;
  }
}

.border-radius-8 {
  border-radius: 8px;
}

.chamada-imovel-ballon {
  border-radius: 0 113.5px 110px 110px;
  background: rgba(190, 190, 190, 0.20);
  backdrop-filter: blur(17.5px);
  width: 210px;
  height: 200px;
}

.selo-previsto-sem-logo {
  z-index: 1;
}

.selo-previsto {
  margin-left: -50px;
  margin-top: -50px;
  z-index: 1;
}

.breadcrumbs-detalhe-imovel {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: 1.313rem;
}

.breadcrumbs-nome-imovel {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--bold-700);
  line-height: 1.313rem;
}

.title-detalhe-imovel {
  font-family: Inter;
  color: #FFFFFF;
  font-size: 3rem;
  font-style: normal;
  font-weight: var(--bold-700) !important;
  line-height: 3.25rem;
}

.text-diferenciais-imovel {
  color: var(--gray-1000);
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: normal;
}

.title-planta-imovel {
  color: var(--gray-1000);
  font-size: 25px;
  font-style: normal;
  font-weight: var(--bold-700);
  line-height: 28px;
}

.area-planta-imovel {
  color: var(--blue-500);
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-700);
  line-height: 22px;
}

.link-plantas {
  color: #2A609D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}


.imovel-localizacao {
  font-family: Inter;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: 1.625rem;
}

.btn-imovel {
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 1.25rem;
  padding: 15px 40px;
  max-height: 50px;
  color: #FFFFFF !important;
  border-radius: 8px;
  text-transform: uppercase;
  text-align: center;
  
  @media only screen and (max-width: 767px) {
    width: 100%;
  }
}

.btn-imoveis-table-precos {
  background: var(--gray-800);
  backdrop-filter: blur(17.5px);
  opacity: 0.9;
  border: 1px #FFF solid;
  font-weight: var(--bold-500);
}

.btn-red-imoveis-inscreva {
  background-color: var(--red-600) !important;
  border: 1px var(--red-600) solid;
}

.title-min-card-imovel {
  color: var(--gray-1000);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: var(--bold-400);
  line-height: normal;
  letter-spacing: 0.42px;
}


.pb-30 {
  padding-bottom: 30px !important;
}

.pb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.link-tour-virtual {
  display: flex;
  height: 59px;
  padding: 5px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  background: var(--gray-200);
  backdrop-filter: blur(5px);
  max-width: 240px;
  cursor: pointer;
}

.h6-accordeon {
  color: var(--gray-1000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.h6-accordeon-hide {
  color: var(--red-500) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.show-accordeon {
  padding: 20px 0px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #4C6AB0;
  color: #FFFFFF;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media only screen and (max-width: 992px) {
  .btn-blue-plano {
    background-color: var(--blue-500) !important;
    color: #FFFFFF !important;
    width: 90%;
    font-size: 12px !important;
  }
}

.padding-100 {
  padding: 100px 0;
}

.accordion {
  --bs-accordion-border-width: initial !important;
}

.accordion-header .accordion-button {
  font-weight: 500;
}

.accordion-body {
  background: var(--gray-200);
  padding-bottom: 36px !important;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-400) !important;
}

.min-area {
  height: 400px;
  overflow:hidden;
}

.max-area {
  height: auto;
  overflow:hidden;
}

.leia-mais {
  color: #2A609D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.img-diferenciais img {
  background-color: var(--gray-200);
  border-radius: 50%;
  padding: 15px;
}

.p-default-2-mobile {
  color: var(--gray-1000);
  font-size: 40px;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 44px; /* 110% */
}

.title-home-empreendimento-destaque-mobile {
  color: var(--gray-600);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-default);
  line-height: 26px;
}

#seguros-gratuitos {
  .direita {
    @media only screen and (min-width: 767px) {
      order: 1;
    }
  }

  .title {
    margin: 100px 0;

    @media only screen and (max-width: 767px) {
      margin: 30px 0;
    }
  }

  .componente-seguro-gratuito {
    gap: 80px; 
    padding-top: 100px;

    @media only screen and (max-width: 767px) {
      display: grid !important;
      gap: 0;
      padding-top: 0;
    }

    .invert-mobile {
      @media only screen and (max-width: 767px) {
        order: 2;
      }
    }

    .image-componente {
      @media only screen and (max-width: 767px) {
        display: block !important;
      }

      img {
        max-width: none;
        
        @media only screen and (max-width: 767px) {
          width: 100%;
          height: auto !important;
        }
      }
    }

    .frame {
      padding-bottom: 40px;

      @media only screen and (max-width: 767px) {
        padding-top: 30px
      }
    }

    .card-gratuito {
      font-size: 14px;
      font-weight: var(--bold-700);
      line-height: normal;

      a {
        font-size: 16px;
        font-weight: var(--bold-500);
        color: var(--blue-500);
        text-decoration: none;
      }
    }
  }
}

#img-conteudo-doc-download {
  .direita {
    @media only screen and (min-width: 767px) {
      order: 1;
    }
  }

  .title {
    margin: 100px 0;

    @media only screen and (max-width: 767px) {
      margin: 30px 0;
    }
  }

  .componente-img-conteudo-doc-download {
    gap: 80px; 
    padding-top: 100px;

    @media only screen and (max-width: 767px) {
      display: grid !important;
      gap: 0;
      padding-top: 0;
    }

    .invert-mobile {
      @media only screen and (max-width: 767px) {
        order: 2;
      }
    }

    .image-componente {
      @media only screen and (max-width: 767px) {
        display: block !important;
      }

      img {
        max-width: none;
        
        @media only screen and (max-width: 767px) {
          width: 100%;
          height: auto !important;
        }
      }
    }

    .frame {
      padding-bottom: 40px;

      @media only screen and (max-width: 767px) {
        padding-top: 30px
      }
    }

    .card-gratuito {
      font-size: 14px;
      font-weight: var(--bold-700);
      line-height: normal;

      a {
        font-size: 16px;
        font-weight: var(--bold-500);
        color: var(--blue-500);
        text-decoration: none;
      }
    }
  }
}

.page-template-page-produto-consorcio {
  .banner-products {
    .button::after {
      content: url(https://www.poupex.com.br/wp-content/themes/px-poupex/assets/images/icons/download.svg);
      display: inline-block;
      margin-left: 4px;
      vertical-align: middle;
      filter: invert(95%) sepia(83%) saturate(2%) hue-rotate(12deg) brightness(200%) contrast(100%);
      transform: rotate(270deg);
      width: 20px;
      height: 20px;
      top: -4px;
      position: relative;
    }

    .button:hover::after {
      filter: none;
    }
  }
}

/* INICIO - Ajustes para o Blog */
.wp-block-image {
  margin: 0 0 1em
}

.wp-block-image img {
  max-width: 100%
}

.wp-block-image:not(.is-style-rounded) img {
  border-radius: inherit
}

.wp-block-image.aligncenter {
  text-align: center
}

.wp-block-image.alignfull img,.wp-block-image.alignwide img {
  width: 100%
}

.wp-block-image.aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright {
  display: table
}

.wp-block-image.aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption {
  display: table-caption;
  caption-side: bottom
}

.wp-block-image.alignleft {
  float: left;
  margin: .5em 1em .5em 0;

  @media only screen and (max-width: 600px) {
      float: none;
  }
}

.wp-block-image.alignright {
  float: right;
  margin: .5em 0 .5em 1em
}

.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto
}

.wp-block-image figcaption {
  margin-top: .5em;
  margin-bottom: 1em
}

.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img {
  border-radius: 9999px
}
/* FIM - Ajustes para o Blog */

#quem-pode-contratar {
  padding-bottom: 50px;
  padding-top: 50px;

  @media only screen and (max-width: 767px) {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .texto-quem-pode-contratar {
    font-size: 1.25rem;
    line-height: 1.35rem;
    font-weight: var(--bold-400);
    color: var(--gray-1000);
  
    a {
      text-decoration: none;
    }
  }
}

.carousel-andamento-obra {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.carousel-andamento-obra.show {
  opacity: 1;
}

.wp-block-template-part {
  margin-top: 0;
}

.home-vantegens {
  padding-bottom: 50px;
  margin-top: 100px;

  @media only screen and (max-width: 767px) {
    padding-bottom: 15px;
    margin-top: 30px;
  }
}

#faq {
  margin-bottom: 100px;
  margin-top: 50px;

  @media only screen and (max-width: 767px) {
    margin-top: 15px;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

#documentos-download {
  padding-bottom: 50px;
  margin-top: 50px;

  .nome-arquivo {
    min-height: 76px;
  }

  .card-document {
    padding-bottom: 30px;
  }

  @media only screen and (max-width: 767px) {
    margin-top: 15px;
    padding-bottom: 15px;
  }
}

.conheca-tambem {
  margin-top: 0;
  padding-bottom: 50px;
  padding-top: 50px;

  @media only screen and (max-width: 767px) {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.container-video {
  margin-top: 0;
  padding-bottom: 50px;
  padding-top: 50px;

  @media only screen and (max-width: 767px) {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

#produto-atencao {
  margin-top: 50px;

  @media only screen and (max-width: 767px) {
    margin-top: 15px;
  }
}

.menu-lateral{
  a{
    color: var(--gray-600);
  }

  a:hover {
    color: var(--gray-1000);
  }
}

.frame-3 {
  margin-top: 100px;

  @media only screen and (max-width: 767px) {
    margin-top: 15px;
  }
}


.search-toggle {
  display: inline-block;
  width: 42px;
  height: 45px;
  background-color: #fff;
  cursor: pointer; /* torna clicável */

  -webkit-mask-image: url('../images/icons/pesquisa.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url('../images/icons/pesquisa.svg');
  mask-repeat: no-repeat;
  mask-size: contain;

  transform: translateY(3px); /* ajuste fino vertical */
}


/* Botão da lupa: igual aos outros em altura/alinhamento */
.btn-header-search .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: normal;
  background: transparent;
  border: none;
}

.headers-menu {
  min-width: 137px;
}

/* Caixa do campo de busca */
.search-box,
.search-box-mobile {
  height: 39px;
  /* display: flex; */
  display: none;
  animation: slideFromButton 1s ease-out forwards;
  pointer-events: auto;
  width: 42px;
  transform-origin: right;
  /* transition: transform 2s; */
  transition: width 0.5s ease; 

  .search-form,
  .search-form-mobile {
    height: 39px;
    width: 100%;

    .form-control {
      height: 39px;
      width: 42px;
      min-width: 100%;
    }
  }
}

.search-box.expanded, 
.search-box-mobile.expanded {
  display: flex;
  width: 400px;
  transform-origin: left;
  max-width: 100%;
  position: relative;

  @media screen and (max-width: 967px) {
    width: 100%;
    margin-bottom: 4px;
    margin-top: 4px;
  }

  .form-control {
    height: 39px; 
  }
}

.search-box input.form-control,
.search-box-mobile input.form-control {
  width: 100%;
  padding: 10px 17px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.search-button-header,
.search-button-header-mobile {
  font-family: 'Inter';
  color: #fff;
  background: transparent;
  border: none;
  position: relative;
  justify-self: flex-end;
  gap: 6px;
  display: flex;
  top: -20px;


  img {
    position: relative;
    top: -12.5px;
    left: -4px;
  }
}

.search-box-mobile {
  position: relative !important;

  .search-button-header-mobile {
    position: absolute !important;
    right: 0;
    top: 20px !important;
  }
}

/* Ícone branco */
.search-icon-header {
  filter: brightness(0) invert(1); /* transforma o SVG em branco */
  width: 22px;
  height: 23px;
}


.search-box input,
.search-box-mobile input {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
}

.search-close,
.search-close-mobile {
  padding-left: 9px;
  right: -27px;
  display: none;
  position: absolute;
  top: 20px;   /* sobe um pouco, mas continua visível */
  font-size: 26px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
}

.header {
  margin-top: 100px;
  padding-bottom: 50px;

  @media screen and (max-width: 767px) {
    margin-top: 30px;
    padding-bottom: 15px;
    
  }

  p {
    margin-bottom: 0;
    color: #5B5B5B;
    font-family: Inter;
    font-size: 24px;
    line-height: 28px;
  }

  h2 {
    margin-bottom: 35px;
    color: #282828;
    font-style: normal;
    font-weight: 600;
  }
}

.transparent-buttons {
  color: transparent !important;
  border-color: transparent !important;
  background-color: transparent !important;

  img {
    opacity: 0;
  }
}

.search-box input:focus {
  border-color: none;
  box-shadow: none;
}

.buttons-header {
  min-width: 452px;

  #action-buttons {
    display: flex;
    padding-left: 10px;

    .btn-acesse-sua-conta{
      span {
        @media screen and (max-width: 1400px) {
          display: none;
        }
      }

      .btn-header {
        @media screen and (max-width: 1400px) {
          min-width: auto;
        }

        img {
          @media screen and (max-width: 1400px) {
            padding: 0 !important;
          }
        }
      }
    }
  }
}

.container-search {
  width: 100%;
}

