@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
/* Zoom in Keyframes */
@import "variables.css";
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
} /*End of Zoom in Keyframes */
@keyframes zoominOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
} /*End of Zoom in Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes translateY_loop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes softpulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes changeColors {
  0% {
    background-color: #D20D15;
  }
  70% {
    background-color: #5D5B54;
  }
  100% {
    background-color: #D20D15;
  }
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 0 !important;
  background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
  background-color: #d30c14;
  border-radius: 0;
  border: 3px solid transparent;
}

body {
  font-family: "Montserrat", Sans-serif;
  overflow-x: hidden;
}
body a, body a:hover {
  text-decoration: none;
}

section {
  overflow: hidden;
}

@media (min-width: 992px) {
  .container {
    min-width: 1500px;
  }
  .container.big {
    min-width: 1745px;
  }
  .container.small {
    min-width: 1350px;
  }
}
.justify-items-end {
  justify-items: end;
}

.align-self-center {
  align-self: center;
}

.overlay {
  position: fixed;
  width: calc(100% - 649px);
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  transition: 0.4s;
  z-index: -1;
  opacity: 0;
  right: 100%;
  left: unset;
}
@media (max-width: 991px) {
  .overlay {
    display: none;
  }
}
.overlay.show {
  opacity: 1;
  z-index: 8;
  right: 649px;
}

header#home {
  padding-top: 35px;
  width: 100%;
  height: 945px;
  position: relative;
}
@media (max-width: 991px) {
  header#home {
    height: 706px;
  }
  header#home .detail-mobile {
    content: "";
    background: rgba(255, 255, 255, 0.85);
    display: block;
    height: 470px;
    width: 470px;
    position: absolute;
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(82deg);
    left: -100px;
    top: -260px;
  }
  header#home .detail-mobile-plus {
    content: "";
    background: linear-gradient(348deg, #b01612, #D20D15);
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(82deg);
    top: -23px;
    left: -6px;
  }
  header#home .container {
    position: relative;
  }
  header#home h1 {
    font-size: 20px;
    font-weight: 400;
    color: black;
    text-align: center;
    line-height: 170%;
    margin: 0 auto;
    margin-top: 150px;
    z-index: 3;
    position: absolute;
    text-shadow: 0px 0px 1px #000;
    padding: 15px;
  }
  header#home .logo {
    margin-left: 10px;
    margin-top: -3px;
  }
  header#home .logo a {
    position: relative;
  }
}
header#home .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 945px;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 991px) {
  header#home .background {
    height: 706px;
  }
}
header#home .background h1 {
  font-size: 23px;
  font-weight: 400;
  color: white;
  text-align: center;
  max-width: 1300px;
  line-height: 170%;
  margin: 0 auto;
  margin-top: 234px;
  z-index: 3;
  position: absolute;
  text-shadow: 0px 0px 1px #000;
  text-wrap: pretty;
}
@media (max-width: 991px) {
  header#home .background h1 {
    font-size: 20px;
    line-height: 150%;
    padding: 0 25px;
  }
}
header#home .background h1.shadow-plus {
  text-shadow: 0px 1px 2px #000;
}
@media (max-width: 992px) {
  header#home .background h1.text-black {
    color: white !important;
    text-shadow: 0px 1px 2px #000;
  }
}
header#home .background .owl-stage {
  background: black;
}
header#home .background .owl-stage img {
  opacity: 1; /*antes .5*/
}
header#home .background .owl-item img {
  height: 945px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  header#home .background .owl-item img {
    height: 706px;
  }
}
header#home .background .owl-item.active div {
  width: 100%;
  justify-content: center;
  display: flex;
}
header#home .background .owl-item.active img {
  animation: zoomin 15s ease-in infinite;
}
header#home:after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 130px;
  background: linear-gradient(180deg, black, transparent);
  z-index: -1;
  opacity: 0.8;
  display: none;
}
@media (max-width: 991px) {
  header#home:after {
    display: block;
  }
}
header#home:before {
  background: linear-gradient(360deg, black, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  display: block;
  z-index: 5;
  content: "";
  z-index: 0;
}
@media (max-width: 991px) {
  header#home:before {
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
  }
}
header#home {
  /*
  img.background{
      width:100%;
      height:100%;
      position: fixed;
      left: 0;
      top: 0;
      z-index: -1;
  }*/
}
header#home img.logo {
  width: 159px;
}
@media (max-width: 991px) {
  header#home img.logo {
    width: 140px;
    margin-left: 10px;
  }
}
header#home .bottom {
  bottom: 110px;
  position: absolute;
  width: 100%;
}
header#home .bottom .btn-link {
  left: 54px;
  position: absolute;
  bottom: -15px;
  padding: 0 20px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  header#home .bottom .btn-link {
    display: none;
  }
}
header#home .initiate-experience {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
header#home .initiate-experience span {
  font-weight: 300;
  font-size: 22px;
  color: white;
}
@media (max-width: 991px) {
  header#home .initiate-experience span {
    font-size: 20px;
  }
}
header#home .initiate-experience .animation {
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  scale: 1;
  width: 58px;
  height: 58px;
  filter: invert(1);
}
@media (max-width: 991px) {
  header#home .initiate-experience .animation {
    transform: scale(0.8);
    animation-name: pulseMobile;
  }
}
@keyframes pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes pulseMobile {
  25% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(0.6);
  }
}

header#institucional {
  padding-top: 35px;
  width: 100%;
  height: 600px;
  position: relative;
}
header#institucional.p-empreendimentos:after {
  height: 230px;
  opacity: 0.9;
}
header#institucional.p-empreendimentos:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  height: 130px;
  background: linear-gradient(180deg, black, transparent);
  z-index: 0;
  opacity: 0.8;
  display: block;
  top: 0;
}
@media (max-width: 991px) {
  header#institucional.p-empreendimentos:before {
    display: block;
    bottom: 0;
    background: linear-gradient(0deg, black, transparent);
    height: 200px;
    top: unset;
  }
}
header#institucional.p-empreendimentos .container {
  height: 100%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  header#institucional.p-empreendimentos .container {
    justify-content: end;
    padding-bottom: 20px;
  }
}
header#institucional.p-empreendimentos h1 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  color: white;
  margin-left: -100px;
}
@media (max-width: 991px) {
  header#institucional.p-empreendimentos h1 {
    margin-left: 0;
    text-align: center;
    line-height: 150%;
    font-size: 22px;
    padding: 0 20px;
  }
}
header#institucional.p-empreendimentos h1 strong, header#institucional.p-empreendimentos h1 b {
  font-weight: 600;
}
header#institucional.video .bottom {
  left: -220px;
}
header#institucional.video {
  height: 800px;
}
@media (max-width: 991px) {
  header#institucional.video {
    height: 450px;
  }
  header#institucional.video .btn-link {
    display: none;
  }
}
header#institucional.video:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  height: 130px;
  background: linear-gradient(180deg, black, transparent);
  z-index: 0;
  opacity: 0.8;
  display: block;
  top: 0;
}
@media (max-width: 991px) {
  header#institucional.video:before {
    display: none;
  }
}
header#institucional.video .toggle-sound {
  position: absolute;
  top: calc(50% - 25.5px);
  left: calc(50% - 25.5px);
  background-color: #A5150F;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #A5150F;
}
@media (max-width: 991px) {
  header#institucional.video .toggle-sound {
    transform: scale(0.8);
    top: 57%;
  }
}
header#institucional.video .toggle-sound svg {
  width: 30px;
  height: 30px;
  margin-top: -6px;
  margin-left: 2px;
}
header#institucional.video .toggle-sound.sound-mute {
  box-shadow: none;
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
header#institucional.video .sound {
  width: 97%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  left: 0;
  top: 0;
  margin-left: -15%;
}
header#institucional.video .sound--icon {
  color: inherit;
  line-height: inherit;
  font-size: 1.6rem;
  display: block;
  margin: auto;
  text-align: left;
  padding-left: 20px;
}
header#institucional.video .sound--wave {
  position: absolute;
  border: 2px solid transparent;
  border-right: 2px solid #fff;
  border-radius: 50%;
  transition: all 200ms;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
header#institucional.video .sound--wave_one {
  width: 45%;
  height: 40%;
}
header#institucional.video .sound--wave_two {
  width: 70%;
  height: 62%;
}
header#institucional.video .sound--wave_three {
  width: 95%;
  height: 75%;
}
header#institucional.video .sound-mute .sound--wave {
  border-radius: 0;
  width: 35%;
  height: 35%;
  border-width: 0 2px 0 0;
  left: 5px;
}
header#institucional.video .sound-mute .sound--wave_one {
  transform: rotate(45deg) translate3d(0, -50%, 0);
}
header#institucional.video .sound-mute .sound--wave_two {
  transform: rotate(-45deg) translate3d(0, 50%, 0);
}
header#institucional.video .sound-mute .sound--wave_three {
  opacity: 0;
  transform: translateX(-46%);
  height: 20%;
}
header#institucional .container {
  position: relative;
}
@media (max-width: 991px) {
  header#institucional {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
  }
  header#institucional .detail-mobile {
    content: "";
    background: rgba(255, 255, 255, 0.85);
    display: block;
    height: 470px;
    width: 470px;
    position: absolute;
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(82deg);
    left: -100px;
    top: -260px;
  }
  header#institucional .detail-mobile-plus {
    content: "";
    background: linear-gradient(348deg, #b01612, #D20D15);
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(82deg);
    top: -23px;
    left: -6px;
  }
  header#institucional .container {
    position: relative;
  }
  header#institucional .logo {
    margin-left: 10px;
    margin-top: -3px;
  }
  header#institucional .logo a {
    position: relative;
  }
}
header#institucional .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 991px) {
  header#institucional .background {
    height: 600px;
  }
}
header#institucional .background h1 {
  font-size: 23px;
  font-weight: 400;
  color: black;
  text-align: center;
  max-width: 1300px;
  line-height: 170%;
  margin: 0 auto;
  margin-top: 234px;
  z-index: 3;
  position: absolute;
  text-shadow: 0px 0px 1px #000;
}
header#institucional .background h1.shadow-plus {
  text-shadow: 0px 1px 2px #000;
}
@media (max-width: 992px) {
  header#institucional .background h1.text-black {
    color: white !important;
    text-shadow: 0px 1px 2px #000;
  }
}
header#institucional .background .owl-item img {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  header#institucional .background .owl-item img {
    height: 600px;
  }
}
header#institucional .background .owl-item.active div {
  width: 100%;
  justify-content: center;
  display: flex;
}
header#institucional .background .owl-item.active img {
  animation: zoomin 15s ease-in infinite;
}
header#institucional:after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 130px;
  background: linear-gradient(180deg, black, transparent);
  z-index: -1;
  opacity: 0.8;
  display: block;
  bottom: 0;
  top: unset;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  header#institucional:after {
    display: block;
    transform: unset;
    bottom: unset;
    top: 0;
  }
}
header#institucional {
  /*&.no-overlay{
      &:before{
          display: none;
      }
  }*/
}
header#institucional video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 991px) {
  header#institucional video {
    height: 450px;
    -o-object-position: center;
       object-position: center;
  }
}
header#institucional:before {
  /*
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6), transparent);
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      content: "";
      z-index: 0;
  @media(max-width:991px){
      height: 60%;
  }
      */
}
header#institucional img.logo {
  width: 159px;
}
@media (max-width: 991px) {
  header#institucional img.logo {
    width: 140px;
    margin-left: 10px;
  }
}
header#institucional .bottom {
  bottom: 50px;
  position: absolute;
  width: 100%;
}
@media (max-width: 991px) {
  header#institucional .bottom {
    position: relative;
    bottom: unset;
    margin-top: 50px;
  }
}
header#institucional .bottom .btn-link {
  position: absolute;
  text-transform: uppercase;
  left: 80px;
  position: absolute;
  bottom: -10px;
  text-transform: uppercase;
  padding: 0 25px;
}
@media (max-width: 991px) {
  header#institucional .bottom .btn-link {
    left: unset;
    position: relative;
    font-size: 13px;
    height: 37px;
    line-height: 37px;
    padding: 0 13px;
  }
}
header#institucional .center {
  margin-top: 125px;
  text-align: center;
}
@media (max-width: 991px) {
  header#institucional .center {
    text-align: left;
    margin-top: 0;
    padding: 0 10px;
  }
}
header#institucional .center h1, header#institucional .center p {
  font-weight: 300;
}
header#institucional .center h1 {
  font-size: 33px;
  line-height: 33px;
  color: white;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 300;
}
@media (max-width: 991px) {
  header#institucional .center h1 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }
}
header#institucional .center h1 b {
  color: #A5150F;
}
header#institucional .center p {
  font-size: 22px;
  line-height: 33px;
  color: white;
  text-align: center;
}
@media (max-width: 991px) {
  header#institucional .center p {
    font-size: 14px;
    line-height: 21px;
    text-align: left;
  }
}

footer {
  background: #F5F5F5;
  padding-top: 70px;
}
@media (max-width: 991px) {
  footer {
    padding-top: 40px;
    position: relative;
  }
  footer .redes-sociais {
    top: 35px;
    transform: scale(0.8);
    right: 0px;
    position: absolute;
  }
  footer .redes-sociais h3 {
    display: none;
  }
}
footer .logo {
  width: 151px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  footer .logo {
    width: 120px;
    margin-bottom: 20px;
  }
}
footer h3 {
  font-size: 18px;
  line-height: 100%;
  color: black;
  margin-bottom: 33px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style: none;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  footer ul li {
    margin-bottom: 10px;
  }
}
footer ul li a {
  color: black;
  font-size: 16px;
  line-height: 24px;
  transition: 0.5s;
}
@media (max-width: 991px) {
  footer ul li a {
    font-size: 14px;
    line-height: 22px;
  }
}
footer ul li a:hover {
  color: #A5150F;
}
footer .redes {
  display: flex;
  gap: 15px;
}
footer .redes a {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
footer .redes a:hover {
  background-color: #A5150F;
  transform: translateY(-1px);
}
footer .redes svg {
  width: 17px;
  height: 17px;
  filter: invert(1);
  transition: 0.5s;
}
footer h4 {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 991px) {
  footer h4 {
    font-size: 15px;
    line-height: 22px;
  }
}
footer .sub-footer {
  background: #303030;
  padding: 40px 0;
  color: white;
  margin-top: 80px;
}
@media (max-width: 991px) {
  footer .sub-footer {
    margin-top: 40px;
    padding-bottom: 100px;
  }
}
footer .sub-footer a {
  font-size: 16px;
  line-height: 24px;
  color: white;
  transition: 0.5s;
  font-weight: 300;
}
@media (max-width: 991px) {
  footer .sub-footer a {
    font-size: 14px;
    line-height: 22px;
  }
}
footer .sub-footer a:hover {
  font-weight: 500;
}
footer .sub-footer .descritivo {
  font-size: 14px;
  line-height: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: block;
  font-weight: 300;
}
@media (max-width: 991px) {
  footer .sub-footer .descritivo {
    font-size: 12px;
    line-height: 19px;
  }
}
footer .sub-footer .copy {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 991px) {
  footer .sub-footer .copy {
    font-size: 11px;
  }
}

/* home */
/* EM OFF
@import "home/empreendimentos-destaque.scss";
@import "home/empreendimentos-fase.scss"; */
section.home-empreendimentos {
  padding-top: 120px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  section.home-empreendimentos {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  section.home-empreendimentos .col-lg-3 {
    width: 27%;
  }
  section.home-empreendimentos .col-lg-9 {
    width: 73%;
  }
}
section.home-empreendimentos h2 {
  text-align: center;
  font-size: 40px;
  line-height: 53px;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.home-empreendimentos h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
section.home-empreendimentos h2 span {
  color: #A5150F;
}
section.home-empreendimentos p.desc {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
section.home-empreendimentos p.desc.fw-600 {
  font-weight: 600;
}
@media (max-width: 991px) {
  section.home-empreendimentos p.desc.fw-600 {
    font-weight: 500;
  }
}
@media (max-width: 991px) {
  section.home-empreendimentos p.desc {
    margin-bottom: 30px;
  }
}
section.home-empreendimentos .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  section.home-empreendimentos .menu {
    flex-wrap: wrap;
  }
}
section.home-empreendimentos .menu label {
  border: 0;
  background: transparent;
  border-bottom: 1px solid black;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.home-empreendimentos .menu label {
    font-size: 14px;
    line-height: 25px;
    padding: 7px 7px;
    margin-bottom: 10px;
    margin-right: 5px;
  }
}
section.home-empreendimentos .menu label:hover {
  color: #A5150F;
}
section.home-empreendimentos .menu label.active {
  color: #A5150F;
  border-color: #A5150F;
  border-width: 2px;
  margin-top: -1px;
}
section.home-empreendimentos .carousels {
  margin-top: 50px;
  display: block;
}
@media (max-width: 991px) {
  section.home-empreendimentos .carousels {
    margin-top: 25px;
  }
}
section.home-empreendimentos .carousels .owl-stage {
  margin: 0 auto;
}
section.home-empreendimentos .carousels .owl-carousel-outer {
  display: none;
}
section.home-empreendimentos .carousels .owl-carousel-outer.active {
  display: block;
  animation: fadeIn 1s;
}
section.home-empreendimentos .box .left {
  padding-left: 100px;
  padding-top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left {
    padding: 20px;
    min-height: 259px;
    padding-top: 15px;
    padding-bottom: 5px;
  }
  section.home-empreendimentos .box .left.min-h {
    min-height: 159px;
  }
}
section.home-empreendimentos .box .left .logo {
  width: 152px;
  filter: invert(1);
}
section.home-empreendimentos .box .left .logo.no-filter {
  filter: unset;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left .logo {
    margin-bottom: 0;
    width: 60px;
  }
}
section.home-empreendimentos .box .left .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.home-empreendimentos .box .left h3, section.home-empreendimentos .box .left span, section.home-empreendimentos .box .left p {
  color: white;
  text-align: left;
}
section.home-empreendimentos .box .left h3 {
  font-weight: 400;
  line-height: 100%;
  font-size: 25px;
  padding-bottom: 29px;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left h3 {
    margin-bottom: 15px;
    font-size: 16px;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 10px;
  }
}
section.home-empreendimentos .box .left span.tag {
  background: transparent;
  display: table;
  padding: 12px;
  border: 1px solid white;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left span.tag {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    font-size: 12px;
  }
}
section.home-empreendimentos .box .left p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left p {
    font-size: 13px;
    margin-bottom: 0px;
    margin-top: 18px;
  }
}
section.home-empreendimentos .box .left p.endereco {
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left p.endereco {
    font-size: 10px;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 20px;
  }
}
section.home-empreendimentos .box .left .icones {
  margin-top: 25px;
}
section.home-empreendimentos .box .left .icones.white img {
  filter: contrast(0) brightness(10);
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left .icones {
    margin-top: 15px;
  }
}
section.home-empreendimentos .box .left .icones div {
  display: flex;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left .icones div {
    margin-bottom: 10px;
  }
}
section.home-empreendimentos .box .left .icones div img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 13px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .left .icones div img {
    margin-left: 0;
  }
}
section.home-empreendimentos .box .left .icones div span {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}
section.home-empreendimentos .box .right {
  overflow: hidden;
}
section.home-empreendimentos .box .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.home-empreendimentos .box .right img {
    height: 286px;
  }
}
section.home-empreendimentos .owl-carousel .owl-item.active .box .right img {
  animation: zoomin 15s ease-in infinite;
}
section.home-empreendimentos .owl-carousel {
  cursor: grab;
}
section.home-empreendimentos .owl-carousel .owl-nav {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-top: 10px;
  margin-right: 17px;
}
@media (max-width: 991px) {
  section.home-empreendimentos .owl-carousel .owl-nav {
    gap: 5px;
    margin-right: 5px;
  }
}
section.home-empreendimentos .owl-carousel .owl-nav .owl-prev, section.home-empreendimentos .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
@media (max-width: 991px) {
  section.home-empreendimentos .owl-carousel .owl-nav .owl-prev, section.home-empreendimentos .owl-carousel .owl-nav .owl-next {
    width: 31px;
    height: 31px;
  }
}
section.home-empreendimentos .owl-carousel .owl-nav .owl-prev svg, section.home-empreendimentos .owl-carousel .owl-nav .owl-next svg {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
section.home-empreendimentos .owl-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  section.home-empreendimentos .heading {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
  }
}

section.home-rotativo a {
  transition: 0.6s;
}
section.home-rotativo a:hover {
  opacity: 0.85;
}
section.home-rotativo .responsive-video {
  width: 100%;
  border: none;
  min-height: 700px;
}
@media (max-width: 991px) {
  section.home-rotativo .responsive-video {
    min-height: 300px;
  }
}
section.home-rotativo .owl-nav {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-top: 10px;
  margin-right: 17px;
}
@media (max-width: 991px) {
  section.home-rotativo .owl-nav {
    gap: 5px;
    margin-right: 5px;
  }
}
section.home-rotativo .owl-nav .owl-prev, section.home-rotativo .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
@media (max-width: 991px) {
  section.home-rotativo .owl-nav .owl-prev, section.home-rotativo .owl-nav .owl-next {
    width: 31px;
    height: 31px;
  }
}
section.home-rotativo .owl-nav .owl-prev svg, section.home-rotativo .owl-nav .owl-next svg {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
section.home-rotativo .owl-nav .owl-next {
  transform: rotate(180deg);
}

section.home-formulario {
  border-top: 20px solid #f5f5f5;
  border-bottom: 20px solid #f5f5f5;
  padding-top: 139px;
  padding-bottom: 155px;
  position: relative;
  display: block;
}
section.home-formulario.exclusivo {
  border-top: 20px solid #eee;
}
@media (max-width: 991px) {
  section.home-formulario.exclusivo {
    border-top-width: 5px;
  }
}
section.home-formulario.bg-red:before {
  background: #A5150F;
}
@media (max-width: 991px) {
  section.home-formulario.bg-red.p-institucional {
    background: unset;
  }
  section.home-formulario.bg-red h2 {
    background: #A5150F;
  }
  section.home-formulario.bg-red h4 {
    background: black;
    padding: 15px 20px;
  }
}
section.home-formulario.border-none {
  border-top: none;
  padding-top: 100px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  section.home-formulario.border-none {
    padding-top: 0;
    padding-bottom: 30px;
  }
  section.home-formulario.border-none h2 {
    text-align: center;
  }
}
section.home-formulario.border-none h2 strong {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 991px) {
  section.home-formulario.border-none h2 img {
    width: 150px;
  }
}
section.home-formulario.border-none h2 img.filter-invert {
  filter: invert(1);
}
section.home-formulario.border-none a.item .item-in {
  width: 80%;
  display: block;
  background: #fff;
  position: relative;
  margin: auto;
  border-radius: 10px;
}
@media (max-width: 991px) {
  section.home-formulario.border-none a.item .item-in {
    max-width: 400px;
    margin-top: 25px;
  }
}
section.home-formulario.border-none a.item .item-in:hover img {
  opacity: 0.9;
}
section.home-formulario.border-none a.item .item-in:hover .btns .btn-red {
  background: #D20D15;
  color: white;
  transform: translateY(-6px);
  border-color: white;
}
section.home-formulario.border-none a.item .item-in:hover .btns .btn-red svg {
  filter: contrast(0) brightness(10);
}
section.home-formulario.border-none a.item .item-in img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.6s;
}
@media (max-width: 991px) {
  section.home-formulario.border-none a.item .item-in img {
    height: 360px;
  }
}
section.home-formulario.border-none a.item .item-in span {
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.6s;
  display: block;
  z-index: 3;
  background: #d30c14;
  padding: 5px 20px;
  color: white;
  font-size: 16px;
  border-bottom: 2px solid #fff;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 8px;
}
@media (max-width: 991px) {
  section.home-formulario.border-none a.item .item-in span {
    font-size: 15px;
  }
}
section.home-formulario.border-none a.item .btns {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  padding-top: 100px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.home-formulario.border-none a.item .btns .btn-red {
  padding: 8px 25px;
  background-color: white;
  color: #d30c14;
  text-align: center;
  text-decoration: none;
  transition: 0.6s;
  font-size: 15px;
  border-radius: 20px;
  margin-right: 30px;
  margin-top: 20px;
  border-bottom: 2px solid #d30c14;
}
section.home-formulario.border-none a.item .btns .btn-red svg {
  transition: 0.6s;
}
@media (max-width: 991px) {
  section.home-formulario {
    padding-top: 0;
    padding-bottom: 40px;
    border-top-width: 4px;
    border-bottom-width: 4px;
  }
}
section.home-formulario.p-institucional.bg-red-2:before {
  background: #A5150F;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.bg-red-2 {
    background: #A5150F;
  }
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional {
    background: black;
    padding-bottom: 70px;
    border-top: 0;
  }
}
section.home-formulario.p-institucional.min-600 {
  min-height: 600px;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600 {
    min-height: unset;
    padding-bottom: 40px;
  }
}
section.home-formulario.p-institucional.min-600 .bg {
  width: 60%;
}
section.home-formulario.p-institucional.min-600 .bg.personaliza {
  width: 50%;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600 .bg.personaliza {
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600 .bg {
    width: 100%;
  }
}
section.home-formulario.p-institucional.min-600:before {
  width: 40%;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600:before {
    display: none;
  }
}
section.home-formulario.p-institucional.min-600.personaliza:before {
  width: 50%;
}
section.home-formulario.p-institucional.min-600 p {
  font-size: 39px;
  line-height: 56px;
  text-wrap: pretty;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600 p {
    font-size: 24px;
    line-height: 150%;
  }
}
section.home-formulario.p-institucional.min-600 h4 {
  font-size: 18px;
  line-height: 27px;
  text-wrap: pretty;
}
section.home-formulario.p-institucional.min-600 h4.personaliza {
  max-width: 680px;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional.min-600 h4 {
    font-size: 16px;
    line-height: 150%;
  }
}
section.home-formulario.p-institucional .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional .bg {
    position: relative;
    width: 100%;
    height: 280px;
  }
}
section.home-formulario.p-institucional .fundador {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional .fundador {
    width: 100px;
    height: 100px;
    margin-top: 40px;
  }
}
section.home-formulario.p-institucional p {
  font-size: 28px;
  line-height: 36px;
  color: white;
  font-weight: 400;
  padding-right: 100px;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional p {
    position: relative;
    font-size: 17px;
    line-height: 22px;
    padding-right: 0;
  }
}
section.home-formulario.p-institucional h4 {
  font-size: 16px;
  line-height: 22px;
  color: white;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional h4 {
    font-size: 14px;
    line-height: 19px;
  }
}
section.home-formulario.p-institucional h5 {
  font-size: 14px;
  line-height: 19px;
  font-weight: 300;
  color: white;
  margin: 0;
}
@media (max-width: 991px) {
  section.home-formulario.p-institucional h5 {
    font-size: 12px;
    line-height: 16px;
  }
}
section.home-formulario:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  z-index: -1;
  height: 100%;
  background: #000;
  content: "";
  display: block;
}
@media (max-width: 991px) {
  section.home-formulario:before {
    display: none;
  }
}
section.home-formulario h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 400;
  color: white;
  text-align: left;
  max-width: 430px;
  display: flex;
  justify-self: end;
  margin-right: 130px;
  line-height: 60px;
  position: relative;
}
@media (max-width: 991px) {
  section.home-formulario h2 {
    font-size: 22px;
    line-height: 30px;
    padding-top: 40px;
    background-color: #000;
    padding-bottom: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.home-formulario label {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: rgb(48, 48, 48);
  margin-top: 30px;
  display: block;
  margin-bottom: 10px;
}
section.home-formulario input, section.home-formulario textarea {
  border: 0;
  border-bottom: 1px solid #e0e0e0;
}
section.home-formulario .form-group {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}
@media (max-width: 991px) {
  section.home-formulario .form-group {
    padding: 0 15px;
  }
}
section.home-formulario .form-group label {
  font-size: 14px;
  line-height: 24px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  margin: 0;
}
@media (max-width: 991px) {
  section.home-formulario .form-group label {
    font-size: 12px;
  }
}
section.home-formulario form {
  max-width: 622px;
  margin: auto;
}
section.home-formulario button {
  background: black;
  border: 0;
  font-size: 14px;
  color: white;
  border-radius: 22px 22px 22px 22px;
  line-height: 100%;
  width: 75px;
  height: 40px;
  float: right;
  text-align: center;
  clear: both;
  margin-top: 15px;
  transition: 0.3s;
}
section.home-formulario button:hover {
  transform: scale(0.95);
  background: #A5150F;
}

section.home-sobre {
  padding-top: 115px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #fff, #F6F6F6);
  position: relative;
  /*Aqui, se aproveita a estrutura da seção home-sobre para adaptação de estrutura da página institucional*/
}
section.home-sobre.p-institucional.historia {
  padding-top: 95px;
  background: #fff;
}
section.home-sobre.p-institucional.historia .banner {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.historia .banner {
    height: 280px;
    margin-bottom: 50px;
  }
}
section.home-sobre.p-institucional.historia .alternative-mg {
  display: block;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.historia .alternative-mg {
    margin-bottom: 50px;
  }
}
section.home-sobre.p-institucional.timeline {
  padding-top: 95px;
  background: linear-gradient(3deg, #fff, #F6F6F6);
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.home-sobre.p-institucional.timeline .owl-timeline {
  cursor: grab;
}
section.home-sobre.p-institucional.timeline .lines {
  margin: auto;
  max-width: 1920px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines {
    margin-bottom: 15px;
  }
}
section.home-sobre.p-institucional.timeline .lines .line-center {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 100%;
  background: #D20D15;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -8px;
  left: -11px;
  transition: 0.6s;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines .line-center {
    margin-top: -5px;
    height: 8px;
    width: 8px;
    left: -8px;
  }
}
section.home-sobre.p-institucional.timeline .lines .line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background: #eee;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines .line {
    height: 1px;
  }
}
section.home-sobre.p-institucional.timeline .lines .line:after, section.home-sobre.p-institucional.timeline .lines .line:before {
  margin-top: -6px;
  transition: 0.6s;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines .line:after, section.home-sobre.p-institucional.timeline .lines .line:before {
    margin-top: -4px;
  }
}
section.home-sobre.p-institucional.timeline .lines .line:after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 100%;
  background: #D20D15;
  position: absolute;
  right: 31%;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines .line:after {
    height: 8px;
    width: 8px;
    right: 20%;
  }
}
section.home-sobre.p-institucional.timeline .lines .line:before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 100%;
  background: #D20D15;
  position: absolute;
  left: 30.4%;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .lines .line:before {
    height: 8px;
    width: 8px;
    left: 20%;
  }
}
section.home-sobre.p-institucional.timeline .box {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-top: 50px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box {
    width: 100%;
    max-width: 341px;
    margin: auto;
  }
}
section.home-sobre.p-institucional.timeline .box .bg {
  width: 100%;
  height: 334px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .bg {
    height: 286px;
  }
}
section.home-sobre.p-institucional.timeline .box .info {
  padding-top: 37px;
  padding-bottom: 37px;
  padding-left: 37px;
  padding-right: 37px;
  color: white;
  min-height: 211px;
  background: #5D5B54;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info {
    padding: 20px;
    min-height: 259px;
    padding-top: 25px;
    padding-bottom: 20px;
    min-height: 190px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
  }
}
section.home-sobre.p-institucional.timeline .box .info .type {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  font-size: 16px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info .type {
    font-size: 14px;
  }
}
section.home-sobre.p-institucional.timeline .box .info h3 {
  font-size: 19px;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 15px;
}
section.home-sobre.p-institucional.timeline .box .info h3 b {
  background: transparent;
  color: #A5150F;
  text-align: center;
  padding: 0;
  display: block;
  margin-bottom: 15px;
  position: absolute;
  width: 100%;
  text-transform: uppercase;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 600;
  padding-right: 10px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info h3 {
    margin-bottom: 15px;
    font-size: 16px;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 10px;
  }
}
section.home-sobre.p-institucional.timeline .box .info .local {
  display: block;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 300;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info .local {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
section.home-sobre.p-institucional.timeline .box .info span b, section.home-sobre.p-institucional.timeline .box .info span strong, section.home-sobre.p-institucional.timeline .box .info p b, section.home-sobre.p-institucional.timeline .box .info p strong {
  font-weight: 500;
}
section.home-sobre.p-institucional.timeline .box .info p {
  font-size: 13px;
  line-height: 150%;
  color: white;
  font-weight: 300;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info p {
    font-size: 13px;
  }
}
section.home-sobre.p-institucional.timeline .box .info span.tag {
  background: transparent;
  display: table;
  padding: 12px;
  border: 1px solid white;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .box .info span.tag {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    font-size: 12px;
  }
}
section.home-sobre.p-institucional.timeline .box .info p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .owl-carousel {
    font-size: 14px;
  }
  section.home-sobre.p-institucional.timeline .owl-carousel.no-nav .owl-nav {
    display: none;
  }
  section.home-sobre.p-institucional.timeline .owl-carousel {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
section.home-sobre.p-institucional.timeline .owl-carousel {
  cursor: grab;
}
section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  width: 100%;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav {
    width: 95%;
    margin-top: -80px;
    margin-left: 2.5%;
  }
}
section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-prev, section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-prev, section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
  }
}
section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-prev, section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-next {
  background: linear-gradient(88deg, #A5150F, #D20D15);
}
section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-prev svg, section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-next svg {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
section.home-sobre.p-institucional.timeline .owl-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
}
section.home-sobre.p-institucional.mapa {
  background: linear-gradient(3deg, #fff, #F6F6F6);
  padding-top: 115px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.mapa {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
section.home-sobre.p-institucional.mapa iframe {
  width: 100%;
  margin-top: 35px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.mapa iframe {
    margin-top: 15px;
    height: 607px;
  }
}
section.home-sobre.p-institucional.mapa h2 {
  border: 0;
  padding-bottom: 0;
  padding-right: 0;
}
section.home-sobre.p-institucional.mapa strong {
  font-weight: 500;
}
section.home-sobre.p-institucional.mapa h2, section.home-sobre.p-institucional.mapa p {
  text-align: center;
  color: black;
}
section.home-sobre.p-institucional.mapa p {
  padding: 0 80px;
}
@media (max-width: 991px) {
  section.home-sobre.p-institucional.mapa p {
    padding: 0;
  }
}
@media (max-width: 991px) {
  section.home-sobre {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
section.home-sobre .bread {
  font-size: 16px;
  color: #A5150F;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0.9rem;
}
@media (max-width: 991px) {
  section.home-sobre .bread {
    font-size: 14px;
    line-height: 20px;
  }
}
section.home-sobre h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 53px;
  text-transform: uppercase;
  padding-bottom: 25px;
  border-bottom: 1px solid black;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  section.home-sobre h2 {
    padding-right: 200px;
  }
  section.home-sobre h2.no-pr {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  section.home-sobre h2 {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}
section.home-sobre h2 b {
  font-weight: 500;
  color: #A5150F;
}
section.home-sobre p {
  font-size: 18px;
  line-height: 27px;
  color: rgb(48, 48, 48);
}
@media (max-width: 991px) {
  section.home-sobre p {
    font-size: 16px;
    line-height: 23px;
  }
}
section.home-sobre .img-sec {
  width: 100%;
  height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.home-sobre video {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sobre section.nosso-legado {
  padding-top: 80px;
  padding-bottom: 60px;
  background: #fff;
  margin-top: 40px;
}
section.home-sobre section.nosso-legado.p-institucional {
  padding-top: 40px;
  padding-bottom: 80px;
}
section.home-sobre section.nosso-legado.p-institucional p {
  text-align: center;
}
section.home-sobre section.nosso-legado.p-institucional span.number {
  display: block;
  text-align: center;
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado.p-institucional {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
section.home-sobre section.nosso-legado h2.border-none {
  border: 0;
  padding-bottom: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado h2.border-none {
    text-align: left;
  }
}
section.home-sobre section.nosso-legado p.desc {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  padding: 0 100px;
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado p.desc {
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    padding: 0;
  }
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.home-sobre section.nosso-legado span.number {
  font-size: 53px;
  line-height: 100%;
  color: #A5150F;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado span.number {
    font-size: 28px;
  }
}
section.home-sobre section.nosso-legado p {
  font-size: 20px;
  line-height: 50px;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section.home-sobre section.nosso-legado p {
    font-size: 15px;
    line-height: 21px;
  }
}
section.home-sobre section.nosso-legado h3 {
  color: #A5150F;
  font-size: 22px;
  line-height: 50px;
  margin-bottom: 10px;
  font-weight: 500;
}
section.home-sobre .missao {
  padding-top: 50px;
}
section.home-sobre .missao.p-institucional {
  padding-bottom: 60px;
  padding-top: 60px;
}
@media (max-width: 991px) {
  section.home-sobre .missao.p-institucional {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991px) {
  section.home-sobre .missao {
    padding-top: 40px;
  }
}
section.home-sobre .missao img {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
  animation: softpulse 3s infinite;
}
@media (max-width: 991px) {
  section.home-sobre .missao img {
    width: 35px;
    margin-bottom: 5px;
  }
}
section.home-sobre .missao p {
  font-size: 20px;
  color: black;
  margin-bottom: 0;
  padding-right: 30px;
}
@media (max-width: 991px) {
  section.home-sobre .missao p {
    font-size: 18px;
    line-height: 40px;
    padding-right: 0;
  }
}
section.home-sobre .missao h3 {
  color: #A5150F;
  font-size: 22px;
  line-height: 50px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.home-sobre .missao h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: 5px;
  }
}
section.home-sobre .missao p {
  line-height: 140%;
  font-size: 16px;
  color: rgb(48, 48, 48);
}
@media (max-width: 991px) {
  section.home-sobre .missao p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
section.home-sobre .owl-home-galeria-sobre .owl-stage {
  margin: auto;
}
section.home-sobre .owl-home-galeria-sobre .owl-item img {
  width: 100%;
  height: 253px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sobre .owl-home-galeria-sobre .owl-nav {
  position: absolute;
  top: calc(50% - 15px);
  width: 93%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  left: 0;
  right: 0;
}
section.home-sobre .owl-home-galeria-sobre .owl-nav .owl-prev svg, section.home-sobre .owl-home-galeria-sobre .owl-nav .owl-next svg {
  width: 25px;
  height: 25px;
  fill: hsla(0, 0%, 93.3%, 0.9);
}
section.home-sobre .owl-home-galeria-sobre .owl-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;
}
section.home-sobre .owl-home-galeria-sobre .owl-dots .owl-dot {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  width: 6px;
  height: 6px;
  margin: 0 5px;
}
section.home-sobre .owl-home-galeria-sobre .owl-dots .owl-dot.active {
  background: black;
}
section.home-sobre .btn-sobre {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #D3D3D3;
  color: #4b4b4b;
  transition: 0.6s;
  display: table;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  section.home-sobre .btn-sobre {
    /* position: absolute;
     top: 210px;
     right: 217px;
     padding: 10px 33px;*/
    margin: 0 auto;
    width: 50%;
  }
}
@media (max-width: 991px) {
  section.home-sobre .btn-sobre {
    width: 100%;
  }
}
section.home-sobre .btn-sobre:hover {
  background-color: #A5150F;
  color: white;
}

section.home-insta {
  padding-top: 100px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  section.home-insta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.home-insta .bread {
  font-size: 17px;
  line-height: 26px;
  color: #A5150F;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 991px) {
  section.home-insta .bread {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
section.home-insta h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.home-insta h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
section.home-insta h2 b {
  font-weight: 500;
  color: #A5150F;
}
section.home-insta p {
  font-size: 16px;
}
@media (max-width: 991px) {
  section.home-insta p {
    font-size: 15px;
  }
}
section.home-insta .box {
  width: 100%;
  position: relative;
  display: block;
  height: 500px;
  max-width: 436px;
  margin: 0 auto;
}
section.home-insta .box:hover span {
  visibility: visible;
  opacity: 1;
}
section.home-insta .box .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  section.home-insta .box .bg {
    -o-object-position: left;
       object-position: left;
  }
}
section.home-insta .box span {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: 0.5s;
  color: white;
  font-size: 19px;
  text-align: center;
}
section.home-insta section.mini-banner-destaque {
  width: 100%;
  background: linear-gradient(45deg, #280000, #903849);
  margin-top: 115px;
}
@media (max-width: 991px) {
  section.home-insta section.mini-banner-destaque {
    margin-top: 50px;
    height: unset;
  }
  section.home-insta section.mini-banner-destaque .btn-link {
    border-radius: 5px;
  }
}
section.home-insta section.mini-banner-destaque .bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.home-insta section.mini-banner-destaque .bg {
    height: 261px;
  }
}
@media (min-width: 992px) {
  section.home-insta section.mini-banner-destaque a {
    transition: 0.6s;
  }
  section.home-insta section.mini-banner-destaque a:hover {
    opacity: 0.85;
  }
}
section.home-insta section.mini-banner-destaque .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
@media (max-width: 991px) {
  section.home-insta section.mini-banner-destaque .content {
    padding-top: 40px;
    padding-bottom: 50px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
section.home-insta section.mini-banner-destaque .content span {
  color: white;
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.home-insta section.mini-banner-destaque .content span {
    display: block;
    margin-bottom: 30px;
  }
}

/*sobre*/
section.sobre-video {
  padding-top: 120px;
}
@media (max-width: 991px) {
  section.sobre-video {
    padding-top: 40px;
  }
}
section.sobre-video h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  padding: 0 100px;
  color: black;
}
@media (max-width: 991px) {
  section.sobre-video h2 {
    font-size: 22px;
    line-height: 26px;
    padding: 0;
    margin-bottom: 15px;
  }
}
section.sobre-video h2 b {
  color: #A5150F;
  font-weight: 500;
}
section.sobre-video p {
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  padding: 0 100px;
  color: black;
}
@media (max-width: 991px) {
  section.sobre-video p {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }
}
section.sobre-video video {
  margin-top: 30px;
  width: 100%;
  height: 759px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.sobre-video video {
    height: 250px;
    margin-top: 10px;
  }
}

section.sobre-skyline {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  section.sobre-skyline {
    padding-bottom: 30px;
  }
}
section.sobre-skyline .banner {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.sobre-skyline .banner {
    min-height: 180px;
  }
}
section.sobre-skyline p {
  font-size: 18px;
  line-height: 27px;
  color: black;
  font-weight: 400;
  text-align: center;
  margin-top: 60px;
  padding: 0 100px;
}
@media (max-width: 991px) {
  section.sobre-skyline p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 30px;
    padding: 0;
    text-align: center;
  }
}

section.sobre-diferenciais {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  section.sobre-diferenciais {
    padding-bottom: 55px;
  }
}
section.sobre-diferenciais h2, section.sobre-diferenciais p {
  text-align: center;
}
section.sobre-diferenciais .bread {
  font-size: 16px;
  color: #A5150F;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .bread {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
section.sobre-diferenciais h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 53px;
  text-transform: uppercase;
  padding-bottom: 35px;
  border-bottom: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  section.sobre-diferenciais h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
section.sobre-diferenciais h2 b {
  font-weight: 500;
  color: #A5150F;
}
section.sobre-diferenciais p {
  font-size: 18px;
  line-height: 27px;
  color: rgb(48, 48, 48);
  margin-bottom: 60px;
  padding: 0 100px;
}
@media (max-width: 991px) {
  section.sobre-diferenciais p {
    font-size: 15px;
    line-height: 21px;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}
section.sobre-diferenciais .banner {
  margin-bottom: 100px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 800px;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .banner {
    min-height: 180px;
    margin-bottom: 50px;
  }
}
section.sobre-diferenciais .box {
  background-color: #fafafa;
  width: 100%;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 30px;
  transition: 0.6s;
  position: relative;
  overflow: hidden;
  min-height: 226px;
  border-radius: 100%;
  border: 2px solid #D20D15;
  max-width: 226px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .box {
    padding: 20px;
    min-height: 0;
    min-height: 140px;
    max-width: 140px;
    margin-bottom: 5px;
  }
}
section.sobre-diferenciais .box:after {
  content: "";
  content: "";
  background: linear-gradient(348deg, #b01612, #D20D15);
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  z-index: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(290deg);
  top: -14px;
  right: -10px;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .box:after {
    width: 35px;
    height: 35px;
  }
}
section.sobre-diferenciais .box:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
section.sobre-diferenciais .box h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #A5150F;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .box h3 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 10px;
  }
}
section.sobre-diferenciais .box .desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .box .desc {
    font-size: 14px;
    line-height: 18px;
  }
}
section.sobre-diferenciais .box .icone svg, section.sobre-diferenciais .box .icone img {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.sobre-diferenciais .box .icone svg, section.sobre-diferenciais .box .icone img {
    width: 25px;
    height: 25px;
    margin-bottom: 10px;
  }
}
section.sobre-diferenciais .box .icone h3 {
  margin-bottom: 1rem;
}

/*empreendimentos*/
section.empreendimentos-header {
  width: 100%;
  height: 945px;
  position: relative;
}
@media (max-width: 991px) {
  section.empreendimentos-header {
    position: relative;
    height: unset;
  }
  section.empreendimentos-header:after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 130px;
    background: linear-gradient(180deg, black, transparent);
    z-index: -1;
    opacity: 0.9;
    display: block;
  }
}
section.empreendimentos-header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  animation: zoominOut 40s ease-in infinite;
}
section.empreendimentos-header img.logo-header {
  width: 159px;
  top: 35px;
  position: absolute;
}
@media (max-width: 991px) {
  section.empreendimentos-header img.logo-header {
    width: 140px;
    margin-left: 20px;
    margin-top: -5px;
  }
  section.empreendimentos-header img.logo-header a {
    position: relative;
  }
}
section.empreendimentos-header .box {
  background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.8), transparent);
  height: 100%;
  width: 500px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding-top: 46px;
  padding-bottom: 49px;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box {
    width: 100%;
    padding-top: 100px;
    background: unset;
    box-shadow: unset;
  }
  section.empreendimentos-header .box:before {
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    z-index: -1;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(0deg, black, rgba(0, 0, 0, 0.5), transparent);
  }
  section.empreendimentos-header .box .content {
    padding-bottom: 15px;
    padding-top: 35px;
  }
}
section.empreendimentos-header .box .logo {
  width: 263px;
  height: 263px;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .logo {
    width: 200px;
    height: unset;
    height: 115px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.empreendimentos-header .box .logo.filter-invert {
  filter: invert(1);
}
section.empreendimentos-header .box .heading {
  margin-top: 30px;
  text-align: center;
  color: white;
}
section.empreendimentos-header .box .heading span.tag {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .heading span.tag {
    font-size: 18px;
    font-weight: 300;
  }
}
section.empreendimentos-header .box .heading h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  margin-top: 12px;
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .heading h1 {
    font-size: 31px;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
}
section.empreendimentos-header .box .heading h1:after {
  content: "";
  width: 50%;
  position: absolute;
  bottom: -32px;
  height: 1px;
  background: white;
  left: 0;
  margin: 0 auto;
  right: 0;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .heading h1:after {
    display: none;
  }
}
section.empreendimentos-header .box .address {
  text-align: center;
  color: white;
  margin-bottom: 50px;
  display: block;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .address {
    margin-bottom: 20px;
  }
}
section.empreendimentos-header .box .address span {
  display: block;
}
section.empreendimentos-header .box .address .line-1 {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .address .line-1 {
    font-size: 12px;
  }
}
section.empreendimentos-header .box .address .line-2 {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .address .line-2 {
    font-size: 14px;
  }
}
section.empreendimentos-header .box .chamariz {
  color: white;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  display: block;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .chamariz {
    font-size: 14px;
  }
}
section.empreendimentos-header .box .icones {
  width: 90%;
  margin: auto;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .icones {
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
section.empreendimentos-header .box .icones div {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .icones div {
    width: 100%;
    margin-bottom: 10px;
    gap: 5px;
  }
}
section.empreendimentos-header .box .icones div img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .icones div img {
    width: 18px;
    margin: auto;
  }
}
section.empreendimentos-header .box .icones div span {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: white;
}
@media (max-width: 991px) {
  section.empreendimentos-header .box .icones div span {
    font-size: 13px;
    line-height: 150%;
  }
}
section.empreendimentos-header .box .cta-red {
  width: 90%;
  margin: 0 auto;
  background: #D20D15;
  color: white;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-weight: 500px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 47px;
  transition: 0.4s;
}
section.empreendimentos-header .box .cta-red:hover {
  background: #A5150F;
}

section.empreendimentos-ficha {
  background: linear-gradient(180deg, #fff, #F5F5F5);
  padding-top: 108px;
  padding-bottom: 108px;
}
section.empreendimentos-ficha .place-content-end {
  place-content: end;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
section.empreendimentos-ficha img.destaque {
  width: 100%;
  border: 8px solid #f5f5f5;
  max-width: 435px;
  display: block;
  margin-top: 25px;
  height: 661px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha img.destaque {
    max-width: 500px;
    height: 577px;
    -o-object-fit: cover;
    object-fit: cover;
    border-width: 5px;
    margin: 0 auto;
    margin-top: 20px;
    border-color: white;
  }
}
section.empreendimentos-ficha .left span.tag {
  font-size: 16px;
  color: #A5150F;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left span.tag {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
  }
}
section.empreendimentos-ficha .left h2 {
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 15px;
    line-height: 150%;
  }
}
section.empreendimentos-ficha .left h2:before {
  position: absolute;
  content: "";
  background: black;
  height: 1px;
  bottom: 0px;
  left: 0;
  width: 90%;
}
section.empreendimentos-ficha .left h2 strong {
  color: #A5150F;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left h2 strong {
    display: block;
  }
}
section.empreendimentos-ficha .left p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left p {
    font-size: 15px;
    line-height: 150%;
    margin-bottom: 10px;
    text-align: unset;
  }
}
section.empreendimentos-ficha .left ul {
  margin-top: 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left ul {
    margin-top: 20px;
  }
}
section.empreendimentos-ficha .left ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: rgb(48, 48, 48);
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left ul li {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 5px;
  }
}
section.empreendimentos-ficha .left ul li span {
  display: table;
  border-radius: 100%;
  width: 19px;
  height: 19px;
  background: #fff;
  margin-right: 10px;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left ul li span {
    transform: scale(0.95);
  }
}
section.empreendimentos-ficha .left ul li span svg {
  fill: #A5150F;
}
section.empreendimentos-ficha .left .ver-ficha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 16px;
  margin-top: 40px;
  color: black;
  font-weight: 500;
  transition: 0.6s;
}
section.empreendimentos-ficha .left .ver-ficha:hover {
  color: #A5150F;
}
@media (max-width: 991px) {
  section.empreendimentos-ficha .left .ver-ficha {
    gap: 5px;
    font-size: 15px;
    margin-top: 25px;
    float: right;
  }
}
section.empreendimentos-ficha .left .ver-ficha svg {
  width: 16px;
}

section.empreendimentos-video {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  section.empreendimentos-video {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
section.empreendimentos-video h2 {
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 55px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 991px) {
  section.empreendimentos-video h2 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 20px;
  }
}
section.empreendimentos-video h2 strong {
  color: #A5150F;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.empreendimentos-video h2 strong {
    display: block;
  }
}
section.empreendimentos-video p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  padding: 0 40px;
}
@media (max-width: 991px) {
  section.empreendimentos-video p {
    padding: 0 10px;
    font-size: 16px;
    line-height: 150%;
    text-wrap: pretty;
  }
}
section.empreendimentos-video .menu {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 55px;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  section.empreendimentos-video .menu {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 15px;
    justify-content: center;
  }
}
section.empreendimentos-video .menu label {
  border: 0;
  background: transparent;
  border-bottom: 1px solid black;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.empreendimentos-video .menu label {
    font-size: 14px;
    line-height: 25px;
    padding: 7px 7px;
    margin-bottom: 10px;
    margin-right: 5px;
  }
}
section.empreendimentos-video .menu label:hover {
  color: #A5150F;
}
section.empreendimentos-video .menu label.active {
  color: #A5150F;
  border-color: #A5150F;
  border-width: 2px;
  margin-top: -1px;
  font-weight: 600;
}
section.empreendimentos-video .videos .video-box {
  display: none;
}
section.empreendimentos-video .videos .video-box.active {
  display: block;
  animation: fadeIn 1s;
}
@media (max-width: 991px) {
  section.empreendimentos-video .videos .video-box iframe {
    height: 300px;
  }
}

section.empreendimentos-principais-espacos {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}
section.empreendimentos-principais-espacos.ambientes {
  padding-top: 160px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos.ambientes {
    padding-top: 70px;
  }
}
section.empreendimentos-principais-espacos.ambientes h2 {
  max-width: 930px;
  margin: auto;
  margin-bottom: 20px;
  text-wrap: pretty;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos.ambientes h2 strong {
    display: initial;
  }
}
section.empreendimentos-principais-espacos.ambientes p {
  max-width: 788px;
  margin: auto;
}
section.empreendimentos-principais-espacos:before {
  content: "";
  position: absolute;
  left: 0;
  top: 115px;
  display: block;
  right: 0;
  margin: auto;
  height: 1px;
  width: 38%;
  background: black;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos:before {
    top: 35px;
  }
}
section.empreendimentos-principais-espacos h2 {
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 45px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos h2 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 20px;
  }
}
section.empreendimentos-principais-espacos h2 strong {
  color: #A5150F;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos h2 strong {
    display: block;
  }
}
section.empreendimentos-principais-espacos p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  padding: 0 40px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos p {
    font-size: 16px;
    line-height: 150%;
    padding: 0 10px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel {
  margin-top: 35px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel {
    margin-top: 25px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .item {
  max-width: 684px;
  display: block;
  margin: 0 auto;
}
section.empreendimentos-principais-espacos .owl-carousel .item img {
  height: 451px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .item img {
    height: 250px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev, section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 43%;
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 100%;
  transition: 0.6s;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev, section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next {
    transform: scale(0.8);
    top: 37%;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev:hover, section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next:hover {
  background: #A5150F;
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev:hover svg, section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next:hover svg {
  stroke: #fff;
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev svg, section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next svg {
  transition: 0.4s;
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: rgb(71, 85, 105);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next {
  right: -20px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-next {
    right: 5px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev {
  left: -20px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .owl-nav .owl-prev {
    left: 5px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .owl-dots {
    margin-top: 15px;
    gap: 4px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-dots .owl-dot {
  background: #ddd;
  width: 25px;
  height: 6px;
  display: block;
  border-radius: 3px;
  transition: 0.5s;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .owl-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 4px;
  }
}
section.empreendimentos-principais-espacos .owl-carousel .owl-dots .owl-dot.active, section.empreendimentos-principais-espacos .owl-carousel .owl-dots .owl-dot:hover {
  background: #A5150F;
}
section.empreendimentos-principais-espacos .item {
  cursor: grab;
  transition: 0.5s;
}
section.empreendimentos-principais-espacos .item:hover {
  opacity: 0.85;
}
section.empreendimentos-principais-espacos .item span {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: black;
  display: block;
  padding: 5px;
}
@media (max-width: 991px) {
  section.empreendimentos-principais-espacos .item span {
    font-size: 15px;
    line-height: 150%;
  }
}

section.empreendimentos-areas-lazer {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  section.empreendimentos-areas-lazer.fs-minor-mobile .item span {
    font-size: 14px;
  }
  section.empreendimentos-areas-lazer .hide-mobile-js-elem1 {
    transition: 1s;
    height: 0;
    opacity: 0;
  }
}
section.empreendimentos-areas-lazer h2 {
  font-size: 30px;
  line-height: 56px;
  margin: auto;
  margin-bottom: 65px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer h2 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 40px;
    padding-bottom: 15px;
  }
}
section.empreendimentos-areas-lazer h2:before {
  position: absolute;
  content: "";
  background: black;
  height: 1px;
  bottom: 0px;
  left: -10%;
  width: 120%;
  margin: 0 auto;
}
section.empreendimentos-areas-lazer h2 strong {
  color: #A5150F;
  font-weight: 500;
}
section.empreendimentos-areas-lazer .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer .item {
    gap: 10px;
    margin-bottom: 35px;
  }
}
section.empreendimentos-areas-lazer .item:hover img {
  transform: translateY(-9px);
}
section.empreendimentos-areas-lazer .item img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.6s;
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer .item img {
    width: 30px;
    height: 30px;
  }
}
section.empreendimentos-areas-lazer .item span {
  font-size: 16px;
  line-height: 19px;
  color: black;
  display: block;
  font-weight: 300;
  padding: 0 20px;
  text-wrap: pretty;
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer .item span {
    font-size: 15px;
    line-height: 135%;
    padding: 0px;
  }
}
@media (min-width: 992px) {
  section.empreendimentos-areas-lazer .row.adapt-col-lg-2 .col-lg-2 {
    width: 20%;
  }
}
@media (max-width: 991px) {
  section.empreendimentos-areas-lazer .row.adapt-col-lg-2 .col-lg-2 {
    place-content: center;
  }
}
section.empreendimentos-areas-lazer .btn-more {
  padding: 6px 25px;
  display: table;
  margin: 0 auto;
  background-color: #A5150F;
  color: white;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}

section.empreendimentos-padrao-qualidade {
  padding-top: 80px;
  background-color: #f5f5f5;
}
@media (max-width: 991px) {
  section.empreendimentos-padrao-qualidade {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
section.empreendimentos-padrao-qualidade h2 {
  font-size: 39px;
  line-height: 56px;
  margin: auto;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid black;
  max-width: 500px;
  margin: 0;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  section.empreendimentos-padrao-qualidade h2 {
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 150%;
  }
}
section.empreendimentos-padrao-qualidade h2 strong {
  color: #A5150F;
  font-weight: 500;
  display: block;
}
section.empreendimentos-padrao-qualidade .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  section.empreendimentos-padrao-qualidade .logo {
    width: 130px;
    margin-bottom: 15px;
  }
}
section.empreendimentos-padrao-qualidade p {
  font-size: 20px;
  line-height: 30px;
  max-width: 905px;
}
@media (max-width: 991px) {
  section.empreendimentos-padrao-qualidade p {
    font-size: 15px;
    line-height: 150%;
  }
}
section.empreendimentos-padrao-qualidade .destaque {
  margin-top: 40px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 800px;
}
@media (max-width: 991px) {
  section.empreendimentos-padrao-qualidade .destaque {
    max-height: 300px;
    margin-top: 15px;
  }
}

section.empreendimentos-plantas {
  padding-top: 110px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
section.empreendimentos-plantas span.tag {
  font-size: 20px;
  color: #A5150F;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas span.tag {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
section.empreendimentos-plantas h2 {
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 150%;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
section.empreendimentos-plantas h2:before {
  position: absolute;
  content: "";
  background: black;
  height: 1px;
  bottom: 0px;
  left: 0;
  width: 60%;
}
section.empreendimentos-plantas h2 strong {
  color: #A5150F;
  font-weight: 500;
}
section.empreendimentos-plantas p {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 150%;
  }
}
section.empreendimentos-plantas .menu {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 55px;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
section.empreendimentos-plantas .menu label {
  border: 0;
  background: transparent;
  border-bottom: 1px solid black;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas .menu label {
    font-size: 14px;
    line-height: 25px;
    padding: 7px 7px;
    margin-bottom: 10px;
    margin-right: 5px;
  }
}
section.empreendimentos-plantas .menu label:hover {
  color: #A5150F;
}
section.empreendimentos-plantas .menu label.active {
  color: #A5150F;
  border-color: #A5150F;
  border-width: 2px;
  margin-top: -1px;
  font-weight: 600;
}
section.empreendimentos-plantas .plantas .plantas-box {
  display: none;
}
section.empreendimentos-plantas .plantas .plantas-box.active {
  display: block;
  animation: fadeIn 1s;
}
section.empreendimentos-plantas .plantas .plantas-box img {
  width: 100%;
  height: 590px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas .plantas .plantas-box img {
    height: 400px;
  }
}
section.empreendimentos-plantas .plantas .plantas-box span {
  display: flex;
  padding: 10px;
  background: #eee;
  text-align: center;
  display: block;
  font-size: 16px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  section.empreendimentos-plantas .plantas .plantas-box span {
    font-size: 14px;
  }
}

section.empreendimentos-bairro-tabs {
  padding-top: 70px;
  padding-bottom: 90px;
  background-color: #fff;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  section.empreendimentos-bairro-tabs iframe {
    height: 400px;
  }
}
section.empreendimentos-bairro-tabs h2 {
  font-size: 39px;
  line-height: 56px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs h2 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}
section.empreendimentos-bairro-tabs h2 strong {
  color: #A5150F;
  font-weight: 500;
  display: block;
}
section.empreendimentos-bairro-tabs p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 22px;
  text-wrap: pretty;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs p {
    font-size: 15px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}
section.empreendimentos-bairro-tabs h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs h4 {
    font-size: 14px;
    line-height: 150%;
  }
}
section.empreendimentos-bairro-tabs .menu {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 55px;
  margin-bottom: 65px;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .menu {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
section.empreendimentos-bairro-tabs .menu label {
  border: 0;
  background: transparent;
  border-bottom: 1px solid black;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .menu label {
    font-size: 14px;
    line-height: 25px;
    padding: 7px 7px;
    margin-bottom: 10px;
    margin-right: 5px;
  }
}
section.empreendimentos-bairro-tabs .menu label:hover {
  color: #A5150F;
}
section.empreendimentos-bairro-tabs .menu label.active {
  color: #A5150F;
  border-color: #A5150F;
  border-width: 2px;
  margin-top: -1px;
  font-weight: 600;
}
section.empreendimentos-bairro-tabs .tabs {
  margin-top: 40px;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs {
    margin-top: 20px;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box {
  display: none;
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.bairro .destaque {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 486px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.bairro .destaque {
    height: 300px;
    border-radius: 5px;
    margin-top: 10px;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.destaques img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.destaques h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.destaques h3 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 5px;
    margin-top: 10px;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.destaques p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.destaques p {
    font-size: 14px;
    line-height: 150%;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.proximidades h5 {
  color: #A5150F;
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.proximidades h5 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.proximidades ul {
    margin-bottom: 0px;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.proximidades li {
  font-size: 17px;
  line-height: 36px;
  color: rgb(46, 46, 46);
}
@media (max-width: 991px) {
  section.empreendimentos-bairro-tabs .tabs .tabs-box.proximidades li {
    font-size: 15px;
    line-height: 150%;
  }
}
section.empreendimentos-bairro-tabs .tabs .tabs-box.active {
  display: block;
  animation: fadeIn 1s;
}

section.empreendimentos-progress {
  padding-bottom: 120px;
  padding-top: 100px;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  section.empreendimentos-progress {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  section.empreendimentos-progress .hide-mobile-js-elem2 {
    transition: 1s;
    height: 0;
    opacity: 0;
  }
}
section.empreendimentos-progress h2 {
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 25px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: auto;
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  section.empreendimentos-progress h2 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }
}
section.empreendimentos-progress h2:before {
  position: absolute;
  content: "";
  background: black;
  height: 1px;
  bottom: 0px;
  left: 0;
  width: 60%;
  right: 0;
  margin: auto;
}
section.empreendimentos-progress h2 strong {
  color: #A5150F;
  font-weight: 500;
}
section.empreendimentos-progress .prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-size: 54px;
  font-weight: 200;
}
section.empreendimentos-progress .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 40px auto auto -25px;
  fill: #ccc;
  animation: scrolldown 1.2s ease-out backwards infinite;
}
section.empreendimentos-progress .progress-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
  max-width: 1180px;
  margin: 0 auto;
  container-type: inline-size;
  resize: horizontal;
}
@media (max-width: 991px) {
  section.empreendimentos-progress .progress-container {
    gap: 0px;
  }
}
section.empreendimentos-progress .progress-item {
  flex: 1;
  flex-basis: calc(50% - 100px);
  max-width: 20%;
}
@media (max-width: 991px) {
  section.empreendimentos-progress .progress-item {
    max-width: 40%;
    margin-bottom: 15px;
    gap: 0;
  }
}
section.empreendimentos-progress .progress-item {
  position: relative;
  padding: clamp(24px, 3.2vw, 48px);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 26px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
section.empreendimentos-progress .progress-item:hover {
  transform: translate3d(0, -6px, 0) scale(1.04);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}
section.empreendimentos-progress .progress-item__inner {
  position: relative;
}
section.empreendimentos-progress .progress-svg {
  width: 100%;
  height: 100%;
}
section.empreendimentos-progress .progress-svg circle {
  stroke-dasharray: 283;
  stroke-width: var(--stroke-width, 8);
}
section.empreendimentos-progress .progress-background {
  fill: none;
  stroke: rgba(170, 170, 170, 0.3);
  stroke-width: 8;
}
section.empreendimentos-progress .progress-bar {
  fill: none;
  stroke: var(--stroke-color, #00ccff);
  stroke-dashoffset: var(--stroke-dashoffset, 283);
  stroke-linecap: round;
  transform-origin: center;
  transform: rotate(var(--start-rotate, -90deg));
  transition: stroke-dashoffset var(--duration, 1.5s) ease-out;
}
section.empreendimentos-progress .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: 200;
}
section.empreendimentos-progress .progress-value {
  font-size: 2rem;
}
section.empreendimentos-progress .progress-title {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 991px) {
  section.empreendimentos-progress .progress-title {
    font-size: 15px;
    margin-top: 10px;
    line-height: 150%;
  }
}
@container (max-width: 991px) {
  section.empreendimentos-progress .progress-item {
    flex-basis: 20%;
  }
}
@container (min-width: 992px) {
  section.empreendimentos-progress .progress-item {
    flex-basis: 20%;
  }
}
@keyframes scrolldown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}
section.empreendimentos-progress .btn-more {
  padding: 6px 25px;
  display: table;
  margin: 0 auto;
  background-color: #A5150F;
  color: white;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -90px;
  position: relative;
}

section.empreendimentos-paisagismo {
  background-color: #eee;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  section.empreendimentos-paisagismo {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
section.empreendimentos-paisagismo .paisagista {
  width: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 230px;
}
section.empreendimentos-paisagismo .projeto {
  width: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 230px;
  padding: 35px;
}
@media (max-width: 991px) {
  section.empreendimentos-paisagismo .projeto, section.empreendimentos-paisagismo .paisagista {
    margin: 0 auto;
    width: 240px;
    height: 140px;
    display: block;
  }
}
section.empreendimentos-paisagismo h4 {
  font-weight: bold;
  text-transform: uppercase;
  color: #424242;
  margin-top: 20px;
  margin-bottom: 35px;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 150%;
}
@media (max-width: 991px) {
  section.empreendimentos-paisagismo h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
  }
}
section.empreendimentos-paisagismo p {
  font-size: 16px;
  line-height: 165%;
  text-wrap: pretty;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  section.empreendimentos-paisagismo p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}
section.empreendimentos-paisagismo .row {
  justify-content: space-between;
}

/*Empreendimento*/
section.empreendimento-search {
  padding-top: 90px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  section.empreendimento-search {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
section.empreendimento-search h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  color: black;
}
@media (max-width: 991px) {
  section.empreendimento-search h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 150%;
  }
}
section.empreendimento-search h2 strong {
  color: #A5150F;
  font-weight: 500;
}
section.empreendimento-search p {
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  max-width: 571px;
  margin: auto;
  display: block;
}
@media (max-width: 991px) {
  section.empreendimento-search p {
    font-size: 16px;
    line-height: 150%;
  }
}
section.empreendimento-search .search-box {
  max-width: 455px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 70px;
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 60px;
  background-color: #f5f5f5;
  padding: 0 25px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  section.empreendimento-search .search-box {
    padding: 0 18px;
    height: 65px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
section.empreendimento-search .search-box .icon {
  min-width: 32px;
  min-height: 32px;
  border-radius: 100%;
  background-color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.empreendimento-search .search-box .icon svg {
  transform: rotate(15deg);
  fill: white;
}
section.empreendimento-search .search-box input {
  width: 100%;
  border-radius: 30px;
  padding-left: 30px;
  border-color: #bbb;
  min-height: 40px;
}
@media (max-width: 991px) {
  section.empreendimento-search .search-box input {
    min-height: 30px;
  }
}
section.empreendimento-search .list-controller {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 15px;
  padding-bottom: 0;
  padding-top: 25px;
}
@media (max-width: 991px) {
  section.empreendimento-search .list-controller {
    margin-bottom: 30px;
  }
}
section.empreendimento-search .list-controller h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  color: black;
}
section.empreendimento-search .list-controller h4 {
  font-size: 16px;
  font-weight: 500;
  color: #A5150F;
  margin-top: 25px;
  margin-bottom: 10px;
}
section.empreendimento-search .list-controller select {
  margin-bottom: 15px;
  border-color: #ccc;
}
section.empreendimento-search .list-controller .group-checkbox {
  display: block;
}
section.empreendimento-search .list-controller .group-checkbox input {
  margin-right: 5px;
  transform: scale(1.2);
  border-color: #fafafa;
  border-radius: 3px;
  margin-left: 2px;
}
section.empreendimento-search .list-controller .group-checkbox label {
  display: block;
  margin-bottom: 10px;
  color: rgb(48, 48, 48);
  font-size: 15px;
}
section.empreendimento-search .listings {
  position: relative;
  min-height: 500px;
}
section.empreendimento-search .listings #overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
section.empreendimento-search .listings .item {
  width: 100%;
  max-width: 500px;
  background-color: #FCFCFC;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  position: relative;
  color: black;
  display: block;
}
section.empreendimento-search .listings .item .bg {
  width: 100%;
  height: 340px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
section.empreendimento-search .listings .item span.status {
  font-size: 16px;
  line-height: 100%;
  color: white;
  position: absolute;
  top: 15px;
  right: 0;
  background-color: black;
  padding: 15px 10px;
}
section.empreendimento-search .listings .item .content {
  padding: 25px 25px;
}
section.empreendimento-search .listings .item .content h3 {
  color: black;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 20px;
  text-transform: uppercase;
}
section.empreendimento-search .listings .item .content h4 {
  font-size: 16px;
  color: #A5150F;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 100%;
}
section.empreendimento-search .listings .item .content span.endereco {
  font-size: 14px;
  line-height: 100%;
  color: black;
  display: block;
  margin-bottom: 20px;
  z-index: 2;
}
section.empreendimento-search .listings .item .content .icones {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 100%;
  margin-top: 25px;
  gap: 20px;
}
section.empreendimento-search .listings .item .content .icones svg, section.empreendimento-search .listings .item .content .icones img {
  filter: invert(1);
  width: 17px;
  height: 17px;
  margin-right: 4px;
}

section.contato-contato .bg-gray {
  background-color: #F5F5F5;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  section.contato-contato .bg-gray {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
section.contato-contato .bg-gray h1 {
  font-size: 40px;
  line-height: 53px;
  text-align: center;
  color: black;
  margin-bottom: 35px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.contato-contato .bg-gray h1 {
    font-size: 22px;
    line-height: 150%;
    margin-bottom: 15px;
  }
}
section.contato-contato .bg-gray p {
  font-size: 17px;
  line-height: 150%;
  color: black;
  text-align: center;
}
@media (max-width: 991px) {
  section.contato-contato .bg-gray p {
    font-size: 16px;
    line-height: 150%;
    padding: 0 10px;
  }
}
section.contato-contato .menu {
  padding-top: 90px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 3.3333333333%;
}
@media (max-width: 991px) {
  section.contato-contato .menu {
    gap: 20px;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
section.contato-contato .menu a {
  display: flex;
  width: 30%;
  margin-bottom: 50px;
  border-bottom: 1px solid #A5150F;
  font-size: 18px;
  line-height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
  transition: 0.6s;
  min-height: 76px;
  border-radius: 5px;
  font-weight: 500;
  gap: 10px;
}
@media (max-width: 991px) {
  section.contato-contato .menu a {
    width: 100%;
    margin-bottom: 0;
    font-size: 16px;
  }
}
section.contato-contato .menu a svg {
  transition: 0.6s;
}
section.contato-contato .menu a:hover {
  background: #A5150F;
  color: white;
  border-color: black;
}
section.contato-contato .menu a:hover svg {
  fill: white;
}

section.contato-form .heading {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F5F5F5;
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  section.contato-form .heading {
    margin-bottom: 50px;
  }
}
section.contato-form .heading h1 {
  font-size: 40px;
  line-height: 53px;
  color: black;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
  padding: 0 20px;
}
@media (max-width: 991px) {
  section.contato-form .heading h1 {
    margin-top: 50px;
    font-size: 24px;
  }
}
section.contato-form .heading h1 strong, section.contato-form .heading h1 b {
  color: #A5150F;
  font-weight: 500;
}
section.contato-form .heading a.exit {
  position: absolute;
  right: 30px;
  top: 30px;
}
section.contato-form .form {
  width: 100%;
  background: #F5F5F5;
  padding: 55px 45px;
  max-width: 665px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  section.contato-form .form {
    padding: 55px 35px;
  }
}
section.contato-form .form p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}
section.contato-form .form label {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: rgb(48, 48, 48);
  margin-top: 30px;
  display: block;
  margin-bottom: 10px;
}
section.contato-form .form input, section.contato-form .form textarea, section.contato-form .form select {
  border: 0;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
}
section.contato-form .form .form-group {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}
@media (max-width: 991px) {
  section.contato-form .form .form-group {
    padding: 0 15px;
  }
}
section.contato-form .form .form-group label {
  font-size: 14px;
  line-height: 24px;
  color: rgb(48, 48, 48);
  font-weight: 400;
  margin: 0;
}
@media (max-width: 991px) {
  section.contato-form .form .form-group label {
    font-size: 12px;
  }
}
section.contato-form .form form {
  max-width: 622px;
  margin: auto;
}
section.contato-form .form button {
  background: black;
  border: 0;
  font-size: 14px;
  color: white;
  border-radius: 22px 22px 22px 22px;
  line-height: 100%;
  width: 75px;
  height: 40px;
  float: right;
  text-align: center;
  clear: both;
  margin-top: 15px;
  transition: 0.3s;
}
section.contato-form .form button:hover {
  transform: scale(0.95);
  background: #A5150F;
}
@media (max-width: 991px) {
  section.contato-form .bottom {
    padding: 20px;
    margin-top: 30px;
  }
}
section.contato-form .bottom .logo {
  width: 125px;
}
section.contato-form .bottom h3 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  margin-top: 17px;
}
section.contato-form .bottom .phone {
  display: flex;
  color: black;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}
section.contato-form .bottom .phone span {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #303030;
  margin-right: 10px;
  border-radius: 100%;
}
section.contato-form .bottom .phone span svg {
  width: 14px;
  height: 14px;
  fill: white;
}
section.contato-form .bottom h4 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0;
}
section.contato-form .bottom span {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
section.contato-form .bottom .redes {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
section.contato-form .bottom .redes a {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
section.contato-form .bottom .redes a:hover {
  background-color: #A5150F;
  transform: translateY(-1px);
}
section.contato-form .bottom .redes svg {
  width: 13px;
  height: 13px;
  filter: invert(1);
  transition: 0.5s;
  margin-left: 0 auto;
}
section.contato-form .place-content-end {
  place-content: end;
}

/* Extras */
#overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #f7f7f2;
}
#overlay.emp {
  z-index: 4;
}
#overlay.is-hide {
  display: none;
}
#overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}
#overlay .cv-spinner.emp {
  padding-top: 180px;
  justify-content: start;
}
#overlay .cv-spinner img {
  width: 250px;
  margin-top: -120px;
}
#overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #B3B1AC solid;
  border-top: 4px #D20D15 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}

.main-menu {
  padding: 0 0 0 2%;
  float: right;
  right: -649px;
  top: 0;
  transition: all 0.3s ease;
  height: 100%;
  width: 649px;
  position: fixed;
  margin: 0;
  background-color: #FFFFFF;
  border-radius: 0;
  z-index: 8;
  overflow: hidden;
}
@media (min-width: 992px) {
  .main-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-menu {
    width: 100%;
    right: -100%;
  }
}
.main-menu span.exit {
  width: 20px;
  display: block;
  position: absolute;
  right: 69px;
  top: 69px;
  transition: 0.5s;
  cursor: pointer;
  display: none;
}
.main-menu span.exit:hover {
  color: #A5150F;
  fill: #A5150F;
}
.main-menu.oppenned {
  right: 0;
}
.main-menu ul {
  margin: 0;
}
.main-menu li {
  display: block;
  list-style: none;
  height: auto;
  margin-left: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 10px;
  border-bottom: 1px solid #f5f5f5;
}
.main-menu li:first-child {
  margin-top: 100px;
}
.main-menu li:hover {
  color: #A5150F;
  cursor: pointer;
}
.main-menu li a {
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  display: block;
  line-height: 52px;
  text-decoration: none;
  color: #111;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .main-menu li a {
    font-size: 16px;
    line-height: 43px;
  }
}
.main-menu li a:hover {
  color: #A5150F;
}

.main-menu-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 10px;
  padding: 0;
  width: 36px;
  height: 36px;
  z-index: 2;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .main-menu-hamburger {
    display: none;
  }
}
.main-menu-hamburger {
  padding: 0;
  margin-top: 0px;
  margin-bottom: 8px;
  transition: background 0.3s;
}
@media (max-width: 991px) {
  .main-menu-hamburger {
    transform: scale(0.6);
  }
}
.main-menu-hamburger:focus {
  outline: none;
}
.main-menu-hamburger span {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background: white;
}
.main-menu-hamburger span:before, .main-menu-hamburger span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}
.main-menu-hamburger span:before {
  top: -9px;
}
.main-menu-hamburger span:after {
  bottom: -9px;
}

.main-menu-hamburger--htx span {
  transition: background 0s 0.3s;
}
.main-menu-hamburger--htx span:before, .main-menu-hamburger--htx span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.main-menu-hamburger--htx span:before {
  transition-property: top, transform;
}
.main-menu-hamburger--htx span:after {
  transition-property: bottom, transform;
}
.main-menu-hamburger--htx.is-active span {
  background: none;
}
.main-menu-hamburger--htx.is-active span:before, .main-menu-hamburger--htx.is-active span:after {
  transition-delay: 0s, 0.3s;
}
.main-menu-hamburger--htx.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.main-menu-hamburger--htx.is-active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

.main-menu-outer {
  position: fixed;
  z-index: 9;
  right: 140px;
  top: 33px;
  background: rgba(1, 1, 1, 0.8);
  width: 112px;
  height: 51px;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  padding-left: 5px;
}
@media (min-width: 992px) {
  .main-menu-outer {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-menu-outer {
    transform: scale(0.8);
    right: 10px;
  }
}
.main-menu-outer span {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 991px) {
  .main-menu-outer span {
    font-size: 15px;
  }
}
.main-menu-outer span.title {
  margin-left: -11px;
}
.main-menu-outer button span {
  width: 24px;
  height: 4px;
  border-radius: 1px;
}
.main-menu-outer button span:after, .main-menu-outer button span:before {
  height: 4px;
  border-radius: 1px;
}

.menu-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  min-height: 56px;
  padding-top: 35px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
  transition: 0.6s;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.menu-desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(93, 91, 84, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}
.menu-desktop.active {
  padding-top: 0;
  min-height: 80px;
  align-items: center;
  justify-content: center;
}
.menu-desktop.active::before {
  transform: translateY(0);
}
.menu-desktop.active .logo img {
  transform: scale(0.8);
}
.menu-desktop.active ul a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.menu-desktop.active ul a:hover {
  color: rgb(255, 255, 255);
}
.menu-desktop .container {
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.menu-desktop ul {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 35px;
  height: 56px;
  align-items: center;
}
.menu-desktop ul a {
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  font-weight: 500;
  /*effect menu animation*/
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  outline: 0;
  padding-bottom: 6px;
  font-size: 16px;
  transition: 0.5s;
}
.menu-desktop ul a:hover {
  background-size: 100% 2px;
}
.menu-desktop div.logo {
  position: absolute;
  left: 0;
}
.menu-desktop img.logo {
  width: 159px;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .menu-desktop img.logo {
    width: 140px;
    margin-left: 10px;
  }
}

p.fw-600 {
  font-weight: 600;
}

.btn-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 49px;
  min-width: 188px;
  display: table;
  height: 49px;
  background: #A5150F;
  color: white;
  text-align: center;
  border: 1px solid white;
  border-radius: 1px;
  transition: 0.4s;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
}
.btn-link:hover {
  background-color: black;
  color: white;
}
.btn-link.h-46 {
  height: 46px;
}
.btn-link.s-12 {
  font-size: 12px;
}
.btn-link.white {
  background: white;
  color: black;
}
.btn-link.white:hover {
  background-color: #A5150F;
  color: white;
}
.btn-link.transparent {
  background: transparent;
  color: black;
  border-color: black;
  padding: 0 30px;
}
.btn-link.transparent:hover {
  background: black;
  color: white;
}
.btn-link.transparent-white {
  background: transparent;
  color: white;
  border-color: white;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .btn-link.transparent-white {
    font-size: 14px;
    padding: 0 20px;
    line-height: 39px;
    height: 39px;
  }
}
.btn-link.transparent-white:hover {
  background: white;
  color: black;
}

section.btns-destaque {
  width: 80px;
  display: block;
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 6;
  right: 0;
  bottom: 25%;
}
section.btns-destaque a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.btns-destaque span {
  display: none;
  color: white;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 992px) {
  section.btns-destaque span {
    display: block;
  }
}
@media (max-width: 992px) {
  section.btns-destaque {
    width: 100%;
    flex-direction: row;
    bottom: 0;
  }
}
section.btns-destaque .txt {
  background: black;
  color: white;
  font-size: 14px;
  padding: 5px;
  display: flex;
  align-items: center;
  min-height: 70px;
  margin-bottom: 0;
  width: 80px;
  padding: 10px;
  line-height: 130%;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.btns-destaque .txt {
    width: 25%;
    height: 100%;
    text-transform: uppercase;
    font-size: 12px;
    background: linear-gradient(348deg, #b01612, #D20D15);
  }
}
section.btns-destaque .box {
  width: 80px;
  height: 51px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (max-width: 991px) {
  section.btns-destaque .box {
    width: 25%;
    height: auto;
  }
}
section.btns-destaque .box svg {
  filter: invert(1);
  width: 20px;
  height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s;
}
@media (max-width: 991px) {
  section.btns-destaque .box svg {
    margin-bottom: 5px;
  }
}
section.btns-destaque .box.phone svg {
  filter: invert(1);
  width: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.btns-destaque .box.wpp {
  background: #23CC62;
}
section.btns-destaque .box.wpp:hover {
  background: #11877A;
}
section.btns-destaque .box:hover {
  background: #A5150F;
}
section.btns-destaque .box:hover svg {
  animation: translateY_loop 1s infinite;
}/*# sourceMappingURL=custom.css.map */