/* =========================================================
   SILENT PETRÓPOLIS — Landing Page
   Paleta e tipografia baseadas no Book do empreendimento
   ========================================================= */
:root {
  --bg: #EDF0E9;          /* off-white sálvia (fundo do book) */
  --bg-2: #E7E3DA;        /* bege dos painéis de planta */
  --paper: #F6F7F3;
  --green: #667A5F;       /* verde sálvia dos blocos */
  --green-dk: #4F6149;
  --ink: #16191A;         /* grafite do logo */
  --ink-2: #3C403D;
  --muted: #6F746D;
  --line: rgba(22, 25, 26, .12);
  --white: #fff;

  --font: 'Jost', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --track: .32em;
  --radius: 2px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink-2);
  font-family: var(--font); font-weight: 300; font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
strong { font-weight: 500; color: var(--ink); }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Logo (SVG como máscara = herda a cor) ---------- */
.logo {
  display: inline-block; width: 112px; aspect-ratio: 434 / 119;
  background: currentColor; color: var(--ink);
  -webkit-mask: url(../img/logo-silent.svg) no-repeat center / contain;
          mask: url(../img/logo-silent.svg) no-repeat center / contain;
}
.logo--light { color: var(--bg); width: 150px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  margin: 0 0 18px; font-size: 12px; font-weight: 500; letter-spacing: var(--track);
  text-transform: uppercase; color: var(--green);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(255,255,255,.85); }

.h2 {
  margin: 0 0 22px; color: var(--ink); font-weight: 300;
  font-size: clamp(30px, 4.2vw, 52px); line-height: 1.12; letter-spacing: -.01em;
  text-wrap: balance;
}
.h2--light { color: #fff; }
.section__sub { color: var(--muted); max-width: 560px; margin: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border: 1px solid transparent; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 42px; padding: 0 20px; font-size: 12px; }
.btn--block { width: 100%; }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: var(--green); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dk); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--text { background: none; border: 0; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 15px; min-height: 44px; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  color: #fff;
}
.header .logo { color: #fff; transition: color .4s var(--ease); }
.header.is-solid { background: rgba(237,240,233,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); color: var(--ink); }
.header.is-solid .logo { color: var(--ink); }
.header__inner { height: 100%; max-width: 1400px; margin: 0 auto; padding-inline: var(--gutter); display: flex; align-items: center; gap: 32px; }
.header__logo { display: flex; }
.header__nav { display: flex; gap: 34px; margin-left: auto; }
.header__nav a { text-decoration: none; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 400; opacity: .85; }
.header__nav a:hover { opacity: 1; }
.header .btn--dark { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.header.is-solid .btn--dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg img { animation: heroZoom 18s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,17,15,.72) 0%, rgba(14,17,15,.35) 48%, rgba(14,17,15,.15) 100%),
    linear-gradient(0deg, rgba(14,17,15,.55) 0%, rgba(14,17,15,0) 40%);
}
.hero__inner {
  position: relative; width: 100%; max-width: 1400px; margin: 0 auto;
  padding: calc(var(--header-h) + 48px) var(--gutter) 72px;
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
}
.hero__title { margin: 0 0 24px; font-weight: 300; font-size: clamp(38px, 5.4vw, 74px); line-height: 1.04; letter-spacing: -.015em; color: #fff; max-width: 13ch; text-wrap: balance; }
.hero__lead { max-width: 540px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.88); margin: 0 0 28px; }
.hero__lead strong { color: #fff; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.hero__chips li { border: 1px solid rgba(255,255,255,.4); padding: 8px 14px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.6); border-radius: 12px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Card / Formulário ---------- */
.card { background: var(--paper); color: var(--ink-2); padding: 34px 32px 26px; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.card__kicker { margin: 0 0 8px; font-size: 11px; letter-spacing: var(--track); text-transform: uppercase; color: var(--green); font-weight: 500; }
.card__title { margin: 0 0 22px; font-weight: 400; font-size: 23px; line-height: 1.25; color: var(--ink); }

.lead-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 300; }
.field input, .field select {
  width: 100%; height: 50px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); font: inherit; font-size: 16px; font-weight: 400; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23667A5F' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input::placeholder { color: #a3a8a0; }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(102,122,95,.18); }
.field.is-invalid input, .field.is-invalid select { border-color: #B4533A; box-shadow: 0 0 0 3px rgba(180,83,58,.12); }
.field__err { font-size: 13px; color: #B4533A; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form__legal { margin: 2px 0 0; font-size: 12px; line-height: 1.5; color: var(--muted); text-align: center; }
.form__error { margin: 0; padding: 10px 14px; background: rgba(180,83,58,.08); color: #8F3E2A; font-size: 14px; border-radius: var(--radius); }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--bg); }
.stats__inner { max-width: 1400px; margin: 0 auto; padding: 30px var(--gutter); display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { display: grid; justify-items: center; text-align: center; gap: 4px; padding: 6px 12px; }
.stat + .stat { border-left: 1px solid rgba(237,240,233,.14); }
.stat__num { font-size: clamp(28px, 3vw, 40px); font-weight: 300; line-height: 1; color: #fff; }
.stat__num small { font-size: .45em; letter-spacing: .04em; }
.stat__label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(237,240,233,.65); }

/* ---------- Seções ---------- */
.section { padding-block: clamp(80px, 11vw, 150px); }
.section--flush { padding-top: 0; }
.section__head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 760px; }
.section__head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

/* Conceito */
.conceito__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.conceito__text p { max-width: 520px; }
.quote { margin: 38px 0 0; padding: 26px 0 0 26px; border-left: 1px solid var(--green); }
.quote p { margin: 0 0 12px; font-size: 20px; line-height: 1.5; color: var(--ink); font-weight: 300; }
.quote cite { font-style: normal; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--green); }
.conceito__media { position: relative; aspect-ratio: 1 / 1.08; }
.conceito__img1 { position: absolute; left: 0; top: 0; width: 64%; aspect-ratio: 4 / 5; object-fit: cover; }
.conceito__img2 { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 5; object-fit: cover; border: 10px solid var(--bg); }
.conceito__media { isolation: isolate; }
.conceito__media::before { content: ''; position: absolute; left: -6%; top: 30%; width: 44%; height: 60%; background: var(--green); z-index: -1; }

/* Apartamento */
.apto__hero { position: relative; height: clamp(440px, 78vh, 820px); overflow: hidden; }
.apto__hero img { width: 100%; height: 100%; object-fit: cover; }
.apto__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,17,15,.72), rgba(14,17,15,0) 55%); }
.apto__caption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) clamp(36px, 6vw, 70px); color: rgba(255,255,255,.9); }
.apto__caption p:last-child { max-width: 520px; margin: 0; }
.apto__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-top: 28px; }
.apto__fig { margin: 0; }
.apto__fig img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.apto__fig figcaption { padding-top: 16px; font-size: 15px; color: var(--muted); }
.apto__fig figcaption strong { display: block; font-weight: 400; color: var(--ink); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 4px; }

/* Plantas */
.plantas { background: var(--paper); }
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin-bottom: 26px; -webkit-overflow-scrolling: touch; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: 0 0 auto; border: 1px solid var(--line); background: transparent; padding: 12px 18px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; border-radius: 40px; color: var(--ink-2); transition: all .25s var(--ease); white-space: nowrap; }
.tab:hover { border-color: var(--green); color: var(--green); }
.tab.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.plan { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: stretch; }
.plan__img { position: relative; border: 0; padding: clamp(16px, 3vw, 40px); background: var(--bg-2); display: grid; place-items: center; min-height: 360px; cursor: zoom-in; }
.plan__img img { width: 100%; max-height: 560px; object-fit: contain; transition: opacity .35s var(--ease), transform .6s var(--ease); }
.plan__img:hover img { transform: scale(1.015); }
.plan__img.is-loading img { opacity: .15; }
.plan__zoom { position: absolute; right: 14px; bottom: 14px; background: rgba(22,25,26,.8); color: #fff; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 8px 12px; }
.plan__info { background: var(--bg); padding: 34px 30px; display: flex; flex-direction: column; }
.plan__tag { margin: 0 0 6px; font-size: 11px; letter-spacing: var(--track); text-transform: uppercase; color: var(--green); font-weight: 500; }
.plan__name { margin: 0 0 20px; font-weight: 300; font-size: 28px; line-height: 1.15; color: var(--ink); }
.plan__specs { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 0; }
.plan__specs li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.plan__specs li::before { content: ''; flex: 0 0 6px; height: 6px; margin-top: 9px; border-radius: 50%; background: var(--green); }
.plan__desc { font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.plan__info .btn { margin-top: auto; }
.plan__note { font-size: 12px; color: var(--muted); margin: 12px 0 0; text-align: center; }

/* Diferenciais */
.difs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dif { background: var(--bg); padding: clamp(28px, 3.5vw, 48px); }
.dif__icon { display: block; width: 48px; height: 48px; color: var(--green); margin-bottom: 22px; }
.dif h3 { margin: 0 0 18px; font-size: 13px; font-weight: 500; letter-spacing: var(--track); text-transform: uppercase; color: var(--ink); }
.dif ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dif li { font-size: 15.5px; line-height: 1.45; padding-left: 18px; position: relative; }
.dif li::before { content: ''; position: absolute; left: 0; top: .7em; width: 8px; height: 1px; background: var(--green); }

/* Lazer / galeria */
.lazer { background: var(--bg-2); padding-bottom: clamp(60px, 8vw, 110px); }
.gallery__nav { display: flex; gap: 10px; }
.round-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--ink); background: transparent; font-size: 18px; transition: all .25s; }
.round-btn:hover { background: var(--ink); color: var(--bg); }
.gallery {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { display: none; }
.gal { flex: 0 0 min(78vw, 640px); margin: 0; scroll-snap-align: start; }
.gal img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gal figcaption { padding-top: 14px; font-size: 15px; color: var(--muted); }
.gal figcaption strong { display: block; color: var(--ink); font-weight: 400; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }
.lazer__list { margin-top: 44px; }
.lazer__list p { margin: 0; padding-top: 28px; border-top: 1px solid var(--line); font-size: 14px; letter-spacing: .08em; color: var(--ink-2); }

/* Banda CTA */
.band { position: relative; padding-block: clamp(90px, 13vw, 170px); color: #fff; overflow: hidden; text-align: center; }
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.band::before { content: ''; position: absolute; inset: 0; background: rgba(16,19,22,.58); z-index: 1; }
.band__inner { position: relative; z-index: 2; max-width: 820px; }
.band__inner p { color: rgba(255,255,255,.85); margin: 0 auto 34px; max-width: 520px; }
.band__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Localização */
.local__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.local__addr { margin: 26px 0; padding: 18px 22px; background: var(--paper); border-left: 2px solid var(--green); font-size: 15px; }
.local__pois { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.local__pois li { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.4); }
.local__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.local__photo { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.local__map { position: relative; min-height: 420px; background: var(--bg-2); }
.local__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.85) contrast(.95); }

/* Contato */
.contato { background: var(--paper); }
.contato__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.contato__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.contato__form .section__sub { margin-bottom: 30px; }

/* Footer */
.footer { background: var(--ink); color: rgba(237,240,233,.7); padding: 64px 0 120px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; padding-bottom: 36px; border-bottom: 1px solid rgba(237,240,233,.14); }
.footer__contact { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer__contact a { text-decoration: none; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.footer__contact a:hover { color: #fff; }
.footer__legal { margin: 30px 0 0; font-size: 11.5px; line-height: 1.65; color: rgba(237,240,233,.45); }

/* Mobile bar */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: 1fr 1.4fr; background: var(--ink); padding-bottom: env(safe-area-inset-bottom); transform: translateY(110%); transition: transform .4s var(--ease); }
.mbar.is-visible { transform: none; }
.mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 58px; text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.mbar__wa { color: #fff; }
.mbar__wa svg { width: 20px; height: 20px; }
.mbar__cta { background: var(--green); color: #fff; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(12,14,13,.94); display: grid; place-items: center; }
.lightbox__stage { width: 100%; height: 100%; overflow: auto; display: grid; place-items: center; touch-action: pan-x pan-y pinch-zoom; }
.lightbox__stage img { max-width: 94vw; max-height: 88vh; object-fit: contain; background: var(--bg-2); padding: 16px; transition: max-width .3s, max-height .3s; cursor: zoom-in; }
.lightbox__stage.is-zoomed { place-items: start; }
.lightbox__stage.is-zoomed img { max-width: none; max-height: none; width: 220vw; cursor: zoom-out; }
.lightbox__close { position: fixed; top: 14px; right: 18px; z-index: 2; width: 48px; height: 48px; border: 0; background: rgba(255,255,255,.1); color: #fff; font-size: 30px; line-height: 1; border-radius: 50%; }
.lightbox__hint { position: fixed; bottom: 14px; left: 0; right: 0; margin: 0; text-align: center; color: rgba(255,255,255,.55); font-size: 13px; pointer-events: none; }

/* Modal sucesso */
.modal { position: fixed; inset: 0; z-index: 110; background: rgba(12,14,13,.6); display: grid; place-items: center; padding: 20px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal__box { background: var(--paper); max-width: 440px; width: 100%; padding: 40px 34px 24px; text-align: center; animation: pop .45s var(--ease); }
.modal__box .logo { width: 120px; margin-bottom: 18px; }
.modal__box h3 { margin: 0 0 10px; font-weight: 400; font-size: 26px; color: var(--ink); }
.modal__box p { margin: 0 0 24px; color: var(--muted); font-size: 16px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}

/* =================== Responsivo =================== */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr 360px; gap: 36px; }
  .plan { grid-template-columns: 1fr; }
  .header__nav { display: none; }
  .header__inner .btn { margin-left: auto; }
}

@media (max-width: 899px) {
  :root { --header-h: 62px; }
  body { font-size: 16px; }
  .logo { width: 96px; }
  .hero { min-height: auto; align-items: flex-end; }
  .hero__shade { background: linear-gradient(0deg, rgba(14,17,15,.88) 0%, rgba(14,17,15,.55) 45%, rgba(14,17,15,.2) 100%); }
  .hero__inner { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 16vh); padding-bottom: 28px; gap: 24px; }
  .hero__title { font-size: 36px; margin-bottom: 14px; }
  .hero__lead { font-size: 15px; margin-bottom: 0; }
  .hero__chips { display: none; }
  .hero__scroll { display: none; }
  .card { padding: 26px 20px 20px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
  .card__title { font-size: 21px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 18px 0; padding-block: 26px; }
  .stat + .stat { border-left: 0; }
  .stat:last-child { grid-column: 1 / -1; }
  .conceito__grid, .local__grid, .contato__grid { grid-template-columns: 1fr; }
  .conceito__media { order: -1; }
  .apto__grid { grid-template-columns: 1fr; }
  .difs__grid { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .gallery__nav { display: none; }
  .gal { flex-basis: 84vw; }
  .local__media { grid-template-columns: 1fr; }
  .local__photo { min-height: 260px; aspect-ratio: 16 / 10; }
  .local__map { min-height: 300px; }
  .contato__media { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .plan__img { min-height: 220px; padding: 12px; }
  .plan__info { padding: 26px 22px; }
  .mbar { display: grid; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}
