:root {
  --sand: #b8a07b;
  --sand-light: #e5dac5;
  --sand-soft: #f2ece1;
  --brown: #6f563f;
  --brown-dark: #3d3128;
  --graphite: #24272a;
  --graphite-soft: #3b4147;
  --white: #ffffff;
  --blue: #2d77a4;
  --green: #587a63;
  --shadow: 0 24px 70px rgba(33, 29, 24, 0.18);
  --page-pad: 18px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--sand-soft);
}

body {
  margin: 0;
  color: var(--graphite);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.75), transparent 28rem),
    linear-gradient(180deg, #f7f1e7 0%, #efe5d6 42%, #f9f7f2 100%);
}

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

button,
a,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 10px var(--page-pad);
  color: var(--white);
  background: rgba(36, 39, 42, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.nav-links {
  display: none;
}

.header-cta,
.primary-btn,
.secondary-btn,
.text-cta,
.submit-btn {
  min-height: 46px;
  border-radius: 4px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.header-cta {
  margin-left: auto;
  padding: 0 14px;
  color: var(--graphite);
  background: var(--sand-light);
  font-size: 0.88rem;
  font-weight: 750;
}

.header-cta:hover,
.primary-btn:hover,
.submit-btn:hover,
.text-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px var(--page-pad) 46px;
  color: var(--white);
  background: var(--graphite);
}

.hero-media,
.hero-shade,
.hero-mark {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(19, 18, 16, 0.48) 48%, rgba(20, 18, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(64, 48, 35, 0.62), rgba(64, 48, 35, 0.12) 58%, rgba(7, 10, 12, 0.35));
}

.hero-mark {
  display: grid;
  place-items: center;
  width: 240px;
  height: 460px;
  inset: auto auto 2vh -80px;
  color: rgba(232, 217, 190, 0.62);
  font-size: 24rem;
  font-weight: 200;
  line-height: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 26px 0 10px;
  color: var(--sand-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-content > .eyebrow {
  margin-top: 0;
}

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

h1 {
  margin-bottom: 12px;
  font-size: 3.2rem;
  line-height: 0.95;
  font-weight: 780;
}

h2 {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 2.2rem;
  line-height: 1.02;
  font-weight: 780;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero-subtitle {
  margin-bottom: 14px;
  color: #f3e5cf;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.primary-btn,
.secondary-btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 820;
}

.primary-btn,
.submit-btn {
  color: var(--white);
  background: #7d1f2b;
}

.secondary-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 16px var(--page-pad);
  background: var(--graphite);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-grid article {
  min-height: 94px;
  padding: 16px 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--sand-light);
  font-size: 0.8rem;
  font-weight: 850;
}

.proof-grid strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.18;
}

.section {
  padding: 70px var(--page-pad);
}

.location,
.commercial {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-copy p,
.section-heading p,
.commercial-copy p,
.lead-copy p {
  color: #4d4f50;
  font-size: 1rem;
  line-height: 1.65;
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.commercial-copy .eyebrow,
.lead-copy .eyebrow {
  color: var(--brown);
}

.text-cta {
  margin-top: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--graphite);
  font-weight: 800;
}

.section-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sand-light);
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.amenities {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.95)),
    var(--sand-soft);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 32px;
  text-align: left;
}

.amenity-gallery {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.amenity-feature {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 220ms ease, transform 220ms ease;
}

.amenity-feature.is-changing {
  opacity: 0.42;
  transform: translateY(6px);
}

.amenity-feature img {
  width: 100%;
  height: clamp(280px, 58vw, 560px);
  object-fit: cover;
}

.amenity-feature div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(20, 23, 25, 0), rgba(20, 23, 25, 0.9));
}

.amenity-feature span,
.benefit-list span {
  color: var(--sand-light);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.amenity-feature h3 {
  margin: 10px 0 0;
  color: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.amenity-card {
  display: grid;
  grid-template-rows: 104px auto;
  overflow: hidden;
  min-height: 164px;
  padding: 0;
  color: var(--graphite);
  text-align: left;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(46, 38, 28, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.amenity-card:hover,
.amenity-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(46, 38, 28, 0.18);
}

.amenity-card:focus-visible {
  outline: 3px solid rgba(184, 160, 123, 0.54);
  outline-offset: 3px;
}

.amenity-card.is-active {
  display: none;
}

.amenity-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card span {
  display: block;
  padding: 12px;
  min-height: 60px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.fine-note {
  max-width: 1180px;
  margin: 18px auto 0;
  color: #606060;
  font-size: 0.9rem;
  line-height: 1.55;
}

.commercial {
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.benefit-list article {
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(67, 50, 34, 0.1);
}

.benefit-list span {
  color: var(--brown);
}

.benefit-list strong {
  display: block;
  margin: 6px 0;
  color: var(--graphite);
  font-size: 1.4rem;
  line-height: 1.1;
}

.benefit-list p {
  margin: 0;
  line-height: 1.45;
}

.lead-section {
  display: grid;
  gap: 26px;
  padding: 76px var(--page-pad);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 39, 42, 0.95), rgba(61, 49, 40, 0.94)),
    url("ativos/varanda.jpg") center/cover;
}

.lead-copy,
.lead-form {
  width: min(100%, 560px);
  margin: 0 auto;
}

.lead-copy h2 {
  color: var(--white);
}

.lead-copy p,
.lead-copy li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 20px 0 0;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(246, 239, 228, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-weight: 760;
}

.lead-form input {
  min-height: 50px;
  width: 100%;
  padding: 0 14px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid rgba(68, 55, 43, 0.18);
  border-radius: 4px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(184, 160, 123, 0.24);
}

.submit-btn {
  width: 100%;
  min-height: 52px;
}

.privacy-note,
.form-status {
  margin: 0;
  color: #59534b;
  font-size: 0.85rem;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 780;
}

.mobile-sticky {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: var(--white);
  background: #7d1f2b;
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(72, 18, 26, 0.34);
  font-weight: 850;
}

.mobile-sticky.is-hidden {
  transform: translateY(88px);
  opacity: 0;
  pointer-events: none;
}

.legal-footer {
  display: grid;
  gap: 12px;
  padding: 34px var(--page-pad) 88px;
  color: rgba(255, 255, 255, 0.74);
  background: #181a1b;
}

.legal-footer img {
  width: 170px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.legal-footer p {
  max-width: 1180px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

@media (min-width: 720px) {
  :root {
    --page-pad: 32px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .hero {
    align-items: center;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location,
  .commercial,
  .lead-section {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .location {
    align-items: center;
  }

  .amenity-feature div {
    padding: 34px;
  }

  .amenity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lead-copy,
  .lead-form {
    margin: 0;
  }

  .lead-copy {
    justify-self: end;
    align-self: center;
  }

  .lead-form {
    justify-self: start;
  }

  .mobile-sticky {
    display: none;
  }

  .legal-footer {
    padding-bottom: 40px;
  }
}

@media (min-width: 1060px) {
  :root {
    --page-pad: 48px;
  }

  .site-header {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero {
    padding-left: max(48px, calc((100vw - 1180px) / 2));
  }

  .hero-content {
    max-width: 780px;
  }

  h1 {
    font-size: 5.8rem;
  }

  .hero-subtitle {
    font-size: 1.7rem;
  }

  .proof-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .proof-grid article {
    min-height: 112px;
  }

  .amenity-gallery {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.65fr);
    align-items: start;
  }

  .amenity-feature {
    min-height: 100%;
  }

  .amenity-feature img {
    height: clamp(430px, 42vw, 620px);
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
