:root {
  --ink: #171812;
  --olive: #4e5830;
  --gold: #d7be86;
  --cream: #f5efe3;
  --paper: #fbf8f2;
  --white: #fff;
  --muted: #78766e;
  --line: #e5ddcf;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
nav {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(20, 21, 17, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}
.navin {
  max-width: 1240px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}
.links a {
  opacity: 0.88;
  position: relative;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}
.links a:not(.mini)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.links a:not(.mini):hover,
.links a:not(.mini):focus-visible {
  color: var(--gold);
  opacity: 1;
}
.links a:not(.mini):hover::after,
.links a:not(.mini):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.links .mini {
  opacity: 1;
  background: var(--gold);
  color: #222;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.links .mini:hover,
.links .mini:focus-visible {
  background: #ecd49b;
  color: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(10, 11, 8, 0.08), rgba(10, 11, 8, 0.72)),
    url("assets/Imagem de fundo - Hero.jpeg") center/cover no-repeat;
  color: white;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 25%,
    rgba(215, 190, 134, 0.18),
    transparent 35%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 145px 22px 74px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f0d8a1;
  font-weight: 800;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
h1 {
  font-size: clamp(50px, 8vw, 108px);
  line-height: 0.88;
  max-width: 900px;
  margin: 14px 0 20px;
}
.hero p {
  font-size: clamp(18px, 2vw, 24px);
  max-width: 720px;
  color: #f0ede5;
  line-height: 1.55;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}
.btn:focus-visible,
.links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.primary {
  background: var(--gold);
  color: #212217;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.primary:hover,
.primary:focus-visible {
  background: #ecd49b;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.28);
}
.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.ghost:hover,
.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.2);
}
.section {
  padding: 94px 22px;
}
.wrap {
  max-width: 1240px;
  margin: auto;
}
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
  font-weight: 900;
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  margin: 10px 0 16px;
}
.lead {
  font-size: 19px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 800px;
}

.maps {
  display: inline;
  width: fit-content;
}

.maps:hover {
  text-decoration: underline;
  color: var(--muted);
  transition:
    color 0.5s ease,
    text-decoration 0.8s ease;
}

.split {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 50px;
  align-items: center;
}
.visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(25, 25, 18, 0.15);
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.num {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
}
.num b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.dark {
  background: linear-gradient(180deg, #24271e, #181a15);
  color: white;
}
.dark .lead {
  color: #c9c7bf;
}
.dark .kicker {
  color: #dfca98;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.feature {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 23px;
  min-height: 145px;
}
.feature strong {
  display: block;
  margin-bottom: 6px;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.controls {
  display: flex;
  gap: 8px;
}
.control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  font-size: 22px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.control:hover:not(:disabled),
.control:focus-visible:not(:disabled) {
  background: var(--olive);
  border-color: var(--olive);
  color: white;
  transform: translateY(-2px);
}
.control:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.control:disabled {
  background: #eeece6;
  border-color: #e1ddd4;
  color: #aaa79f;
  opacity: 0.55;
  cursor: default;
}
.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 33%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px 18px;
  margin-top: 28px;
}
.track::-webkit-scrollbar {
  display: none;
}
.cardimg {
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: #ddd;
}
.cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardimg span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(18, 20, 15, 0.78);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.cardimg .gallery-label-opaque {
  background: rgba(18, 20, 15, 0.96);
}
.units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.unit {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.unit img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.unitbody {
  padding: 22px;
}
.unit h3 {
  font-size: 30px;
  margin: 0 0 8px;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tag {
  background: #f0ebe1;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}
.plans {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.planview {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: sticky;
  top: 90px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.planview img {
  width: 100%;
  transition:
    opacity 0.2s ease,
    transform 0.4s ease;
}
.planview:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(25, 25, 18, 0.12);
}
.planview:hover img {
  transform: scale(1.025);
}
.tabs {
  display: grid;
  gap: 10px;
}
.tab {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.tab:hover,
.tab:focus-visible {
  transform: translateX(7px);
  border-color: var(--olive);
  box-shadow: 0 10px 22px rgba(25, 25, 18, 0.1);
}
.tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.tab.active {
  background: #24271e;
  color: white;
  border-color: #24271e;
}
.tab.active:hover,
.tab.active:focus-visible {
  background: #343a2b;
  border-color: #343a2b;
}
.contact {
  padding: 44px;
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(18, 20, 15, 0.94), rgba(18, 20, 15, 0.78)),
    url("assets/Imagem de fundo - Contato.jpeg") center/cover no-repeat;
  color: white;
}
.contact .lead {
  color: #e5e1d7;
}
footer {
  background: #10120e;
  color: #d8d7d0;
  padding: 48px 22px;
}
.foot {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
.small {
  font-size: 12px;
  color: #9b9e94;
  line-height: 1.6;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wpp-icon {
  width: 35px;
  height: 35px;
}

.wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}
.wa:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.75s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 950px) {
  .links a:not(.mini) {
    display: none;
  }
  .split,
  .plans,
  .foot {
    grid-template-columns: 1fr;
  }
  .numbers,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .units {
    grid-template-columns: 1fr;
  }
  .track {
    grid-auto-columns: 78%;
  }
  .planview {
    position: relative;
    top: auto;
  }
}
@media (max-width: 560px) {
  .numbers,
  .features {
    grid-template-columns: 1fr;
  }
  .track {
    grid-auto-columns: 90%;
  }
  .hero-content {
    padding-bottom: 60px;
  }
  .contact {
    padding: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
