/* GUS SKYY Construction — site v2 (set/2026)
   Mundo visual: navy quase preto + porcelana, foto de obra grande, Roboto leve.
   Referência de acabamento: kohler.com. Sem framework, sem build de CSS. */

@font-face { font-family: "Roboto"; font-weight: 300; font-style: normal; font-display: swap; src: url("/fonts/roboto-300.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 400; font-style: normal; font-display: swap; src: url("/fonts/roboto-400.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 500; font-style: normal; font-display: swap; src: url("/fonts/roboto-500.woff2") format("woff2"); }
@font-face { font-family: "Bebas Neue"; font-weight: 400; font-style: normal; font-display: swap; src: url("/fonts/BebasNeue-Regular.woff2") format("woff2"); }

:root {
  --ink: #15203c;          /* navy profundo da marca (logo) */
  --ink-2: #1b264f;        /* navy da marca #1B264F */
  --navy: #1b264f;
  --gold: #c9a24b;         /* dourado do logo: só acento */
  --gold-hi: #d9b862;
  --gold-ink: #8a6a2a;     /* dourado legível em fundo claro */
  --bone: #f7f7f5;         /* off-white da marca: texto no escuro, fundo claro */
  --bone-2: #ecebe6;
  --stone: #a3abc2;        /* texto secundário no escuro (7:1 sobre --ink) */
  --graphite: #1a1f2e;     /* texto no claro */
  --slate: #4f5566;        /* secundário no claro (6.8:1 sobre --bone) */
  --line: rgb(243 239 231 / 0.16);
  --line-dark: rgb(26 31 46 / 0.14);
  --focus: #c9a24b;
  --ok: #7bc242;
  --err: #ff8a73;

  --f: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mark: "Bebas Neue", "Roboto", sans-serif;

  --gutter: clamp(20px, 4.5vw, 72px);
  --max: 1360px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--ink); color: var(--bone);
  font: 400 1.0625rem/1.6 var(--f); letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, video, picture { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.25em; text-decoration-thickness: 1px; }
::selection { background: var(--gold); color: var(--ink); }
.light ::selection { background: var(--navy); color: var(--bone); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.light :focus-visible { outline-color: var(--navy); }
html { scrollbar-color: #3a4263 var(--ink); }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--bone); color: var(--ink); padding: 10px 16px; }
.skip:focus { left: 8px; }

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

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 300; text-wrap: balance; }
.d1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); line-height: 1.02; letter-spacing: -0.025em; }
.d2 { font-family: var(--f-mark); font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 0.98; letter-spacing: 0.01em; }
h2.d2::after { content: ""; display: block; width: 56px; height: 2px; background: var(--gold); margin-top: 20px; }
.d3 { font-family: var(--f-mark); font-weight: 400; font-size: clamp(1.8rem, 2.8vw, 2.5rem); line-height: 1; letter-spacing: 0.015em; }
.h4 { font-size: 1.125rem; font-weight: 500; letter-spacing: 0; line-height: 1.35; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.55; font-weight: 300; color: var(--stone); max-width: 36em; }
.light .lede { color: var(--slate); }
p { margin: 0; max-width: 68ch; }
.muted { color: var(--stone); }
.light .muted { color: var(--slate); }
.small { font-size: 0.875rem; line-height: 1.5; }
.num { font-variant-numeric: tabular-nums; }

/* ---------- Botões e links ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 52px; padding: 0 28px; border: 1px solid var(--bg); border-radius: 2px;
  background: var(--bg); color: var(--fg); font: 500 0.98rem/1 var(--f); letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { --bg: var(--gold-hi); }
.btn--ghost { --bg: transparent; --fg: var(--bone); border-color: rgb(243 239 231 / 0.55); }
.btn--ghost:hover { --bg: rgb(243 239 231 / 0.08); border-color: var(--bone); }
.light .btn { --bg: var(--navy); --fg: var(--bone); }
.light .btn:hover { --bg: var(--ink); }
.light .btn--ghost { --bg: transparent; --fg: var(--graphite); border-color: rgb(26 31 46 / 0.4); }
.light .btn--ghost:hover { --bg: rgb(26 31 46 / 0.05); border-color: var(--graphite); }
.btn[disabled] { opacity: 0.55; cursor: progress; }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow, .link:hover .arrow { transform: translateX(4px); }

.link { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 500; font-size: 0.98rem; text-decoration: underline; text-decoration-color: rgb(243 239 231 / 0.45); padding: 10px 0; }
.link:hover { text-decoration-color: var(--gold); }
.light .link { text-decoration-color: rgb(26 31 46 / 0.35); }
.arrow { width: 1.1em; height: 1.1em; flex: none; display: inline-block; transition: transform 0.35s var(--ease); }

/* ---------- Header ---------- */
.hdr { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h); color: var(--bone); transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.hdr::before { content: ""; position: absolute; inset: 0 0 -40px; background: linear-gradient(to bottom, rgb(21 32 60 / 0.55), transparent); pointer-events: none; transition: opacity 0.4s; }
.hdr.is-solid { background: var(--ink); box-shadow: 0 1px 0 var(--line); }
.hdr.is-solid::before { opacity: 0; }
.hdr__in { position: relative; height: 100%; display: flex; align-items: center; gap: 32px; }
.mark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.mark .logo { height: 54px; width: auto; }
.mark--stacked .logo { height: 112px; }
.hdr::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); }
.mark b { font: 400 1.7rem/1 var(--f-mark); letter-spacing: 0.06em; }
.mark small { display: block; font: 500 0.75rem/1 var(--f); letter-spacing: 0.2em; color: var(--stone); margin-top: 3px; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-size: 0.93rem; font-weight: 400; text-decoration: none; padding: 8px 0; color: rgb(243 239 231 / 0.86); border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--bone); border-bottom-color: var(--bone); }
.hdr__cta { display: flex; align-items: center; gap: 20px; }
.hdr__tel { font-size: 0.93rem; text-decoration: none; color: rgb(243 239 231 / 0.86); white-space: nowrap; }
.hdr__tel:hover { color: var(--bone); }
.hdr .btn { min-height: 42px; padding: 0 20px; font-size: 0.9rem; }
.menu-btn { display: none; margin-left: auto; width: 48px; height: 48px; background: none; border: 0; color: inherit; cursor: pointer; padding: 12px; }
.menu-btn span { display: block; height: 1.5px; background: currentColor; margin: 6px 0; transition: transform 0.35s var(--ease), opacity 0.2s; }
.menu-open .menu-btn span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
.menu-open .menu-btn span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.sheet { position: fixed; inset: 0; z-index: 40; background: var(--ink); padding: calc(var(--header-h) + 24px) var(--gutter) 32px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s 0.35s; }
.menu-open .sheet { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.sheet a.big { font-size: 1.9rem; font-weight: 300; letter-spacing: -0.015em; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sheet .sub { display: flex; flex-wrap: wrap; gap: 4px 20px; padding: 14px 0 6px; }
.sheet .sub a { color: var(--stone); text-decoration: none; padding: 8px 0; }
.sheet .btn { margin-top: 24px; }
.sheet .hdr__tel { margin-top: 16px; font-size: 1.05rem; }

@media (max-width: 1439px) { .hdr__cta .hdr__tel { display: none; } }
@media (max-width: 1199px) {
  .nav { display: none; }
  .hdr__cta { margin-left: auto; }
  .menu-btn { display: block; margin-left: 4px; }
}
@media (max-width: 520px) { .hdr__in { gap: 12px; } .hdr__cta .btn { min-height: 40px; padding: 0 14px; font-size: 0.86rem; } .mark .logo { height: 42px; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: max(640px, 100svh); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero--short { min-height: max(560px, 78svh); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform-origin: 60% 40%; }
.js .hero__media img { animation: settle 9s var(--ease) both; }
@media (max-width: 700px) {
  .hero::after { background: linear-gradient(to top, rgb(21 32 60 / 0.96) 0%, rgb(21 32 60 / 0.86) 42%, rgb(21 32 60 / 0.35) 68%, rgb(21 32 60 / 0.3) 100%); }
}
@keyframes settle { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgb(21 32 60 / 0.92) 0%, rgb(21 32 60 / 0.62) 32%, rgb(21 32 60 / 0.08) 62%, rgb(21 32 60 / 0.25) 100%),
    linear-gradient(to right, rgb(21 32 60 / 0.55) 0%, transparent 60%); }
.hero__body { padding-bottom: clamp(40px, 8vh, 96px); padding-top: calc(var(--header-h) + 40px); width: 100%; }
.hero h1 { max-width: 13em; }
.hero .lede { margin-top: 22px; color: rgb(243 239 231 / 0.84); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; margin-top: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.86rem; color: rgb(243 239 231 / 0.78); max-width: 760px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.star { width: 14px; height: 14px; color: var(--gold); }
.js .rise { opacity: 0; transform: translateY(18px); }
.js .is-in .rise, .js .rise.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .hero .rise { animation: rise 1.1s var(--ease) both; }
.js .hero .rise:nth-child(2) { animation-delay: 0.12s; } .js .hero .rise:nth-child(3) { animation-delay: 0.24s; } .js .hero .rise:nth-child(4) { animation-delay: 0.36s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js .hero__media img, .js .hero .rise { animation: none; } .js .rise { opacity: 1; transform: none; } }

/* ---------- Bandas ---------- */
.band { padding: clamp(88px, 12vw, 168px) 0; position: relative; }
.band--tight { padding: clamp(64px, 8vw, 112px) 0; }
.light { background: var(--bone); color: var(--graphite); }
.deep { background: var(--ink-2); }
.head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 24px 64px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.head .lede { justify-self: start; }
@media (max-width: 860px) { .head { grid-template-columns: 1fr; } }

/* ---------- Caminhos (3 formas de fazer o banheiro) ---------- */
.paths { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); }
.tile { position: relative; display: block; text-decoration: none; overflow: hidden; background: var(--ink-2); aspect-ratio: 4 / 5; isolation: isolate; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgb(21 32 60 / 0.9), rgb(21 32 60 / 0.35) 45%, transparent 70%); z-index: 0; }
.tile__txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(20px, 2.4vw, 32px); }
.tile__price { font: 400 clamp(2.3rem, 3.6vw, 3.2rem)/0.9 var(--f-mark); letter-spacing: 0.02em; margin-bottom: 10px; color: var(--gold); }
.tile__txt p { color: rgb(243 239 231 / 0.8); margin-top: 8px; font-size: 0.97rem; }
.tile .link { margin-top: 10px; padding: 6px 0; }
.paths .tile { aspect-ratio: auto; height: clamp(480px, 44vw, 660px); }
@media (max-width: 960px) {
  .paths { grid-template-columns: 1fr 1fr; }
  .paths .tile { height: auto; aspect-ratio: 4 / 5; }
  .paths .tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
}
@media (max-width: 600px) {
  .paths { grid-template-columns: 1fr; }
  .paths .tile, .paths .tile:first-child { aspect-ratio: 4 / 4.6; }
}

/* ---------- Antes e depois (assinatura) ---------- */
.ba { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.ba__frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-2); touch-action: pan-y; user-select: none; -webkit-user-select: none; cursor: ew-resize; }
.ba__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__rule { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 1px; background: var(--bone); transform: translateX(-0.5px); pointer-events: none; }
.ba__knob { position: absolute; top: 50%; left: var(--pos, 50%); width: 56px; height: 56px; margin: -28px 0 0 -28px; border-radius: 50%; background: var(--bone); color: var(--ink); display: grid; place-items: center; box-shadow: 0 8px 30px rgb(0 0 0 / 0.35); pointer-events: none; transition: transform 0.3s var(--ease); }
.ba__frame:active .ba__knob { transform: scale(0.92); }
.ba__knob svg { width: 26px; height: 26px; }
.ba__tag { position: absolute; top: 16px; padding: 6px 10px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: rgb(21 32 60 / 0.72); color: var(--bone); pointer-events: none; }
.ba__tag--b { left: 16px; } .ba__tag--a { right: 16px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: ew-resize; }
.ba__range:focus-visible + .ba__knob { outline: 2px solid var(--focus); outline-offset: 4px; }
.facts { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.95rem; }
.facts dt { color: var(--stone); }
.facts dd { margin: 0; }
@media (max-width: 860px) { .ba { grid-template-columns: 1fr; } .ba__frame { order: -1; } }

/* ---------- Projetos ---------- */
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.proj { text-decoration: none; display: block; }
.proj__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone-2); }
.proj__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.proj:hover .proj__img img { transform: scale(1.04); }
.proj h3 { font-size: 1.12rem; font-weight: 400; line-height: 1.3; margin-top: 16px; letter-spacing: -0.005em; }
.proj p { font-size: 0.9rem; margin-top: 4px; }
.proj .link { font-size: 0.9rem; padding: 8px 0 0; }
@media (max-width: 960px) {
  .projects { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 8px; scrollbar-width: none; }
  .projects::-webkit-scrollbar { display: none; }
  .proj { flex: 0 0 min(72vw, 320px); scroll-snap-align: start; }
}

/* ---------- Calculadora (faixa clara) ---------- */
.calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.calc__qs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); counter-reset: q; }
.calc__qs li { counter-increment: q; display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; }
.calc__qs li::before { content: counter(q, decimal-leading-zero); font-size: 0.8rem; font-weight: 500; color: var(--slate); font-variant-numeric: tabular-nums; }
.calc__qs li span { font-size: 0.85rem; color: var(--slate); font-weight: 400; }
.calc .btn { margin-top: 36px; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

/* ---------- Processo ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 28px 28px 0 0; position: relative; }
.step::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.step b { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.step h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); line-height: 1.3; letter-spacing: -0.01em; }
.step p { margin-top: 12px; color: var(--stone); font-size: 0.97rem; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); margin-left: 3px; }
  .step { padding: 0 0 40px 32px; }
  .step::before { top: 6px; left: -4px; }
}

/* ---------- Depoimentos ---------- */
.quote { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.quote blockquote { margin: 0; }
.quote blockquote p { font-size: clamp(1.5rem, 2.6vw, 2.3rem); line-height: 1.3; font-weight: 300; letter-spacing: -0.012em; max-width: 26em; }
.quote cite { display: block; margin-top: 28px; font-style: normal; color: var(--slate); font-size: 0.95rem; }
.quote__more { display: grid; gap: 28px; }
.quote__more figure { margin: 0; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.quote__more p { font-size: 1rem; }
.quote__more figcaption { margin-top: 10px; color: var(--slate); font-size: 0.88rem; }
.rating { display: flex; align-items: baseline; gap: 14px; margin-bottom: 40px; }
.rating strong { font: 400 4.2rem/0.85 var(--f-mark); letter-spacing: 0.01em; }
.rating .stars { display: flex; gap: 3px; }
.rating .star { color: var(--gold-ink); }
.rating .stars svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .quote { grid-template-columns: 1fr; } }

/* ---------- Outros serviços ---------- */
.svcs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.svc { text-decoration: none; display: block; }
.svc__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-2); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: saturate(0.92); }
.svc:hover .svc__img img { transform: scale(1.04); }
.svc h3 { margin-top: 16px; font-size: 1.2rem; font-weight: 400; }
.svc p { margin-top: 4px; font-size: 0.92rem; color: var(--stone); }
@media (max-width: 960px) { .svcs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .svcs { grid-template-columns: 1fr; } .svc__img { aspect-ratio: 16 / 9; } }

/* ---------- Formulário ---------- */
.cta { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 112px); align-items: start; }
.cta__aside { position: sticky; top: calc(var(--header-h) + 32px); }
.cta__aside .contact, .cta__proof .contact { margin-top: 36px; display: grid; gap: 0; font-size: 1rem; }
.contact a { padding: 10px 0; }
.cta__aside .contact a { text-decoration: none; }
.cta__aside .contact a:hover { text-decoration: underline; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; color: var(--stone); }
.field input, .field select {
  width: 100%; min-height: 54px; padding: 0 16px; border: 1px solid rgb(243 239 231 / 0.28); border-radius: 2px;
  background: rgb(243 239 231 / 0.04); color: var(--bone); font: 400 1.02rem/1.2 var(--f); caret-color: var(--bone);
  transition: border-color 0.3s, background 0.3s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3efe7' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field select option { color: #111; }
.field input::placeholder { color: rgb(163 171 194 / 0.9); }
.field input:hover, .field select:hover { border-color: rgb(243 239 231 / 0.5); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgb(243 239 231 / 0.07); }
.field input[aria-invalid="true"] { border-color: var(--err); }
.field .err { font-size: 0.82rem; color: var(--err); min-height: 0; }
.form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
.form .fine { grid-column: 1 / -1; font-size: 0.8rem; color: var(--stone); line-height: 1.5; }
.form__done { display: none; padding: 32px 0; border-top: 1px solid var(--line); }
.form__done h2 { font-size: 1.8rem; }
.form__done p { margin-top: 12px; color: var(--stone); }
.form.is-done { display: none; }
.form.is-done + .form__done { display: block; }
.form__fail { grid-column: 1 / -1; color: var(--err); font-size: 0.92rem; display: none; }
.form.is-fail .form__fail { display: block; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; } .cta__aside { position: static; } }
@media (max-width: 520px) { .form { grid-template-columns: 1fr; } }

/* ---------- Páginas internas ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 112px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-2); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split .lede, .split p + p { margin-top: 20px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev > :first-child { order: 0; } }

.list { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); }
.light .list { border-top-color: var(--line-dark); }
.list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: baseline; }
.light .list li { border-bottom-color: var(--line-dark); }
.list li::before { content: ""; width: 6px; height: 6px; flex: none; border-radius: 50%; background: currentColor; opacity: 0.55; transform: translateY(-2px); }

.compare { width: 100%; border-collapse: collapse; font-size: 1rem; }
.compare th, .compare td { text-align: left; padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line-dark); vertical-align: top; }
.compare thead th { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.compare td:last-child { font-weight: 500; }
.compare tbody th { font-weight: 400; color: var(--slate); width: 26%; }

.price-block { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.price-block strong { font: 400 clamp(4.2rem, 9vw, 7.5rem)/0.82 var(--f-mark); letter-spacing: 0.01em; }
.price-block span { color: var(--stone); max-width: 18em; }

.palettes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.palette { padding: 28px; background: var(--bone); color: var(--graphite); display: grid; gap: 14px; align-content: start; }
.palette .chips { display: flex; gap: 8px; }
.palette .chips i { width: 44px; height: 44px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.08); }
.palette h3 { font-size: 1.4rem; font-weight: 400; }
.palette p { color: var(--slate); font-size: 0.95rem; }
@media (max-width: 860px) { .palettes { grid-template-columns: 1fr; } }

.faq { border-top: 1px solid var(--line-dark); }
.dark .faq, .faq--dark { border-top-color: var(--line); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq--dark details { border-bottom-color: var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 24px 0; font-size: clamp(1.1rem, 1.6vw, 1.3rem); font-weight: 400; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat; transition: transform 0.35s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 26px; max-width: 64ch; color: var(--slate); }
.faq--dark .a { color: var(--stone); }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.gallery figure { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } }

.chips-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.9rem; color: var(--stone); }
.light .chip { border-color: var(--line-dark); color: var(--slate); }

.closing { text-align: left; }
.closing .d2 { max-width: 14em; }
.closing .hero__actions { margin-top: 32px; }

/* ---------- Rodapé ---------- */
.ftr { border-top: 1px solid var(--line); padding: 72px 0 40px; font-size: 0.92rem; color: var(--stone); }
.ftr__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ftr__h { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); margin-bottom: 16px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.ftr a { text-decoration: none; display: inline-block; padding: 11px 0; }
.ftr ul { gap: 0; }
.ftr a.mark { display: inline-flex; padding: 0; }
.ftr a:hover { color: var(--bone); text-decoration: underline; }
.ftr__legal { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 0.8rem; }
.ftr .mark { color: var(--bone); margin-bottom: 20px; }
.ftr address { font-style: normal; line-height: 1.8; }
@media (max-width: 860px) { .ftr__grid { grid-template-columns: 1fr 1fr; } .ftr__grid > :first-child { grid-column: 1 / -1; } }

/* Barra fixa no celular: ação sempre ao alcance */
.dock { display: none; }
@media (max-width: 700px) {
  .dock { position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgb(21 32 60 / 0.96); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform 0.45s var(--ease); }
  .dock.is-on { transform: none; }
  .dock .btn { min-height: 48px; }
  .dock .btn--ghost { padding: 0 18px; }
  body { padding-bottom: 0; }
}

.demo-note { font-size: 0.8rem; color: var(--stone); margin-top: 14px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Faixas claras: pontos, rótulos e linhas no tom do claro */
.light .steps { border-top-color: var(--line-dark); }
.light .step::before { background: var(--gold-ink); }
.light .step b { color: var(--gold-ink); }
.light .step p, .light .facts dt { color: var(--slate); }
.light .facts { border-top-color: var(--line-dark); }
@media (max-width: 860px) { .light .steps { border-left-color: var(--line-dark); } }

/* Texto longo (páginas legais) */
.prose { max-width: 72ch; margin-top: clamp(48px, 7vw, 88px); color: var(--stone); }
.prose h2 { color: var(--bone); font-size: clamp(1.4rem, 2vw, 1.75rem); letter-spacing: -0.01em; margin: 56px 0 16px; }
.prose h3 { color: var(--bone); font-size: 1.15rem; font-weight: 500; margin: 32px 0 10px; }
.prose p + p, .prose ul, .prose p { margin-top: 12px; }
.prose ul { padding-left: 1.2em; display: grid; gap: 8px; }
.prose b, .prose strong { color: var(--bone); font-weight: 500; }
.prose a { color: var(--bone); }

/* Página de orçamento: formulário primeiro no celular, prova ao lado no desktop */
.cta--form-first { grid-template-areas: "aside form" "proof form"; align-items: start; }
.cta--form-first .cta__aside { grid-area: aside; position: static; }
.cta--form-first .cta__form { grid-area: form; }
.cta--form-first .cta__proof { grid-area: proof; }
@media (max-width: 860px) { .cta--form-first { grid-template-areas: "aside" "form" "proof"; gap: 32px; } }
.next { list-style: none; margin: 12px 0 0; padding: 0; counter-reset: n; border-top: 1px solid var(--line); }
.next li { counter-increment: n; display: grid; grid-template-columns: 32px 1fr; gap: 2px 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.next li::before { content: counter(n); grid-row: span 2; font: 400 1.5rem/1 var(--f-mark); color: var(--stone); }
.next b { font-weight: 500; }
.next span { color: var(--stone); font-size: 0.95rem; }
.review { margin: 40px 0 0; }
.review .rating { margin-bottom: 18px; }
.review .rating strong { font-size: 3.2rem; }
.review .star { color: var(--gold); }
.review blockquote { margin: 0; }
.review blockquote p { font-size: 1.12rem; font-weight: 300; line-height: 1.5; }
.review figcaption { margin-top: 12px; color: var(--stone); font-size: 0.9rem; }
.fine a { color: inherit; }
.calc__qs-link { display: block; text-decoration: none; color: inherit; }
.calc__qs-link:hover .calc__qs li { border-bottom-color: var(--slate); }

/* Hero no celular: foto em cima, texto sobre o azul, contraste garantido */
@media (max-width: 700px) {
  .hero, .hero--short { display: block; min-height: 0; }
  .hero__media { position: relative; height: 58svh; min-height: 360px; }
  .hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgb(21 32 60 / 0.55) 0%, rgb(21 32 60 / 0) 22%, rgb(21 32 60 / 0) 55%, var(--ink) 100%); }
  .hero::after { display: none; }
  .hero__body { position: relative; margin-top: -72px; padding-top: 0; padding-bottom: 48px; }
}

/* Blog */
.post__wrap { max-width: 800px; }
.post__img { margin: 0 0 40px; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bone-2); }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.prose--light { color: #3b4050; margin-top: 0; max-width: 68ch; font-size: 1.08rem; line-height: 1.7; }
.prose--light h2, .prose--light h3, .prose--light b, .prose--light strong { color: var(--graphite); }
.prose--light h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 400; margin: 48px 0 12px; }
.prose--light h3 { font-size: 1.25rem; font-weight: 500; margin: 32px 0 8px; }
.prose--light p { margin-top: 16px; }
.prose--light a { color: var(--navy); text-decoration-color: rgb(27 38 79 / 0.45); }
.prose--light figure { margin: 32px 0; }
.prose--light img { width: 100%; height: auto; }
.prose--light ul, .prose--light ol { margin-top: 16px; padding-left: 1.2em; display: grid; gap: 8px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px clamp(16px, 2vw, 28px); }
.post-card { text-decoration: none; display: grid; align-content: start; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.post-card__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-2); margin-bottom: 8px; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.03); }
.post-card h3 { font-size: 1.15rem; font-weight: 400; line-height: 1.35; }
.post-card:hover h3 { text-decoration: underline; text-underline-offset: 0.2em; }
.post-card p { font-size: 0.93rem; }
@media (max-width: 960px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.post-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); columns: 2; column-gap: clamp(24px, 4vw, 64px); }
.post-list li { break-inside: avoid; border-bottom: 1px solid var(--line); }
.post-list a { display: grid; gap: 2px; padding: 14px 0; text-decoration: none; }
.post-list a:hover span { text-decoration: underline; text-underline-offset: 0.2em; }
@media (max-width: 760px) { .post-list { columns: 1; } }

.gallery--mini { gap: 10px; }
.gallery--mini figure { aspect-ratio: 1; }

@media (max-width: 700px) { .gallery.gallery--mini { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Vídeo de tour dentro de cada obra (página Projects) */
.proj-video { margin: 28px 0 0; width: min(100%, 340px); }
.proj-video video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--ink-2); border-radius: 2px; }
.proj-video figcaption { margin-top: 8px; }
