:root {
  --main--black-00: black;
  --main--white: white;
  --radius: 8px;
  --main--orange-00: #f25a1e;
  --main--black-20: #20262e;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--main--black-00);
  color: var(--main--white);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: .8rem;
  font-size: 32px;
  font-weight: 900;
  line-height: 36px;
}

.hero {
  justify-content: center;
  align-items: center;
  min-height: 72vh;
  display: flex;
  position: relative;
}

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.container.is--nav_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.is--footer_container {
  margin-bottom: 2rem;
}

.container.is--container-xl {
  max-width: 1268px;
}

.hero-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-content-container.is--flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero_subheading {
  font-size: 1.3rem;
}

.main-button {
  border-radius: var(--radius);
  background-color: var(--main--orange-00);
  font-size: 1.2rem;
  font-weight: 700;
}

.main-button.is--streched {
  background-color: var(--main--orange-00);
  width: 100%;
}

.main-button.is--streched.is--flat-border {
  text-transform: uppercase;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}

.main-button.is--streched.is--flat-border.is--secondary {
  color: var(--main--black-20);
  text-transform: none;
  background-color: #f5f5f5;
}

.main-button.is--streched.is--flat-border.disabled {
  cursor: not-allowed;
  background-color: #969696;
}

.main-button.is--bigger {
  padding: .6rem 2rem;
  font-size: 2rem;
  font-weight: 900;
}

.flex-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.flex-div.is--horizontal {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
}

.flex-div.is--horizontal.is--streched {
  align-items: stretch;
}

.flex-div.is--custom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  position: relative;
}

.orange-text {
  color: var(--main--orange-00);
}

.orange-text.capitalize {
  text-transform: uppercase;
}

.hero-logo {
  width: 589px;
  height: 100%;
  max-height: 361px;
}

.section {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.section.margin-small {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.content-handler.is--flex {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-direction: column;
  display: flex;
}

.grid-2-col {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2-col._25-75 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: .5fr 1fr;
}

.grid-2-col._25-75.mtb-2 {
  grid-template-columns: .5fr 1fr;
  justify-content: stretch;
  place-items: stretch center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.image-card {
  border-radius: var(--radius);
  width: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.image-card_content {
  margin: 1rem;
  position: relative;
}

.image-card_background-image {
  z-index: -2;
  object-fit: cover;
  min-height: 100%;
  position: absolute;
  inset: 0 0% auto;
}

.image-card_fade {
  z-index: -1;
  background-image: linear-gradient(#0000, #000000a6);
  position: absolute;
  inset: 0%;
}

.image-card_title {
  margin-top: 0;
  margin-bottom: 0;
}

.div-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.form-handler {
  border-radius: var(--radius);
  background-color: var(--main--black-20);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.form-handler.custom--border {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-content {
  margin-top: 1.6rem;
  margin-bottom: 2rem;
}

.form-content.hide {
  display: none;
}

.smaller-text {
  text-align: center;
  font-size: .8rem;
  line-height: 1;
}

.form-input {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  padding: 1.6rem 1rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.form-heading {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 900;
}

.form-heading.bigger {
  font-size: 7rem;
  line-height: 1;
}

.form-heading-content {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-heading-handler {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.6rem;
  display: flex;
}

.section-heading-handler.has--gap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.section-heading {
  color: var(--main--orange-00);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.section-heading.is--bigger {
  color: var(--main--white);
  font-family: Allerdisplay, sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: .8;
}

.section-heading.is--bigger.is--center {
  text-align: center;
  font-size: 2.5rem;
}

.section-heading.is--smaller {
  color: var(--main--white);
  font-family: Allerdisplay, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.div-block-2 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer {
  align-items: center;
  min-height: 35vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.footer-content-handler {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.banner-handler {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  display: flex;
}

.banner {
  border-radius: var(--radius);
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 561px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-handler {
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 40%;
  margin-bottom: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
}

.banner-image-background {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

.banner-fade {
  z-index: -1;
  background-image: linear-gradient(#0000, #000000a6);
  position: absolute;
  inset: 0%;
}

.text-block {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.half-page-form {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  width: 100%;
  max-width: none;
  position: absolute;
}

.div-block-3 {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.empreendimentos-section {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  display: flex;
}

.empreendimento-single-section {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  min-height: 72vh;
  display: grid;
}

.empreendimento-caracteristicas {
  grid-column-gap: 2rem;
  grid-row-gap: .6rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.empreendimento-caracteristicas-single {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  align-items: center;
  display: flex;
}

.icon {
  width: 24px;
  height: 25px;
}

.icon.task {
  width: 20px;
  height: 20.8281px;
}

.empreendimento-title {
  font-size: 4vw;
  font-weight: 900;
  line-height: 1;
}

.div-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-block-2 {
  color: var(--main--orange-00);
  font-size: 2vw;
}

.div-block-5 {
  border-radius: var(--radius);
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-2 {
  object-fit: cover;
  width: 100%;
  max-width: none;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-6 {
  z-index: -1;
  background-color: var(--main--black-20);
  position: absolute;
  inset: 15% -100% 15% -50%;
}

.div-block-7 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.footer-social-links {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #8e8e8e;
  align-items: center;
  display: flex;
}

.image-3 {
  max-width: 62px;
}

.footer-link {
  color: #8f8f8f;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.footer-link:hover {
  color: #e0e0e0;
}

.footer-link.is--highlighted {
  color: var(--main--white);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: underline;
}

.footer-link.is--small-caps {
  text-transform: none;
  text-decoration: none;
}

.image-4 {
  z-index: -2;
  max-height: 150%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-8 {
  z-index: -1;
  background-image: linear-gradient(#0000, #000);
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.link-block {
  color: var(--main--white);
  text-decoration: none;
}

.link-block.custom {
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.navbar-link {
  color: var(--main--black-20);
  text-transform: uppercase;
  padding: 2rem 1rem;
  font-weight: 700;
  line-height: 1;
}

.navbar {
  background-color: var(--main--white);
}

.navbar-logo {
  max-height: 40px;
}

.main-footer {
  color: gray;
  background-color: #1c2731;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .8rem;
}

.main-footer-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.main-footer-stripe {
  background-color: var(--main--orange-00);
  color: var(--main--white);
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: .8rem;
  display: flex;
}

.main-footer-logo {
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-label {
  color: var(--main--white);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.footer-block {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-block.is--no-spacing {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.div-block-10 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.div-block-11.hide {
  display: none;
}

.is--white_body {
  background-color: var(--main--white);
  color: var(--main--black-20);
  font-weight: 300;
}

.is--white_body.full-height {
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.calculator-container {
  z-index: 2;
  background-color: #fff;
  width: 60%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 7px 15px #0003;
}

.form-wrap {
  background-image: url('../images/marcodes_bg.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding-bottom: 130px;
  display: flex;
}

.calculator-buttons-handler {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.calculator-buttons-handler.pt-1 {
  margin-top: 1.6rem;
}

.calculator-buttons-handler.is--no_gap {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
}

.calculator-form-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.calculator-label {
  color: #444;
  margin-bottom: 0;
  font-weight: 300;
}

.calculator-label-handler {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.calculator-label-icon-information {
  justify-content: flex-end;
  align-items: center;
  width: 24px;
  height: 24px;
  display: none;
}

.calculator-custom-input-handler {
  border: 1px solid #ceced0;
  align-items: center;
  display: flex;
}

.calculator-custom-input-interactive {
  color: var(--main--black-20);
  border: 1px #000;
  margin-bottom: 0;
}

.calculator-money-digit {
  color: #6e6e6e;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.calculator-input-divider {
  background-color: #ceced0;
  width: 2px;
  height: 16px;
}

.calculator-dropwdown {
  background-color: #f5f5f5;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .8rem;
  display: flex;
}

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

.body-background {
  background-image: url('../images/Hero-BW-MC-celMC-1.webp');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
}

.image-5 {
  width: 644px;
  height: 100%;
  max-height: 533px;
}

.image-6 {
  width: 184px;
  height: 100%;
  max-height: 56px;
}

.orange-banner {
  background-color: var(--main--orange-00);
  color: var(--main--white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.div-block-13 {
  background-color: var(--main--white);
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.div-block-14 {
  background-color: #f5f5f5;
}

.pricing-table {
  max-height: 800px;
  position: relative;
  overflow: auto;
}

.pricing-table-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--main--white);
  border-left: 1px solid #cfd9de;
  border-right: 1px solid #cfd9de;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: .6rem;
  padding-bottom: .6rem;
  display: grid;
}

.pricing-table-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #20262e;
  text-transform: uppercase;
  background-color: #cfd9de;
  border: 1px solid #cfd9de;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: .6rem;
  padding-bottom: .6rem;
  font-size: .8rem;
  font-weight: 400;
  display: grid;
  position: sticky;
  top: 0;
}

.tab-link {
  background-color: var(--main--white);
  border-top: 1px solid #cfd9de;
  border-left: 1px solid #cfd9de;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 400;
}

.tab-link.w--current {
  border-bottom: 2px solid var(--main--orange-00);
  background-color: #cfd9de82;
}

.tab-link.custom {
  border-left-style: none;
  border-right: 1px solid #cfd9de;
}

.tabs-menu {
  display: flex;
}

.div-block-15 {
  background-color: #cfd9de;
  width: 100%;
  height: 1px;
}

.div-block-16 {
  margin-top: 2rem;
}

.pricing-result-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--main--white);
  text-transform: uppercase;
  border: 1px solid #cfd9de;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2rem;
  padding: 2rem;
  font-weight: 400;
  display: grid;
  position: relative;
}

.pricing-result-div.is--flex {
  text-transform: none;
  display: block;
}

.pricing-result-div.is--overflow_hidden {
  display: block;
  overflow: hidden;
}

.pricing-result-div.is--overflow_hidden.hide {
  display: none;
}

.big-text {
  color: var(--main--orange-00);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: .8;
}

.pricing-result---empreendimentos {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  color: var(--main--black-20);
  text-transform: none;
  flex: none;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.predio-avatar {
  object-fit: cover;
  object-position: 50% 90%;
  width: 100px;
  height: 64px;
}

.div-block-17 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding-bottom: 1rem;
  display: flex;
  overflow: auto;
}

.div-block-18 {
  flex: 1;
}

.link-block-2 {
  flex: none;
  align-self: center;
  text-decoration: none;
}

.link {
  color: var(--main--orange-00);
  margin-bottom: 1rem;
  font-size: .8rem;
  display: block;
}

.form-block {
  margin-top: 1.6rem;
}

.hide {
  display: none;
}

.text-wrap {
  color: var(--main--white);
  width: 60%;
  max-width: 640px;
  margin: 66px auto;
  font-family: Montserrat, sans-serif;
}

.sub-heading {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 40px;
}

.form-heading {
  text-transform: none;
  max-width: 460px;
  font-size: 2.125rem;
  font-weight: 400;
}

.orange-span {
  color: var(--main--orange-00);
}

.no-data-text-wrap {
  z-index: 10;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.lead-form-wrap {
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.lead-form-wrap.hide {
  display: none;
}

.text-block-4 {
  color: red;
  font-size: .8rem;
}

.main-button-2 {
  background-color: #f25a1e;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.main-button-2.is--streched {
  background-color: #f25a1e;
  width: 100%;
}

.main-button-2.is--streched.is--flat-border {
  text-transform: uppercase;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}

.main-button-2.is--streched.is--flat-border.disabled {
  cursor: not-allowed;
  background-color: #969696;
}

.main-button-2.is--streched.is--flat-border.is--secondary {
  color: #20262e;
  text-transform: none;
  background-color: #f5f5f5;
}

.orange-span-2 {
  color: #f25a1e;
}

.text-block-5 {
  color: red;
  font-size: .8rem;
}

.calculator-custom-input-interactive-2 {
  color: #20262e;
  border: 1px #000;
  margin-bottom: 0;
}

.calculator-custom-input-interactive-2.bordered {
  border-style: solid;
  border-color: #ceced0;
}

.div-block-19 {
  background-color: #fff;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.close-modal {
  position: absolute;
  inset: 0%;
}

.div-block-20 {
  max-width: 100%;
}

.main-button-3 {
  background-color: var(--main--orange-00);
  text-transform: uppercase;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
}

.main-button-3.is--streched {
  background-color: var(--main--orange-00);
  width: 100%;
}

.main-button-3.is--streched.is--flat-border {
  text-transform: uppercase;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}

.main-button-3.is--streched.is--flat-border.is--secondary {
  color: var(--main--black-20);
  text-transform: none;
  background-color: #f5f5f5;
}

.main-button-3.is--streched.is--flat-border.disabled {
  cursor: not-allowed;
  background-color: #969696;
}

.main-button-3.is--bigger {
  padding: .6rem 2rem;
  font-size: 2rem;
  font-weight: 900;
}

.hero-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.lp-form-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid #dde2e5;
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  max-width: 1872px;
  margin-bottom: 0;
  padding: 43px 37px;
  display: flex;
}

.lp-form-block.small {
  width: auto;
}

.lp-heading {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 28.8px;
}

.lp-input {
  color: #17222c;
  background-color: #fff;
  border: 1px solid #d4d4d6;
  border-radius: 1px;
  height: 52px;
  margin-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.lp-input::placeholder {
  color: #17222c;
  font-weight: 400;
  line-height: 19.2px;
}

.lp-form {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  flex-flow: column;
  display: flex;
}

.lp-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.form-button {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #f25a1e;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .container {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .main-button.is--bigger {
    font-size: 5vw;
  }

  .flex-div.is--horizontal.is--streched {
    flex-direction: column;
  }

  .grid-2-col._25-75.mtb-2 {
    flex-direction: column;
    display: flex;
  }

  .section-heading {
    font-size: 4vw;
  }

  .section-heading.is--bigger {
    font-size: 8vw;
  }

  .footer {
    justify-content: center;
  }

  .banner-handler {
    flex-direction: column;
    align-items: center;
  }

  .banner {
    width: auto;
    max-width: 50%;
  }

  .half-page-form {
    display: block;
  }

  .div-block-3 {
    display: none;
  }

  .empreendimento-single-section {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .empreendimento-caracteristicas {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .empreendimento-title {
    font-size: 10vw;
  }

  .text-block-2 {
    font-size: 4vw;
  }

  .div-block-5 {
    min-height: 50vh;
  }

  .div-block-6 {
    display: none;
  }

  .navbar {
    padding: 1rem 2rem;
  }

  .menu-button {
    color: var(--main--black-00);
  }

  .main-footer-content {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .main-footer-stripe {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .div-block-13, .div-block-19 {
    position: static;
  }

  .main-button-3.is--bigger {
    font-size: 5vw;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .container.is--custom-margin {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding-left: 8px;
    padding-right: 8px;
  }

  .grid-2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 224px;
  }

  .div-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .form-handler {
    border-radius: 0;
  }

  .form-heading {
    font-size: 5vw;
  }

  .form-heading.bigger {
    font-size: 20.5vw;
  }

  .section-heading {
    text-align: center;
    font-size: 6vw;
  }

  .section-heading.is--bigger {
    font-size: 8vw;
  }

  .banner {
    max-width: 100%;
    height: 65vh;
  }

  .div-block-3 {
    display: none;
  }

  .empreendimentos-section {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-block-2 {
    font-size: 6vw;
  }

  .footer-social-links {
    flex-direction: column;
  }

  .footer-link {
    text-align: center;
    align-self: center;
  }

  .calculator-container {
    width: 100%;
  }

  .form-wrap {
    background-position: 0 0;
  }

  .calculator-form-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .calculator-label, .calculator-money-digit {
    font-size: .8rem;
  }

  .div-block-13 {
    padding: 1rem;
  }

  .pricing-table {
    width: 300%;
    overflow: visible;
  }

  .pricing-table-header {
    top: 1px;
  }

  .pricing-result-div {
    flex-direction: column;
    padding: 1rem;
    display: flex;
  }

  .tab-pane-tab-1, .tab-pane-tab-2 {
    overflow: auto;
  }

  .sub-heading {
    font-size: 4vw;
  }

  .form-heading {
    line-height: 28px;
  }

  .div-block-19 {
    padding: 1rem;
  }
}

#w-node-_745e64d9-6ffe-8ce4-7028-c0e1608db3e3-e60065af {
  place-self: center;
}

#w-node-a0df472e-804d-cb8a-8417-a284ef1d774f-e60065af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_4fb4ac3f-c8c0-50a3-a1b3-bf1ea23ad470-e60065af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c3d75dc9-8d38-5272-428a-d4abe9d6f840-e60065af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-c3d75dc9-8d38-5272-428a-d4abe9d6f842-e60065af, #w-node-_711d1f95-f0e7-7288-3abf-fcc9ff6c782a-e60065af, #w-node-_3b26ff24-26cb-7ba8-09e0-04877980391d-e60065af, #w-node-cbf824d5-aa41-5d6c-12c5-41a0fd3b3b7a-fd3b3b79, #w-node-cbf824d5-aa41-5d6c-12c5-41a0fd3b3b7c-fd3b3b79, #w-node-_11369696-b4df-8521-cccb-eb4e2827996b-3fab8a67, #w-node-_11369696-b4df-8521-cccb-eb4e28279977-3fab8a67, #w-node-_11369696-b4df-8521-cccb-eb4e28279985-3fab8a67, #w-node-_11369696-b4df-8521-cccb-eb4e28279990-3fab8a67, #w-node-_7f41d1c7-5118-e491-1ae2-8035c4dad577-3fab8a67, #w-node-_00b34389-3ee2-97d8-b586-4c4e70269bd7-3fab8a67, #w-node-d7dc95e7-0ec7-94df-7fa4-69e79e72ef25-3fab8a67, #w-node-_29d3705a-922d-250e-7737-4194c618e42a-3fab8a67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89c518ce-5170-4c66-fef8-f2a458d46f9c-147ebc82 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2863b4aa-50d9-cdf4-2ecc-183b0644d334-147ebc82, #w-node-_6726d4b3-96ab-a6e0-0036-39e45203c314-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43c29493-2626-2082-da5a-929d13bfcd28-147ebc82 {
  align-self: start;
}

#w-node-_43c29493-2626-2082-da5a-929d13bfcd31-147ebc82, #w-node-_43c29493-2626-2082-da5a-929d13bfcd3d-147ebc82, #w-node-_43c29493-2626-2082-da5a-929d13bfcd49-147ebc82, #w-node-_43c29493-2626-2082-da5a-929d13bfcd54-147ebc82, #w-node-e4f8cdb4-e4af-67fb-054f-0b5354518a64-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21cf24ad-cd2e-2670-e910-c92ce00edc19-147ebc82, #w-node-_10351c85-5457-0977-d7ed-5d223adfbae3-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0bab5852-027f-b4a7-faf8-b82409d14e5f-147ebc82, #w-node-fd9cbaa9-b563-d6d0-11ad-5f07f2a49189-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_07775a97-fa83-e495-f90e-a885579b597f-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_07775a97-fa83-e495-f90e-a885579b5981-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b5983-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b5985-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b5987-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_07775a97-fa83-e495-f90e-a885579b598a-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_07775a97-fa83-e495-f90e-a885579b598c-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b598e-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b5990-147ebc82, #w-node-_07775a97-fa83-e495-f90e-a885579b5992-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-e42e120a-2ed7-76b4-3d21-efba3a15a22f-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-e42e120a-2ed7-76b4-3d21-efba3a15a231-147ebc82, #w-node-e42e120a-2ed7-76b4-3d21-efba3a15a233-147ebc82, #w-node-e42e120a-2ed7-76b4-3d21-efba3a15a235-147ebc82, #w-node-e42e120a-2ed7-76b4-3d21-efba3a15a237-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-e45a0c31-29dc-a1d4-b19a-1ff4c8a3a7cb-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-e45a0c31-29dc-a1d4-b19a-1ff4c8a3a7cd-147ebc82, #w-node-e45a0c31-29dc-a1d4-b19a-1ff4c8a3a7cf-147ebc82, #w-node-e45a0c31-29dc-a1d4-b19a-1ff4c8a3a7d1-147ebc82, #w-node-e45a0c31-29dc-a1d4-b19a-1ff4c8a3a7d3-147ebc82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-bcd3b625-4a53-5841-a98a-b25aa62afaff-a62afafc, #w-node-bcd3b625-4a53-5841-a98a-b25aa62afb03-a62afafc, #w-node-bcd3b625-4a53-5841-a98a-b25aa62afb12-a62afafc, #w-node-bcd3b625-4a53-5841-a98a-b25aa62afb13-a62afafc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_024a97e8-a7c9-9fd6-f7de-4e1a9c12d8b7-e60065af {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_745e64d9-6ffe-8ce4-7028-c0e1608db3e3-e60065af {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }
}


@font-face {
  font-family: 'Allerdisplay';
  src: url('../fonts/AllerDisplay.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}