@font-face {
  font-family: "Bevenida";
  src: url("Fonts/Bevenida-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bevenida";
  src: url("Fonts/Bevenida-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bevenida";
  src: url("Fonts/Bevenida-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bevenida";
  src: url("Fonts/Bevenida-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-300.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-500.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-500Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-900.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("Fonts/MuseoSans-900Italic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --teal: #00576a;
  --gold: #d8a957;
  --brown: #8a6545;
  --white: #ffffff;
  --ink-blue: #2c7896;
  --site-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Museo Sans", Arial, sans-serif;
  background: var(--white);
  color: var(--teal);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 2;
  background: var(--teal);
}

.header-inner {
  width: min(var(--site-max), calc(100% - 48px));
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  width: 290px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 160px;
}

.brand-tagline {
  width: 290px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 1.85vw, 34px);
  flex: 1;
}

.main-nav a {
  color: var(--white);
  font-family: "Museo Sans", Arial, sans-serif;
  font-size: clamp(11px, 0.68vw, 13px);
  font-weight: 900;
  letter-spacing: 0.3em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 0;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  min-height: clamp(560px, 38.3vw, 760px);
  background-image: url("img/banner/fundo.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 18px solid var(--brown);
}

.hero-content {
  width: min(1415px, calc(100% - 48px));
  min-height: clamp(560px, 38.3vw, 760px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 86px;
}

.lead-form {
  position: relative;
  width: min(100%, 370px);
  margin-right: clamp(34px, 9.8vw, 186px);
  border-radius: 28px 28px 36px 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 72%, #cfcfd1 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

.lead-form h1 {
  margin: 0 0 20px;
  padding: 32px 25px 29px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #9a714d 0%, #d9ad62 56%, #9a714d 100%);
  color: var(--white);
  font-family: "Museo Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.lead-form label {
  display: block;
  margin: 0 44px 23px;
}

.lead-form span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-blue);
  font-family: "Museo Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  height: 31px;
  padding: 0 20px;
  border: 0;
  border-right: 3px solid #a5a8aa;
  border-bottom: 3px solid #a5a8aa;
  border-left: 3px solid #a5a8aa;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  font: 700 13px/1 "Museo Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  outline: none;
}

.lead-form input::placeholder {
  color: #6197ad;
  opacity: 1;
}

.lead-form input:focus {
  border-color: var(--gold);
}

.lead-form button {
  display: block;
  width: calc(100% - 88px);
  height: 35px;
  margin: 0 auto 24px;
  border: 0;
  background: linear-gradient(90deg, #73553c 0%, #a47b55 100%);
  color: #ded4ce;
  cursor: pointer;
  font: 900 18px/1 "Museo Sans", Arial, sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.lead-form p {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 24px;
  color: var(--white);
  font-family: "Museo Sans", Arial, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.lead-form strong {
  color: #f1c85c;
  font-size: 24px;
  font-weight: 900;
}

.essence {
  position: relative;
  overflow: hidden;
  background-color: #00596c;
  background-image: url("img/essencia/fundo_2.png");
  background-position: right -120px center;
  background-repeat: no-repeat;
  background-size: min(54vw, 820px) auto;
  color: var(--white);
}

.essence-inner {
  position: relative;
  z-index: 1;
  width: min(1415px, calc(100% - 48px));
  min-height: 775px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 655px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(56px, 4.7vw, 92px);
  padding: 95px 0 75px;
}

.essence-media {
  margin: 0;
  align-self: center;
}

.essence-media img {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  border-radius: 115px;
  object-fit: cover;
  object-position: center;
}

.essence-media figcaption {
  margin-top: 22px;
  color: #d9e8ed;
  font-size: clamp(17px, 1.1vw, 22px);
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.essence-copy {
  max-width: 610px;
}

.essence-kicker {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(35px, 2.5vw, 48px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.essence h2 {
  margin: 0 0 32px;
  color: #f4ce82;
  font-size: clamp(40px, 3vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: uppercase;
}

.essence-copy > p:not(.essence-kicker) {
  max-width: 555px;
  margin: 0 0 28px;
  color: #edf5f7;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 300;
  line-height: 1.15;
}

.essence-copy strong {
  font-weight: 900;
}

.essence-product {
  margin-top: 70px;
}

.essence-product h3 {
  margin: 0;
  color: var(--white);
  font-family: "Bevenida", Georgia, serif;
  font-size: clamp(29px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.essence-product span {
  display: block;
  margin-top: 15px;
  color: #d9e8ed;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

.essence-specs {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 32px 0 28px;
  color: #f4ce82;
}

.essence-specs div {
  padding: 0 24px;
  border-left: 1px solid #d6a456;
}

.essence-specs div:first-child {
  padding-left: 0;
  border-left: 0;
}

.essence-specs dt {
  margin: 0;
  font-family: "Bevenida", Georgia, serif;
  font-size: clamp(38px, 2.7vw, 52px);
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}

.essence-specs dd {
  margin: 7px 0 0;
  color: #f4ce82;
  font-family: "Bevenida", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.essence-features {
  display: flex;
  align-items: center;
  gap: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.essence-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Bevenida", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.essence-features img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.leisure {
  background: #edcf8b;
  color: var(--teal);
}

.leisure-inner {
  width: min(1375px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: clamp(64px, 5.6vw, 108px);
  align-items: start;
  padding: 67px 0 48px;
}

.leisure h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(38px, 2.95vw, 56px);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.08;
  text-transform: uppercase;
}

.leisure h2 strong {
  font-weight: 900;
}

.leisure h2 span {
  display: inline-block;
  margin-top: 2px;
  font-size: clamp(27px, 2vw, 36px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.leisure-content > p {
  max-width: 875px;
  margin: 0 0 48px;
  color: var(--teal);
  font-size: clamp(18px, 1.2vw, 23px);
  font-weight: 300;
  line-height: 1.13;
}

.leisure-content > p strong {
  font-weight: 900;
}

.amenities {
  display: grid;
  grid-template-columns: 210px 190px 205px 180px;
  column-gap: clamp(42px, 3.7vw, 70px);
  row-gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 11px;
  min-width: 0;
  color: var(--teal);
  font-size: clamp(17px, 1.1vw, 22px);
  font-weight: 300;
  line-height: 1.08;
}

.amenities img {
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 4px;
  background: var(--teal);
  object-fit: contain;
}

.amenities span {
  min-width: 0;
}

.leisure-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 0 24px 47px;
  background: linear-gradient(180deg, #edcf8b 0 196px, #ffffff 196px 100%);
}

.gallery-frame {
  width: min(1070px, 100%);
  border-radius: 86px;
  overflow: hidden;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 316px;
  z-index: 1;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 6px solid var(--white);
  border-left: 6px solid var(--white);
}

.gallery-arrow-prev {
  left: calc(50% - 630px);
}

.gallery-arrow-prev::before {
  transform: translate(-38%, -50%) rotate(-45deg);
}

.gallery-arrow-next {
  right: calc(50% - 630px);
}

.gallery-arrow-next::before {
  transform: translate(-62%, -50%) rotate(135deg);
}

.gallery-thumbs {
  width: min(910px, 100%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.gallery-thumb {
  height: 113px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.04);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.88);
}

.gallery-lightbox[aria-hidden="false"] {
  display: flex;
}

.gallery-lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 18px;
  object-fit: contain;
}

.gallery-lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  font: 300 36px/1 "Museo Sans", Arial, sans-serif;
}

.is-lightbox-open {
  overflow: hidden;
}

.floorplan {
  overflow: hidden;
  background-color: #00526f;
  background-image: url("img/pavimento/fundo_3.png");
  background-position: left -200px top 150px;
  background-repeat: no-repeat;
  background-size: min(68vw, 1020px) auto;
  color: var(--white);
}

.floorplan-inner {
  width: min(1415px, calc(100% - 48px));
  min-height: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 470px 1fr;
  align-items: center;
  gap: 8px;
  padding: 112px 0 70px;
}

.floorplan-copy {
  padding-top: 8px;
}

.floorplan h2 {
  margin: 0 0 28px;
  color: #f4ce82;
  font-size: clamp(42px, 3vw, 50px);
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.12;
  text-transform: uppercase;
}

.floorplan h2 span {
  display: inline-block;
  color: var(--white);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.floorplan h2 em {
  color: #f4ce82;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.085em;
}

.floorplan-copy > p {
  max-width: 490px;
  margin: 0 0 70px;
  color: var(--white);
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 300;
  line-height: 1.18;
}

.floorplan-copy > p strong {
  font-weight: 900;
}

.floorplan-area {
  margin-bottom: 64px;
  color: #f4ce82;
}

.floorplan-area strong {
  display: block;
  font-family: "Bevenida", Georgia, serif;
  font-size: clamp(76px, 5.55vw, 106px);
  font-weight: 700;
  line-height: 0.85;
}

.floorplan-area span,
.floorplan-area small {
  display: block;
  font-family: "Bevenida", Georgia, serif;
  font-weight: 700;
  line-height: 1;
}

.floorplan-area span {
  font-size: clamp(38px, 2.9vw, 55px);
}

.floorplan-area small {
  margin-top: 8px;
  font-size: clamp(23px, 1.7vw, 32px);
}

.floorplan-specs {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.floorplan-specs p {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid #d6a456;
  color: var(--white);
  font-family: "Bevenida", Georgia, serif;
  line-height: 1;
}

.floorplan-specs p:first-child {
  padding-left: 0;
  border-left: 0;
}

.floorplan-specs strong,
.floorplan-specs span {
  display: block;
}

.floorplan-specs strong {
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
}

.floorplan-specs span {
  margin-top: 6px;
  font-size: clamp(24px, 1.75vw, 34px);
  font-weight: 500;
}

.floorplan-visual {
  display: grid;
  justify-items: center;
  align-items: start;
}

.floorplan-tabs {
  display: inline-flex;
  margin-bottom: 42px;
  border: 1px solid #e6be75;
  border-radius: 11px;
  overflow: hidden;
}

.floorplan-tabs button {
  min-width: 145px;
  padding: 9px 18px 8px;
  border: 0;
  border-left: 1px solid #e6be75;
  background: transparent;
  color: #f4ce82;
  cursor: pointer;
  font: 900 16px/1.12 "Museo Sans", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.floorplan-tabs button:first-child {
  border-left: 0;
}

.floorplan-tabs button.is-active {
  background: #edcf8b;
  color: var(--teal);
}

.floorplan-visual img {
  width: min(1120px, 122%);
  max-width: none;
  margin-left: 60px;
}

.implantation {
  background: var(--white);
  color: var(--teal);
}

.implantation-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 86px;
}

.implantation-heading {
  margin-bottom: 62px;
  text-align: center;
}

.implantation h2 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: clamp(36px, 3vw, 58px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.implantation p {
  margin: 0;
  color: var(--teal);
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 300;
  line-height: 1.2;
}

.implantation p strong {
  font-weight: 900;
}

.implantation-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-items: start;
  justify-items: center;
  gap: clamp(88px, 10vw, 175px);
}

.implantation-plans img {
  width: auto;
  height: min(1320px, 82vw);
  max-width: 100%;
}

.purpose {
  background: linear-gradient(180deg, #edcf8b 0 54%, #faedcf 54% 100%);
  color: var(--teal);
}

.purpose-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 48px;
  text-align: center;
}

.purpose-heading {
  margin-bottom: 43px;
}

.purpose h2 {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: clamp(34px, 2.65vw, 51px);
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.purpose h2 strong {
  font-weight: 900;
}

.purpose p {
  margin: 0 auto;
  max-width: 1320px;
  color: var(--teal);
  font-size: clamp(16px, 1.08vw, 21px);
  font-weight: 300;
  line-height: 1.12;
}

.purpose p strong {
  font-weight: 900;
}

.video-placeholder {
  display: block;
  width: min(1190px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  aspect-ratio: 2372 / 1310;
  object-fit: cover;
}

.unique {
  background: #edcf8b;
  color: var(--teal);
}

.unique-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 405px 1fr;
  align-items: center;
  gap: clamp(78px, 7vw, 138px);
  padding: 74px 0 78px;
}

.unique h2 {
  margin: 0 0 40px;
  color: var(--teal);
  font-size: clamp(38px, 2.8vw, 54px);
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 1.18;
  text-transform: uppercase;
}

.unique h2 strong {
  font-weight: 900;
}

.unique ul {
  display: grid;
  gap: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.unique li {
  position: relative;
  padding-left: 30px;
  color: var(--teal);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 300;
  line-height: 1.18;
}

.unique li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.unique li strong {
  font-weight: 900;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.unique-grid img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  border-radius: 50px;
  object-fit: cover;
}

.location {
  background: var(--teal);
  color: var(--white);
}

.location-top {
  background: var(--teal);
}

.location-inner {
  width: min(1360px, calc(100% - 48px));
  min-height: 408px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 470px 1fr;
  align-items: center;
  gap: clamp(80px, 7vw, 140px);
  padding: 62px 0 52px;
}

.location h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(34px, 2.42vw, 46px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
}

.location h2 strong {
  color: #f4ce82;
  font-weight: 900;
  white-space: nowrap;
}

.location-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 300;
  line-height: 1.18;
}

.location-times {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(440px, 1fr);
  gap: clamp(64px, 7vw, 132px);
}

.location-times ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-times li {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 22px;
  align-items: start;
  color: var(--white);
  font-size: clamp(15px, 0.92vw, 18px);
  font-weight: 300;
  line-height: 1.16;
}

.location-times strong {
  color: #f4ce82;
  font-weight: 900;
  white-space: nowrap;
}

.location-map {
  width: 100%;
  height: auto;
}

.sales-address {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px 24px 30px;
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.sales-address p {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.sales-address strong {
  color: #f4ce82;
  font-weight: 900;
}

.sales-address address {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--white);
  font-style: normal;
  font-size: clamp(17px, 1.35vw, 25px);
  font-weight: 300;
  line-height: 1.2;
}

.sales-address address span {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: #f4ce82;
  transform: rotate(-45deg);
}

.sales-address address span::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.about {
  border-bottom: 10px solid #a07853;
  background: var(--white);
  color: var(--teal);
}

.about-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: clamp(80px, 9vw, 170px);
  padding: 86px 0 82px;
}

.about h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(33px, 2.55vw, 49px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.08;
  text-transform: uppercase;
}

.about h2 strong,
.about h2 span {
  display: block;
}

.about h2 strong {
  font-size: clamp(38px, 3.05vw, 58px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.98;
}

.about h2 span {
  margin-top: 7px;
  font-size: clamp(17px, 1.3vw, 25px);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
}

.about-copy {
  max-width: 560px;
}

.about-copy p {
  margin: 0 0 24px;
  color: var(--teal);
  font-size: clamp(17px, 1.08vw, 21px);
  font-weight: 300;
  line-height: 1.16;
}

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

.about-copy strong {
  font-weight: 900;
}

.site-footer {
  overflow: hidden;
  background-color: var(--teal);
  background-image: url("img/footer/fundo_4.png");
  background-position: right -190px center;
  background-repeat: no-repeat;
  background-size: min(62vw, 1000px) auto;
  color: var(--white);
}

.footer-inner {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: clamp(90px, 10vw, 190px);
  align-items: start;
  padding: 76px 0 36px;
}

.footer-logo {
  width: 650px;
  max-width: 100%;
  margin-bottom: 52px;
}

.footer-brand > p {
  margin: 0 0 16px 10px;
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-developer {
  width: 320px;
  margin-left: 10px;
  border-radius: 9px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin: 88px 0 28px 16px;
}

.footer-social a {
  display: block;
}

.footer-social img {
  width: 42px;
  height: 42px;
}

.footer-contact {
  display: grid;
  gap: 18px;
  margin: 0 0 0 16px;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.footer-contact img {
  width: 28px;
  height: 28px;
}

.footer-contact strong {
  font-weight: 900;
}

.footer-lead {
  justify-self: center;
  width: min(100%, 450px);
  padding-top: 88px;
}

.footer-lead > p {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 31px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
}

.footer-lead > p strong {
  font-weight: 900;
}

.footer-form {
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
}

.footer-form h2 {
  margin: 0 0 20px;
  padding: 30px 28px 28px;
  background: linear-gradient(90deg, #9a714d 0%, #d9ad62 56%, #9a714d 100%);
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-form label {
  display: block;
  margin: 0 56px 26px;
}

.footer-form span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-form input {
  width: 100%;
  height: 31px;
  padding: 0 20px;
  border: 0;
  border-right: 2px solid #8d989b;
  border-bottom: 2px solid #8d989b;
  border-left: 2px solid #8d989b;
  background: transparent;
  color: var(--teal);
  font: 700 13px/1 "Museo Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  outline: none;
}

.footer-form input::placeholder {
  color: #6197ad;
  opacity: 1;
}

.footer-form button {
  display: block;
  width: calc(100% - 112px);
  height: 42px;
  margin: 4px auto 24px;
  border: 0;
  background: linear-gradient(90deg, #8b6747 0%, #c19a62 55%, #8b6747 100%);
  color: var(--white);
  cursor: pointer;
  font: 900 18px/1 "Museo Sans", Arial, sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  align-self: end;
  max-width: 980px;
  margin: 36px 0 0 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.24;
}

@media (max-width: 1280px) {
  .header-inner {
    width: min(1080px, calc(100% - 40px));
    gap: 26px;
  }

  .brand {
    width: 260px;
  }

  .brand-logo {
    width: 160px;
  }

  .brand-tagline {
    width: 260px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .essence-inner {
    grid-template-columns: minmax(360px, 1fr) minmax(380px, 1fr);
    gap: 46px;
  }

  .essence-media img {
    border-radius: 82px;
  }

  .essence-product {
    margin-top: 46px;
  }

  .essence-specs div {
    padding: 0 16px;
  }

  .leisure-inner {
    grid-template-columns: 280px 1fr;
    gap: 54px;
  }

  .amenities {
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    column-gap: 28px;
  }

  .gallery-arrow-prev {
    left: 24px;
  }

  .gallery-arrow-next {
    right: 24px;
  }

  .floorplan-inner {
    grid-template-columns: 420px 1fr;
  }

  .floorplan-visual img {
    width: min(840px, 112%);
  }

  .implantation-plans {
    gap: 76px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
    width: 100vw;
    min-height: 112px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    width: 190px;
    gap: 0;
    align-items: flex-start;
  }

  .brand-logo {
    width: 175px;
  }

  .brand-tagline {
    display: none;
  }

  .menu-toggle {
    z-index: 8;
    display: grid;
    align-content: center;
    position: fixed;
    top: 36px;
    right: 18px;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .menu-toggle span {
    width: 36px;
    margin: 4px auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 5;
    width: 100vw;
    display: grid;
    justify-content: stretch;
    justify-items: center;
    gap: 0;
    padding: 14px 0 18px;
    background: var(--teal);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero {
    background-position: 41% top;
  }

  .hero-content {
    align-items: flex-end;
    justify-content: center;
  }

  .lead-form {
    margin-right: 0;
  }

  .essence {
    background-position: right -260px top 120px;
    background-size: 850px auto;
  }

  .essence-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 0;
  }

  .essence-media {
    max-width: 650px;
    margin: 0 auto;
  }

  .essence-copy {
    max-width: 650px;
    margin: 0 auto;
  }

  .leisure-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }

  .leisure h2 br:first-of-type {
    display: none;
  }

  .amenities {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .leisure-gallery {
    background: linear-gradient(180deg, #edcf8b 0 120px, #ffffff 120px 100%);
  }

  .gallery-frame {
    border-radius: 56px;
  }

  .gallery-arrow {
    top: 32%;
    width: 52px;
    height: 52px;
  }

  .gallery-arrow::before {
    width: 14px;
    height: 14px;
    border-width: 5px;
  }

  .gallery-thumbs {
    gap: 12px;
  }

  .gallery-thumb {
    height: 84px;
    border-radius: 16px;
  }

  .floorplan {
    background-position: left -440px bottom -120px;
    background-size: 950px auto;
  }

  .floorplan-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0 64px;
  }

  .floorplan-copy {
    padding-top: 0;
  }

  .floorplan-copy > p {
    margin-bottom: 42px;
  }

  .floorplan-area {
    margin-bottom: 38px;
  }

  .floorplan-visual {
    order: 2;
  }

  .floorplan-tabs {
    margin-bottom: 28px;
  }

  .implantation-inner {
    padding: 54px 0 62px;
  }

  .implantation-heading {
    margin-bottom: 46px;
  }

  .implantation-plans {
    gap: 34px;
  }

  .implantation-plans img {
    height: min(900px, 94vw);
  }

  .purpose {
    background: linear-gradient(180deg, #edcf8b 0 50%, #faedcf 50% 100%);
  }

  .purpose-inner {
    padding: 56px 0 40px;
  }

  .purpose-heading {
    margin-bottom: 34px;
  }

  .unique-inner {
    grid-template-columns: 300px 1fr;
    gap: 44px;
    padding: 58px 0 64px;
  }

  .unique-grid {
    gap: 22px;
  }

  .unique-grid img {
    border-radius: 36px;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0 46px;
  }

  .location-times {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-content {
    width: 100%;
  }

  .header-inner {
    width: 100vw;
    min-height: 122px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    width: 160px;
  }

  .brand-logo {
    width: 152px;
  }

  .brand-tagline {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 96px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .lead-form {
    width: calc(100vw - 70px);
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 26px 26px 34px 34px;
  }

  .lead-form h1 {
    padding: 30px 20px 26px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .lead-form label {
    margin-right: 24px;
    margin-left: 24px;
  }

  .lead-form button {
    width: calc(100% - 48px);
  }

  .lead-form p {
    left: 50%;
    top: calc(100% + 22px);
    width: min(100vw - 28px, 390px);
    padding: 0;
    font-size: 18px;
    line-height: 1.02;
    transform: translateX(-50%);
  }

  .lead-form strong {
    font-size: 23px;
  }

  .essence {
    background-position: right -290px bottom -60px;
    background-size: 620px auto;
  }

  .essence-inner {
    width: min(100% - 28px, 480px);
    padding: 48px 0 56px;
  }

  .essence-media img {
    border-radius: 54px;
  }

  .essence-media figcaption {
    margin-top: 14px;
    padding: 0 10px;
    font-size: 15px;
  }

  .essence h2 {
    margin-bottom: 24px;
  }

  .essence-copy > p:not(.essence-kicker) {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .essence-product {
    margin-top: 40px;
  }

  .essence-product h3 {
    font-size: 24px;
    letter-spacing: 0.14em;
  }

  .essence-product span {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .essence-specs {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .essence-specs div {
    padding: 0 14px;
  }

  .essence-specs div:first-child {
    width: 100%;
  }

  .essence-specs dt {
    font-size: 38px;
  }

  .essence-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .leisure-inner {
    width: min(100% - 28px, 480px);
    padding: 44px 0;
  }

  .leisure h2 {
    font-size: 39px;
  }

  .leisure h2 span {
    font-size: 28px;
  }

  .leisure-content > p {
    margin-bottom: 32px;
    font-size: 19px;
  }

  .amenities {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .amenities li {
    font-size: 20px;
  }

  .leisure-gallery {
    padding: 0 14px 38px;
    background: linear-gradient(180deg, #edcf8b 0 72px, #ffffff 72px 100%);
  }

  .gallery-frame {
    border-radius: 34px;
  }

  .gallery-arrow {
    top: 22%;
    width: 42px;
    height: 42px;
  }

  .gallery-arrow-prev {
    left: 8px;
  }

  .gallery-arrow-next {
    right: 8px;
  }

  .gallery-arrow::before {
    width: 11px;
    height: 11px;
    border-width: 4px;
  }

  .gallery-thumbs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    flex: 0 0 112px;
    height: 72px;
    border-radius: 13px;
    scroll-snap-align: start;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox img {
    border-radius: 10px;
  }

  .floorplan {
    background-position: left -370px bottom -70px;
    background-size: 700px auto;
  }

  .floorplan-inner {
    width: min(100% - 28px, 480px);
    padding: 46px 0 54px;
  }

  .floorplan h2 {
    margin-bottom: 20px;
    font-size: 36px;
    letter-spacing: 0.06em;
  }

  .floorplan-copy > p {
    margin-bottom: 34px;
    font-size: 18px;
  }

  .floorplan-area strong {
    font-size: 68px;
  }

  .floorplan-area span {
    font-size: 36px;
  }

  .floorplan-area small {
    font-size: 24px;
  }

  .floorplan-specs {
    gap: 18px;
  }

  .floorplan-specs p {
    padding-left: 18px;
  }

  .floorplan-specs strong {
    font-size: 30px;
  }

  .floorplan-specs span {
    font-size: 23px;
  }

  .floorplan-tabs {
    width: 100%;
  }

  .floorplan-tabs button {
    min-width: 0;
    flex: 1;
    padding: 10px 8px 9px;
    font-size: 13px;
  }

  .floorplan-visual img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .implantation-inner {
    width: min(100% - 28px, 480px);
    padding: 44px 0 52px;
  }

  .implantation h2 {
    font-size: 30px;
    letter-spacing: 0.08em;
  }

  .implantation p {
    font-size: 16px;
  }

  .implantation-plans {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .implantation-plans img {
    width: min(100%, 310px);
    height: auto;
  }

  .purpose {
    background: linear-gradient(180deg, #edcf8b 0 58%, #faedcf 58% 100%);
  }

  .purpose-inner {
    width: min(100% - 28px, 480px);
    padding: 44px 0 34px;
  }

  .purpose h2 {
    margin-bottom: 16px;
    font-size: 31px;
    letter-spacing: 0.07em;
    line-height: 1.1;
  }

  .purpose p {
    font-size: 16px;
  }

  .video-placeholder img {
    min-height: 210px;
    object-position: center;
  }

  .unique-inner {
    width: min(100% - 28px, 480px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 0 50px;
  }

  .unique h2 {
    margin-bottom: 26px;
    font-size: 36px;
  }

  .unique ul {
    gap: 24px;
  }

  .unique li {
    font-size: 18px;
  }

  .unique-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .unique-grid img {
    border-radius: 22px;
  }

  .location-inner {
    width: min(100% - 28px, 480px);
    min-height: 0;
    padding: 42px 0 38px;
  }

  .location h2 {
    font-size: 34px;
  }

  .location-copy p {
    font-size: 18px;
  }

  .location-times {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-times li {
    grid-template-columns: 1fr 72px;
    font-size: 16px;
  }

  .location-map {
    min-height: 240px;
    object-fit: cover;
    object-position: center;
  }

  .sales-address {
    padding: 22px 14px 26px;
  }

  .sales-address address {
    justify-content: center;
    align-items: flex-start;
    font-size: 16px;
  }

  .about-inner {
    width: min(100% - 28px, 480px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 50px;
  }

  .about h2 {
    font-size: 30px;
  }

  .about h2 strong {
    font-size: 38px;
  }

  .about h2 span {
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .about-copy p {
    font-size: 17px;
  }

  .site-footer {
    background-position: right -300px top 60px;
    background-size: 760px auto;
  }

  .footer-inner {
    width: min(100% - 28px, 480px);
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding: 48px 0 32px;
  }

  .footer-logo {
    width: 330px;
    margin-bottom: 34px;
  }

  .footer-brand > p {
    margin-left: 0;
    font-size: 22px;
  }

  .footer-developer {
    width: 280px;
    margin-left: 0;
  }

  .footer-social {
    margin: 44px 0 24px;
  }

  .footer-contact {
    margin-left: 0;
  }

  .footer-contact li {
    font-size: 22px;
  }

  .footer-lead {
    width: min(100%, 380px);
    padding-top: 0;
  }

  .footer-lead > p {
    font-size: 24px;
  }

  .footer-form h2 {
    padding: 26px 18px 24px;
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .footer-form label {
    margin-right: 32px;
    margin-left: 32px;
  }

  .footer-form button {
    width: calc(100% - 64px);
  }

  .footer-disclaimer {
    margin: 0;
    font-size: 11px;
  }
}
