:root {
  --bg: #08131a;
  --panel: #10212c;
  --ink: #f3f5f7;
  --muted: #ccd5dd;
  --accent: #BFA58A;
  --accent-2: #8aa8c2;
  --light-bg: #f4f1ea;
  --dark-bg: #0f1d28;
  --danger: #b33a3a;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('/fonts/avenir-lt-pro-book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('/fonts/avenir-lt-pro-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('/fonts/avenir-lt-pro-heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chronicle Display';
  src: url('/fonts/chronicle-display-roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chronicle Display';
  src: url('/fonts/chronicle-display-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  border-radius: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Avenir LT Pro', sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.snap-wrapper {
  height: auto;
  overflow: visible;
  scroll-snap-type: none;
}

.snap-section {
  min-height: auto;
  position: relative;
  scroll-snap-align: none;
  display: flex;
  align-items: top;
  padding: 88px 0;
}

.section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.section-inner.narrow {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-family: 'Chronicle Display', serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06;
}

h2 {
  font-family: 'Chronicle Display', serif;
  font-weight: 100;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.1;
}

.lead-text {
  font-size: 16px;
  line-height: 1.12;
  color: var(--white);
  max-width: 660px;
}

html[lang="pt"] body.corcoran-atlantic .lead-text {
  max-width: 750px;
}

.max-900 {
  max-width: 900px;
}

.btn-main,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.header-actions .btn-main {
  background-color: transparent;
  color: var(--white);
}

.btn-main {
  color: #111111;
  font-size: 17px;
  background: #ffffff;
  border-color: #ffffff;
}

.btn-main:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #111111;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #ffffff;
  color: #111111;
  background: #ffffff;
}

.btn-small {
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
}


/*----------- Hero */

.hero-section {
  color: var(--ink);
  overflow: hidden;
  min-height: 100vh;
  padding-top: 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -86px;
  height: 170px;
  background: #F7F5F2;
  border-top-left-radius: 100% 100% !important;
  border-top-right-radius: 100% 100% !important;
  z-index: 1;
}

.hero-bg,
.section-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}


.hero-header {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1.4rem;
  align-items: center;
  padding: 2rem 0;
}

.is-thankyou-hero .hero-header {
  grid-template-columns: 1fr auto;
}

.is-thankyou-hero .header-settings {
  justify-self: end;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: 142px;
  max-width: 100%;
  height: auto;
}

.brand-logo .brand-mark {
  width: 142px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}

.hero-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  font-size: 18px;
}

.hero-menu a {
  opacity: 0.88;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-menu a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-settings {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-globe {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
}

.header-globe:hover {
  opacity: 1;
}

.header-globe svg {
  display: block;
  width: 20px;
  height: 20px;
}

.global-settings-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -8px;
  width: 220px;
  border: 1px solid rgba(214, 220, 225, 0.35);
  background: rgba(8, 15, 22, 0.95);
  padding: 0.85rem;
  z-index: 30;
}

.global-settings-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245, 248, 250, 0.82);
  margin-bottom: 0.35rem;
}

.global-settings-select {
  width: 100%;
  margin: 0 0 0.68rem;
  border: 1px solid rgba(170, 187, 198, 0.45);
  background: rgba(10, 20, 28, 0.9);
  color: #f3f5f7;
  padding: 0.42rem 0.56rem;
  font-size: 0.85rem;
}

.global-settings-select:last-child {
  margin-bottom: 0;
}

.dial-code,
#cardUnitSelector,
input,
select {
  border: 1px solid rgba(170, 187, 198, 0.45);
  background: rgba(10, 20, 28, 0.82);
  color: var(--ink);
  border-radius: 0;
  padding: 0.6rem 0.72rem;
}

.hero-content {
  max-width: 760px;
  padding: 7vh 0 0;
  margin: auto;
}

.hero-content h1 {
  font-weight: 300;
  text-wrap: balance;
}

.is-thankyou-hero .hero-content {
  width: 700px;
  padding-top: 2vh;
}

.is-thankyou-hero .hero-content h1 {
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.is-thankyou-hero .hero-content .lead-text {
  max-width: 550px;
  margin: 30px 0;
}

.hero-eyebrow-svg {
  width: 202px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 50px;
  justify-content: flex-start;
}

.section-light {
  background: #F7F5F2;
  color: #152129;
}

.section-light .lead-text,
.section-light p {
  color: #6F6A64;
}

.section-dark {
  background: linear-gradient(160deg, #0b1822, #132736 60%, #10212f);
}

/*----------- Section 2 */

.section2-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section2-subtitle {
  margin: 0 auto;
  text-align: center;
}

.section2-advantages {
  margin-top: 3.1rem;
}

.section2-advantage {
  min-height: 160px;
  padding: 0.4rem 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.section2-divider {
  border-right: 1px solid rgba(21, 33, 41, 0.16);
}

.section2-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.section2-advantage h3 {
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.015em;
  margin-bottom: 0.95rem;
  text-transform: uppercase;
}

.section2-advantage p {
  color: #6F6A64;
  line-height: 1.34;
  margin: 0 auto;
  max-width: 250px;
}

/*----------- Section 3 */

#section3 {
  background: #F2F1EF;
  color: #121212;
}


#section3 .eyebrow {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

#section3 h2 {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 45px;
  font-weight: 400;
  font-size: 40px;
}

#section3 .lead-text {
  margin: 0 auto;
  text-align: center;
  color: #646464;
  text-wrap: balance;
  max-width: 570px;
}

.property-slider {
  margin-top: 50px;
}

.property-slide {
  padding: 0 18px;
}

.property-card {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f6f6f6;
}

.property-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.property-info {
  padding: 16px 18px 18px;
  color: #121212;
}

.property-info h3 {
  font-family: 'Chronicle Display', serif;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.property-loc {
  color: #4f4f4f;
  font-size: 12px;
  margin-bottom: 0.85rem;
}

.property-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  padding: 0.18rem 0.62rem;
  margin-bottom: 0.86rem;
}

.property-meta-pill img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.property-meta-pill span {
  font-size: 12px;
  line-height: 1;
}

.price-caption {
  color: #707070;
  font-size: 12px;
  margin-bottom: 0.12rem;
}

.price-line {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  color: #121212;
}

.property-bottom-row {
  margin-top: 0.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.property-price-group {
  min-width: 0;
}

.btn-request-card {
  border: 1px solid rgba(0, 0, 0, 0.55);
  background: transparent;
  color: #303030;
  font-size: 14px;
  padding: 0.74rem 1.3rem;
  width: 140px;
  margin-left: 0;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-request-card:hover {
  background: #121212;
  color: #f8f8f8;
}

.property-slider .slick-track {
  display: flex;
}

.property-slider .slick-slide {
  height: inherit !important;
}

.property-slider .slick-slide>div {
  height: 100%;
}

.property-slider-controls {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.property-nav-btn {
  border: 0;
  background: transparent;
  color: #1f1f1f;
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.property-nav-btn img {
  width: 7px;
  height: 14px;
  display: block;
}

.property-nav-next img {
  transform: rotate(180deg);
}

.property-nav-btn.slick-disabled {
  opacity: 0.35;
}

.property-slider-dots .slick-dots {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.property-slider-dots .slick-dots li {
  width: 50px;
  height: 30px;
  margin: 0 6px;
  list-style: none;
  transition: width 0.25s ease;
}

.property-slider-dots .slick-dots li button {
  width: 100%;
  height: 3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-shadow: none;
  border: 0;
  opacity: 1;
  background: #DDD6CF;
}

.property-slider-dots .slick-dots li button:before {
  content: none;
}

.property-slider-dots .slick-dots li.slick-active button:before {
  content: none;
}

.property-slider-dots .slick-dots li.slick-active button {
  background: #000000;
  opacity: 1;
}

.property-slider-dots .slick-dots li.slick-active {
  width: 138px;
}

/*----------- Section 4 */

#section4 {
  background: #E9E7E3;
}

.section4-layout-wrap {
  width: 100%;
}

.section4-layout {
  align-items: stretch;
}

.section4-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.section4-intro .eyebrow {
  margin-bottom: 25px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
  max-width: 350px;
  letter-spacing: 0.3px;
}

.section4-intro h2 {
  max-width: 350px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-size: 37px;
}

.section4-intro .lead-text {
  max-width: 430px;
  line-height: 1.35;
  text-wrap: balance;
  margin: 0;
  color: #6F6A64;
}

.section4-metrics {
  height: 100%;
  align-items: center;
  margin-left: 0;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 50%;
  right: 0px;
  position: fixed;
  transform: translate(-70%, 0);
  max-width: 320px;
}

.iti__flag-box,
.iti__country-name {
  color: #000000;
}

.iti--container {
  z-index: 10000;
}

.section4-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  min-height: 250px;
}

.section4-divider {
  border-right: 1px solid rgba(28, 40, 49, 0.14);
}

.section4-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.section4-metric h3 {
  font-size: 15px;
  font-weight: 900;
  margin: 5px auto 15px;
  line-height: 1.05;
  letter-spacing: -0.8px;
  width: 140px;
  text-transform: uppercase;
}

.section4-metric p {
  color: #6F6A64;
  line-height: 1.1;
  margin: auto;
  font-size: 16px;
  text-wrap: balance;
  letter-spacing: -0.8px;
  max-width: 200px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section4-metrics {
    margin-left: 24px;
  }

  .section4-metric-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
  }

  .section4-metric {
    width: 100%;
    min-height: 100%;
    padding: 1.25rem 1rem;
  }

  .section4-divider {
    border-right: 0;
  }

  .section4-metric-col:nth-child(odd) .section4-metric {
    border-right: 1px solid rgba(28, 40, 49, 0.14);
  }

  .section4-metric-col:nth-child(-n+2) .section4-metric {
    border-bottom: 1px solid rgba(28, 40, 49, 0.14);
  }
}

/*----------- Section 5 */

.section-brand {
  background: #f4f1ea;
  color: #152129;
  overflow: hidden;
  padding: 0;
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1px solid rgba(140, 164, 178, 0.2);
  border-radius: 20px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.section-light .feature-card {
  border-color: rgba(22, 35, 46, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.brand-wrap {
  max-width: 820px;
}

.brand-mark {
  width: 150px;
  margin-bottom: 1.2rem;
}

.benefit-list {
  margin: 1.2rem 0 0;
  padding-left: 0;
  list-style: none;
}

.benefit-list li {
  margin-bottom: 0.5rem;
  color: #6F6A64;
  line-height: 1.25;
  position: relative;
  padding-left: 2rem;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  background: url('/img/icons/section5-check.svg') no-repeat center/contain;
}

.section5-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #F7F5F2;
}

.section5-row {
  align-items: stretch;
}

.section5-copy-col {
  max-width: none;
}

.section5-image-col,
.section5-copy-col,
.section5-side-col {
  display: flex;
}

.section5-copy-col {
  align-items: flex-start;
}


.brand-left-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.brand-copy {
  padding: 65px 70px;
  width: 100%;
  position: relative;
}

.brand-copy::after {
  content: '';
  position: absolute;
  top: 65px;
  bottom: 65px;
  right: 0;
  width: 1px;
  background: rgba(20, 33, 45, 0.1);
}

.brand-copy .eyebrow {
  font-size: 18px;
  font-weight: 800;
}

.brand-copy h2 {
  font-size: 40px;
  margin: 25px 0 40px;
  text-wrap: balance;
}

.brand-copy .lead-text {
  color: #6F6A64;
  line-height: 1.23;
  max-width: 505px;
  text-wrap: balance;
  margin-bottom: 40px;
}

.brand-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 2rem 1rem 2rem;
}

.btn-section5-visit {
  border: 1px solid rgba(0, 0, 0, 0.55);
  background: transparent;
  font-size: 16px;
  color: #232323;
  line-height: 1;
  padding: 0.95rem 1.55rem;
  text-transform: uppercase;
}

.btn-section5-visit:hover {
  background: #171717;
  color: #fff;
}

/*----------- Section 6 */

.section-form {
  overflow: hidden;
  color: #f4f4f4;
}

.section6-wrap {
  width: 100%;
}

.section6-top {
  align-items: stretch;
  margin-top: 0.6rem;
}

.section6-left {
  padding: 30px;
  display: flex;
  align-items: center;
}

.section6-left .form-copy h2 {
  color: #f3f3f3;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.section6-left .form-copy p {
  color: #edf2f7;
  line-height: 1.28;
  max-width: 390px;
}


.lead-form-card {
  background: rgba(12, 15, 18, 0.54);
  border: 1px solid rgba(200, 207, 214, 0.18);
  border-radius: 0;
  padding: 30px;
  box-shadow: none;
}

.footer-progress-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.15rem;
}

.step-index {
  font-size: 18px;
  color: #c9a376;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer-progress-dots {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.footer-progress-dots li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
}

.footer-progress-dots li::before {
  content: '';
  position: absolute;
  left: -57px;
  top: 6px;
  width: 57px;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.footer-progress-dots li:first-child::before {
  display: none;
}

.footer-progress-dots li.active,
.footer-progress-dots li.done {
  background: #c9a376;
}

.footer-progress-dots li.done::before,
.footer-progress-dots li.active::before {
  background: rgba(201, 163, 118, 0.95);
}

.footer-step {
  display: none;
}

.footer-step.active {
  display: block;
}

.footer-step h3 {
  font-family: 'Chronicle Display', serif;
  color: #f2f4f6;
  margin-bottom: 40px;
  font-size: 38px;
}

.footer-step-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-choice-error {
  order: 3;
  flex: 0 0 100%;
  width: 100%;
  margin: 0.8rem auto 0;
  color: #ffb7b7;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.option-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex: 1;
}

.option-pill {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: transparent;
  color: #f0f4f7;
  padding: 22px 10px;
  min-height: 70px;
  width: 100px;
  font-size: 14px;
  line-height: 1.1;
}

.option-pill[data-value="Oportunidade de investimento"],
.option-pill[data-value="Privacidade e exclusividade"] {
  font-size: 12px;
}

.option-pill[data-value="Novo empreendimento"] {
  font-size: 12px;
}

.option-pill[data-value="Imediatamente"] {
  font-size: 12px;
}

.option-pill.active,
.option-pill:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-footer-next {
  order: 2;
  border: 1px solid #fff;
  background: #fff;
  color: #121212;
  min-height: 40px;
  width: 120px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-step[data-step="2"] .option-stack {
  grid-template-columns: repeat(var(--option-cols, 3), 120px);
}

.footer-step[data-step="2"] .option-pill,
.footer-step[data-step="3"] .option-pill,
.footer-step[data-step="4"] .option-pill {
  width: 120px;
}

.footer-step[data-step="5"] .option-pill {
  width: 150px;
}

.btn-footer-next:hover {
  background: transparent;
  color: #fff;
}

.form-row input,
#cardLeadForm input,
#cardLeadForm select {
  width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(9, 16, 23, 0.9);
}

.phone-row input {
  margin-bottom: 0;
}

#cardLeadForm>*+* {
  margin-top: 0.65rem;
}

.form-row>*+* {
  margin-top: 0.65rem;
}

.phone-row .dial-code,
.phone-row input,
.form-row input,
#cardLeadForm input,
#cardLeadForm select {
  min-height: 44px;
}

.phone-row {
  display: block;
}

.phone-row .iti {
  width: 100%;
}

.phone-row .iti input {
  width: 100%;
}

.check-wrap {
  font-size: 1.3rem;
  margin: 15px 0 0 0;
}

.check-wrap.compact {
  margin-top: 0;
}

.checkbox-wrapper-46 input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-wrapper-46 .cbx {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(235, 242, 247, 0.72);
  transition: all 0.2s ease;
  flex: 0 0 auto;
  margin-top: 1px;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}

.checkbox-wrapper-46 .cbx span:first-child:before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--accent, #d0a366);
  display: block;
  transform: scale(0);
  opacity: 1;
}

.checkbox-wrapper-46 .cbx span:last-child {
  color: #edf2f7;
  font-size: 14px;
  line-height: 1.35;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: var(--accent, #d0a366);
}

.checkbox-wrapper-46 .cbx span:last-child a {
  color: #edf2f7;
  text-decoration: underline;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child {
  background: var(--accent, #d0a366);
  border-color: var(--accent, #d0a366);
  animation: wave-46 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.checkbox-wrapper-46 .inp-cbx.input-error+.cbx span:first-child {
  border-color: var(--danger, #b33a3a);
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

.full-width {
  width: 100%;
}

#footerLeadForm .footer-step .btn-main.full-width {
  margin-top: 1.4rem;
}

#footerLeadForm {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.section6-bottom {
  margin-top: 0;
  padding: 1.2rem 1.35rem;
  align-items: center;
  justify-content: center;
}

.footer-bottom-section {
  background: #050608;
  margin-top: -2px;
}

.footer-brand img {
  width: 120px;
  max-width: 100%;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}


.footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-follow span {
  color: #f5f6f8;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-follow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}

.footer-follow a {
  width: 19px;
  height: 19px;
  display: inline-flex;
}

.footer-follow a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.input-error {
  border-color: var(--danger) !important;
}

.field-error-text {
  color: #ffb4b4;
  font-size: 10px;
  line-height: 1.25;
  margin: 0;
}

#cardLeadForm .field-error-text {
  color: #b33a3a;
  margin-top: 0.32rem;
}

.field-error-text[hidden] {
  display: none !important;
}

/*----------- Politicas */

#Politica .modal-content {
  background: #ffffff;
  color: #111111;
  border-radius: 0;
}

#Politica {
  z-index: 4100;
}

#Politica .modal-dialog {
  z-index: 4110;
}

#Politica .modal-title,
#Politica .modal-body,
#Politica .modal-inner-content,
#Politica .modal-body p,
#Politica .modal-body li,
#Politica .modal-body span,
#Politica .modal-body a {
  color: #111111 !important;
}

#Politica .modal-body a {
  text-decoration: underline;
}

/*----------- Modal */

.card-funnel-modal {
  background: #f2f2f2;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 0 !important;
  overflow: hidden;
}

#propertyModal {
  z-index: 3900;
}

.modal.show .modal-dialog {
  position: relative;
  z-index: 4000;
}

.modal-backdrop.show {
  z-index: 3800;
}

body.modal-open {
  overflow-y: auto !important;
  padding-right: 0 !important;
}

.card-funnel-modal .modal-header,
.card-funnel-modal .modal-body,
.card-funnel-modal .btn-close,
.card-funnel-modal input,
.card-funnel-modal select,
.card-funnel-modal button {
  border-radius: 0 !important;
}

.card-funnel-modal .field-error-text {
  color: #b33a3a;
  margin: 0;
}

.card-modal-body {
  padding: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 560px;
}

.card-modal-form-pane {
  padding: 40px 40px 50px;
  background: #f2f2f2;
}

.card-modal-title {
  font-family: 'Chronicle Display', serif;
  font-size: 22px;
  line-height: 1.05;
  text-wrap: balance;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 3.4rem;
}

.card-modal-close {
  position: absolute;
  top: 0;
  text-align: center;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #111111;
  font-size: 26px;
  line-height: 1;
  z-index: 6;
}

.card-input-wrap {
  margin-top: 1.35rem;
}

#cardLeadForm .card-input-wrap:first-of-type {
  margin-top: 0;
}

#cardLeadForm .card-input-wrap input,
#cardLeadForm .card-input-wrap select,
#cardLeadForm .card-phone-field .dial-code,
#cardLeadForm .card-phone-field input {
  border: 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.78);
  background: transparent;
  color: #161616;
  min-height: 44px;
  padding: 0.2rem 0;
}

#cardLeadForm .card-phone-field .phone-row {
  display: block;
}

#cardLeadForm .card-phone-field .phone-row .iti {
  width: 100%;
}

#cardLeadForm .card-input-wrap select {
  padding-right: 22px;
}

.card-check-wrap {
  margin-top: 1.15rem;
}

.card-check-wrap .cbx span:first-child {
  border-color: rgba(20, 20, 20, 0.55);
}

.card-check-wrap .cbx span:first-child svg {
  stroke: #141414;
}

.card-check-wrap .cbx:hover span:first-child {
  border-color: var(--accent, #d0a366);
}

.card-check-wrap .cbx span:last-child {
  color: #222;
}

.card-check-wrap .cbx span:last-child a {
  color: #222;
}

.card-submit-btn {
  margin: 3rem auto 0;
  display: block;
  width: 230px;
  min-height: 48px;
  background: transparent;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.62);
  text-transform: uppercase;
}

.card-submit-btn:hover {
  background: #171717;
  color: #fff;
}

.card-modal-image-pane {
  position: relative;
  min-height: 100%;
}

.card-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field-label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

/*----------- Thank You / Particular Page */

.is-thankyou-hero .hero-header {
  grid-template-columns: 1fr auto;
}

.is-thankyou-hero .header-settings {
  justify-self: end;
}

.is-thankyou-hero .hero-content {
  width: 700px;
  padding-top: 2vh;
}

.is-thankyou-hero .hero-content h1 {
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.is-thankyou-hero .hero-content .lead-text {
  max-width: 550px;
  margin: 30px 0;
}

.thankyou-footer-section {
  position: relative;
  padding: 0.55rem 0 0.35rem;
}

.thankyou-footer-inner {
  position: relative;
  min-height: 76px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.thankyou-footer-mark {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 122px;
  height: 26px;
  transform: translateY(-50%);
  display: inline-flex;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.thankyou-footer-mark:hover,
.thankyou-footer-mark:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1.02);
}

.thankyou-footer-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.thankyou-footer-bottom {
  min-height: 76px;
  width: 100%;
  padding: 0.95rem 1.35rem 0.8rem;
  justify-content: center;
}

.thankyou-footer-section .footer-brand {
  margin: 0 auto;
}

.thankyou-footer-section .footer-brand img {
  width: 104px;
}

.thankyou-steps-title {
  text-align: center;
  margin-bottom: 3.1rem;
}

.thankyou-steps-row {
  margin-top: 0.2rem;
}

.thankyou-step-col {
  position: relative;
}

.thankyou-step-col:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: #d9d4ce;
}

.thankyou-step-card {
  min-height: 100%;
  text-align: center;
  padding: 1.1rem 2.3rem 1rem;
}

.thankyou-step-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 30px;
}

.thankyou-step-card h3 {
  font-size: 20px;
  text-wrap: balance;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 0.015em;
}

.thankyou-step-card p {
  font-size: 16px;
  line-height: 1.36;
  color: #6F6A64;
  margin: 0;
}

.thankyou-hero {
  color: var(--ink);
}

.thankyou-hero p {
  color: #d4dde6;
  line-height: 1.65;
}

.thankyou-spaces-row {
  background: #f7f5f2;
}

.thankyou-spaces-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.thankyou-spaces-section .section-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.thankyou-spaces-image-col,
.thankyou-spaces-copy-col {
  min-height: 520px;
  background: #F2F1EF;
  display: flex;
}

.thankyou-left-image {
  width: 100%;
  height: 100%;
}

.thankyou-spaces-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.thankyou-spaces-copy-col {
  display: flex;
  align-items: center;
}

.thankyou-spaces-copy {
  max-width: 630px;
  padding: 40px 0 40px 20px;
  margin: 0 auto;
}

.thankyou-spaces-copy h2 {
  margin-bottom: 1.7rem;
  font-size: 40px;
  text-wrap: balance;
}

.thankyou-spaces-copy p {
  color: #6a6966;
  margin: 0 0 1rem;
  max-width: 480px;
}

.thankyou-spaces-copy p:last-child {
  margin-bottom: 0;
}

/*----------- Media Queries */

/*----------- Section 2 responsive */

@media (max-width: 992px) {
  .section2-advantage-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
  }

  .section2-advantage {
    width: 100%;
    min-height: 100%;
  }

  .section2-divider {
    border-right: 0;
  }

  .section2-advantage-col:nth-child(odd) .section2-advantage {
    border-right: 1px solid rgba(21, 33, 41, 0.16);
  }

  .section2-advantage-col:nth-child(-n+2) .section2-advantage {
    border-bottom: 1px solid rgba(21, 33, 41, 0.16);
  }
}

/*----------- Section 4 responsive */

@media (min-width: 768px) and (max-width: 1200px) {
  .section4-metrics {
    margin-left: 24px;
  }

  .section4-metric-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
  }

  .section4-metric {
    width: 100%;
    min-height: 100%;
    padding: 1.25rem 1rem;
  }

  .section4-divider {
    border-right: 0;
  }

  .section4-metric-col:nth-child(odd) .section4-metric {
    border-right: 1px solid rgba(28, 40, 49, 0.14);
  }

  .section4-metric-col:nth-child(-n+2) .section4-metric {
    border-bottom: 1px solid rgba(28, 40, 49, 0.14);
  }
}

/*----------- Section 5 responsive */

@media (min-width: 1400px) {
  .section5-copy-col {
    max-width: 575px;
  }
}

/*----------- Shared responsive adjustments */

@media (max-width: 1400px) {
  .btn-section5-visit {
    font-size: 14px;
    padding: 15px;
  }

  .section6-left .form-copy h2 {
    font-size: 36px;
  }
}

@media (max-width: 1200px) {
  .btn-request-card {
    padding: 10px 0;
  }

  .price-line {
    font-size: 18px;
  }

  .property-meta-pill {
    margin-bottom: 5px;
  }

  .section2-advantage h3 {
    font-size: 18px;
  }

  .section-light .lead-text,
  .section-light p {
    text-wrap: balance;
  }

  .brand-copy {
    padding: 65px 40px;

  }

  .footer-step h3 {
    font-size: 30px;
  }

  .hero-menu {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hero-menu {
    display: none;
  }
.is-thankyou-hero .hero-content{
    width: 100%;
    padding-top: 40px;
}
  .section5-image-col {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .brand-left-image img {
    width: 100%;
    max-height: 350px;
    height: auto;
    min-height: 0;
  }

  .snap-wrapper {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  .snap-section {
    min-height: auto;
    scroll-snap-align: none;
    padding: 80px 0;
  }

  .hero-header {
    padding: 0;
  }

  .section4-intro .eyebrow {
    margin-inline: auto;
  }

  .section4-metrics {
    margin: 0;
    padding-top: 30px;
  }

  .section4-icon {
    margin-bottom: 0;
  }

  .section4-metric h3 {
    margin-bottom: 10px;
  }

  .hero-content {
    padding: 70px 0;
  }

  #section5 {
    padding: 0;
  }

  .section-form {
    padding: 30px 0;
  }

  .section5-wrap {
    padding: 0;
  }

  .brand-left-image {
    width: 100%;
    max-height: 350px;
  }

  .brand-left-image img {
    min-height: unset;
    object-fit: cover;
  }

  .is-thankyou-hero .hero-content .lead-text {
    margin: 30px auto;
  }

  .hero-content h1 {
    font-size: 40px;
    text-wrap: balance;
    text-align: center;
  }

  .hero-section::after {
    bottom: -52px;
    height: 105px;
  }

  .feature-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-step-col:not(:first-child)::before {
    display: none;
  }

  .thankyou-step-card {
    padding: 1rem 0.5rem;
  }

  .thankyou-spaces-image-col,
  .thankyou-spaces-copy-col {
    min-height: auto;
  }

  .thankyou-spaces-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .thankyou-spaces-image {
    min-height: 260px;
  }

  .thankyou-spaces-copy {
    padding: 1.25rem 0.4rem 0;
    max-width: 100%;
  }

  .section6-left {
    padding: 1.2rem 1rem;
  }


  .footer-progress-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-step-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-choice-error {
    order: 2;
  }

  .btn-footer-next {
    order: 3;
    width: 100%;
    max-width: 525px;
    margin: auto;
  }

  .section6-bottom {
    padding: 1rem;
    gap: 0.8rem;
  }

  .footer-brand,
  .footer-follow {
    justify-content: center;
    text-align: center;
  }

  .thankyou-footer-mark {
    right: 0.75rem;
    top: 30%;
    width: 108px;
    height: 23px;
    transform: none;
  }

  .thankyou-footer-section {
    padding: 0.35rem 0 0.25rem;
  }

  .thankyou-footer-inner {
    min-height: 68px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .thankyou-footer-bottom {
    min-height: 68px;
    padding: 0.85rem 1rem 0.7rem;
  }

  .thankyou-footer-section .footer-brand img {
    width: 94px;
  }

  .property-slide {
    padding: 0 8px;
  }

  .property-card img {
    height: 210px;
  }

  .property-info h3 {
    font-size: 2.2rem;
  }

  .property-loc {
    font-size: 1.32rem;
  }

  .price-line {
    font-size: 1.9rem;
  }

  .btn-request-card {
    margin-top: 0;
    width: 100%;
  }

  .property-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .property-slider-controls {
    margin-top: 1.6rem;
  }

  .property-slider-dots .slick-dots li {
    width: 44px;
    margin: 0 3px;
  }

  .property-slider-dots .slick-dots li.slick-active {
    width: 74px;
  }

  .section2-advantages {
    margin-top: 2rem;
  }

  .section2-divider {
    border-right: 0;
  }

  .section2-advantage {
    min-height: 0;
    padding: 1.1rem 0.4rem;
  }

  .section4-intro {
    text-align: center;
  }

  .section4-intro h2,
  .section4-intro .lead-text {
    margin-left: auto;
    margin-right: auto;
  }

  .section4-divider {
    border-right: 0;
  }

  .section4-metric {
    padding: 1.1rem 0.7rem;
    border-top: 0;
  }

  .section4-metric-col:nth-child(-n+2) .section4-metric {
    border-bottom: 1px solid rgba(28, 40, 49, 0.12);
  }

  .section5-copy-col {
    border-right: 0;
  }

  .brand-copy::after {
    display: none;
  }

  .brand-copy {
    padding: 40px 0;
  }

  .brand-side {
    border-top: 1px solid rgba(20, 33, 45, 0.12);
  }

  .phone-row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .card-modal-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .card-modal-form-pane {
    padding: 2rem 1.2rem 1.5rem;
  }

  .card-modal-title {
    font-size: 26px;
    margin-bottom: 2rem;
  }

  .card-modal-image-pane {
    min-height: 260px;
  }

  .hero-content,
  .section4-intro,
  .brand-copy,
  .thankyou-spaces-copy,
  .form-copy {
    text-align: center;
  }

  .hero-eyebrow-svg {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-content .lead-text,
  .section4-intro .lead-text,
  .brand-copy .lead-text,
  .thankyou-spaces-copy p,
  .form-copy p {
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  .section6-left .form-copy h2 {
    text-wrap: balance;
  }

  .option-stack,
  .step-index,
  .footer-progress-dots {
    margin: auto;
  }

  .option-stack {
    justify-content: center;
  }

  .option-pill,
  .footer-step[data-step="2"] .option-pill,
  .footer-step[data-step="3"] .option-pill,
  .footer-step[data-step="4"] .option-pill {
    width: 31%;
  }

  .footer-step h3 {
    text-align: center;
  }

  .benefit-list {
    max-width: 320px;
    margin-inline: auto;
  }

  .benefit-list li {
    text-align: left;
  }

  .property-meta-pill img {
    height: 30px;
  }
}


/*----------- Policy / modal responsive */

@media (max-width: 768px) {
  .hero-header {
    padding: 0 25px;
  }

  .section4-metrics,
  .section2-advantages {
    margin-left: 0;
  }

  .section4-metric-col,
  .section2-advantage-col {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .section4-divider,
  .section2-divider,
  .section4-metric-col:nth-child(-n+2) .section4-metric,
  .section2-advantage-col:nth-child(-n+2) .section2-advantage,
  .section2-advantage-col:nth-child(odd) .section2-advantage {
    border: 0;
  }

  .section4-metric,
  .section2-advantage {
    padding-inline: 1rem;
  }

  .section4-metrics .slick-slide,
  .section2-advantages .slick-slide {
    padding: 0 6px;
  }

  .section4-mobile-dots,
  .section2-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
  }

  .section4-mobile-dots li button,
  .section2-mobile-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.25);
    padding: 0;
  }

  .section4-mobile-dots li.slick-active button,
  .section2-mobile-dots li.slick-active button {
    background: rgba(25, 25, 25, 0.85);
  }
}

/*----------- Mobile hero */

@media (max-width: 500px) {
  .hero-header {
    grid-template-columns: 1fr 1fr;
  }

  .header-settings {
    justify-content: flex-end;
    justify-self: end;
  }

  .header-globe {
    width: 30px;
    height: 30px;
  }

  .header-globe svg {
    width: 30px;
    height: 30px;
  }

  .option-stack {
    justify-content: center;
  }

  .header-actions .btn-main {
    display: none;
  }
}
