/* Maison Lia — site fictício de demonstração da NeuralWeb.
   CSS puro, sem build. Celular primeiro (360 px) e depois telas maiores.
   Linguagem de revista de moda: Bodoni Moda nos títulos, Jost no texto, cantos retos e fios finos. */

:root {
  --ink: #15120f;
  --ink-2: #1f1a16;
  --ink-3: #2c251f;
  --paper: #f6f1e9;
  --paper-2: #eee5d8;
  --sand: #e9d8c4;          /* cor de destaque do ramo */
  --sand-hi: #f4e9dc;
  --cafe: #6e4f33;          /* destaque em texto sobre fundo claro (AA) */
  --text: #231e19;
  --muted: #5d544a;
  --line: #d9ccbb;
  --line-2: #b9a993;
  --field: #8c7f70;
  --on-dark: #efe6da;
  --on-dark-2: #b7a995;
  --line-dark: rgba(233, 216, 196, .16);
  --err: #a4271b;
  --bar-h: 44px;
  --hdr-h: 60px;
  --pad: clamp(16px, 5vw, 56px);
  --max: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
@media (min-width: 1180px) { :root { --hdr-h: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + var(--hdr-h) + 12px); }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; color: inherit; }
small { font-size: .82em; }
::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 2px solid var(--cafe); outline-offset: 3px; }
.nw-bar :focus-visible, .hdr:not(.is-solid) :focus-visible, .hero :focus-visible, .menu :focus-visible,
.sec--ink :focus-visible, .ftr :focus-visible, .wa:focus-visible { outline-color: var(--sand); }
.sec--ink .form :focus-visible { outline-color: var(--cafe); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.i--fill { fill: currentColor; stroke: none; }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nw { white-space: nowrap; }
.wrap { width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--pad); }
.skip {
  position: fixed; left: 12px; top: -80px; z-index: 200; padding: 12px 16px;
  background: var(--paper); color: var(--ink); font-weight: 500; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3); transition: top .2s;
}
.skip:focus { top: calc(var(--bar-h) + 8px); }

/* ---------- Faixa da NeuralWeb (demonstração) ---------- */
.nw-bar {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--bar-h);
  display: flex; align-items: center; gap: 2px;
  padding-inline: max(4px, env(safe-area-inset-left)) max(4px, env(safe-area-inset-right));
  background: #0a0d13; color: #d3dbe6; font: 500 12.5px/1.2 var(--sans); letter-spacing: .01em;
}
.nw-bar a {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding-inline: 8px;
  border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background-color .2s;
}
.nw-bar a:hover { background: rgba(255, 255, 255, .07); }
.nw-bar__back { color: #e8eef6; }
.nw-bar__txt { flex: 1; min-width: 0; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nw-bar__cta { color: #7ec4ff; font-weight: 600; }
.nw-bar .lg { display: none; }
@media (min-width: 760px) {
  .nw-bar { gap: 8px; padding-inline: 16px; font-size: 13px; }
  .nw-bar .lg { display: inline; }
  .nw-bar .sm { display: none; }
}

/* ---------- Cabeçalho ---------- */
.hdr {
  position: fixed; left: 0; right: 0; top: var(--bar-h); z-index: 90; height: var(--hdr-h); color: #fff;
  transition: background-color .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}
html:not(.js) .hdr { background: var(--ink); }
.hdr.is-solid {
  background: rgba(246, 241, 233, .95); color: var(--ink);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.hdr.is-menu { background: var(--ink); color: var(--on-dark); box-shadow: 0 1px 0 var(--line-dark); }
.hdr__in {
  height: 100%; width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 12px;
}
.logo {
  grid-column: 2; justify-self: center; display: inline-flex; align-items: center; min-height: 44px;
  padding-left: .26em; font: 500 18px/1 var(--serif); letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
}
.burger {
  grid-column: 1; grid-row: 1; justify-self: start; display: none; align-items: center; gap: 10px;
  min-width: 44px; min-height: 44px; margin-left: -6px; padding: 0 8px 0 6px; border: 0; background: none; cursor: pointer;
  font: 500 11.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
}
html.js .burger { display: inline-flex; }
.burger__lines { display: grid; gap: 6px; width: 22px; }
.burger__lines i { display: block; height: 1.5px; background: currentColor; transition: transform .4s var(--ease); }
.burger[aria-expanded="true"] .burger__lines i:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines i:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.nav { display: none; }
.hdr__r { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 8px; }
.hdr__r .hdr__cta { display: none; }
.hdr__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -10px; }
.hdr__icon .i { width: 24px; height: 24px; stroke-width: 1.3; }
@media (max-width: 419px) { .burger__txt { display: none; } }
@media (max-width: 359px) { .logo { font-size: 16px; letter-spacing: .22em; padding-left: .22em; } }
@media (min-width: 640px) {
  .hdr__r .hdr__cta { display: inline-flex; }
  .hdr__icon { display: none; }
  .logo { font-size: 20px; }
}
@media (min-width: 1180px) {
  html.js .burger { display: none; }
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav--l { grid-column: 1; justify-self: start; margin-left: -10px; }
  .nav a {
    position: relative; padding: 12px 10px; font-size: 12.5px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; text-decoration: none; white-space: nowrap;
  }
  .nav a::after {
    content: ""; position: absolute; left: 10px; right: 10px; bottom: 7px; height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
  }
  .nav a:hover::after, .nav a.is-on::after { transform: scaleX(1); }
  .logo { font-size: 22px; }
}

/* Menu do celular (sumário) */
.menu {
  position: fixed; left: 0; right: 0; bottom: 0; top: calc(var(--bar-h) + var(--hdr-h)); z-index: 85;
  display: flex; flex-direction: column; gap: 26px;
  padding: 18px var(--pad) calc(28px + env(safe-area-inset-bottom));
  background: var(--ink); color: var(--on-dark); overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.menu__label { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--on-dark-2); }
.menu__list { border-top: 1px solid var(--line-dark); }
.menu__list a {
  display: flex; align-items: baseline; gap: 16px; min-height: 52px; padding: 9px 0;
  border-bottom: 1px solid var(--line-dark); text-decoration: none;
}
.menu__n { min-width: 22px; font-size: 11px; font-weight: 500; letter-spacing: .16em; color: var(--sand); }
.menu__t { font: 400 clamp(1.7rem, 7.6vw, 2.4rem)/1.12 var(--serif); }
.menu__list a:hover .menu__t { font-style: italic; }
.menu.is-open .menu__list li { animation: menuIn .6s var(--ease-out) both; animation-delay: calc(var(--i) * 45ms + 60ms); }
@keyframes menuIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.menu__foot { display: grid; gap: 10px; margin-top: auto; }
.menu__foot p { margin-top: 8px; font-size: .88rem; color: var(--on-dark-2); }
@media (min-width: 1180px) { .menu { display: none; } }

/* ---------- Botões e links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border: 1px solid transparent; border-radius: 0;
  font: 500 12.5px/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; text-align: center;
  text-decoration: none; cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.btn .i { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 11.5px; }
.btn--block { width: 100%; }
.btn--sand { background: var(--sand); color: var(--ink); }
.btn--sand:hover { background: var(--sand-hi); }
.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-3); }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.hdr.is-solid .hdr__cta { background: var(--ink); color: var(--paper); }
.hdr.is-solid .hdr__cta:hover { background: var(--ink-3); }

.tlink {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; margin-top: 10px;
  color: var(--ink); font-size: .92rem; text-decoration: underline; text-decoration-thickness: 1px;
  text-underline-offset: 5px; text-decoration-color: var(--line-2); transition: text-decoration-color .25s;
}
.tlink:hover { text-decoration-color: currentColor; }
.tlink .i { width: 22px; height: 22px; color: var(--cafe); }

/* ---------- Abertura (vídeo) ---------- */
.hero {
  position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100vh; min-height: 100svh; background: var(--ink); color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: #0d0b09; }
.hero__media picture, .hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster, .hero__video { object-fit: cover; object-position: 24% 30%; }
.hero__video { opacity: 0; transition: opacity .7s linear; }
.hero__video.is-live { opacity: 1; }
.hero__video.is-live.is-fading { opacity: 0; } /* perto do fim, revela a capa (1º quadro): a volta do loop fica sem corte */
.hero__shade {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 11, 9, .72) 0%, rgba(13, 11, 9, .12) 22%, rgba(13, 11, 9, 0) 34%,
    rgba(13, 11, 9, .42) 52%, rgba(13, 11, 9, .9) 76%, #0f0c0a 100%);
}
.hero__side { display: none; }
.hero__in { position: relative; width: min(var(--max), 100%); margin-inline: auto; padding: calc(var(--bar-h) + var(--hdr-h) + 40px) var(--pad) 44px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-size: 11.5px; font-weight: 500; line-height: 1; letter-spacing: .28em; text-transform: uppercase; color: var(--sand);
}
.hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero__title {
  font-family: var(--serif); font-weight: 400; line-height: .94; letter-spacing: -.015em;
  font-size: clamp(3.3rem, min(15vw, 19svh), 9.6rem);
}
.hero__title .ln { display: block; overflow: hidden; padding: .04em .14em .2em; margin: -.04em -.14em -.2em; }
.hero__title .ln > span { display: block; }
.hero__title em { font-style: italic; color: var(--sand); }
.hero__lead { max-width: 30ch; margin-top: 18px; font-size: clamp(1.04rem, 1.5vw, 1.2rem); font-weight: 300; line-height: 1.55; color: rgba(255, 255, 255, .88); text-wrap: balance; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__ctas .btn { flex: 1 1 140px; padding-inline: 18px; }
.hero__lines { display: none; }

/* entrada do topo (só com JavaScript) */
.js .hero__title .ln > span { animation: lineUp 1.2s var(--ease-out) both .15s; }
.js .hero__title .ln + .ln > span { animation-delay: .27s; }
.js .hero__eyebrow { animation: fadeUp 1s var(--ease-out) both .05s; }
.js .hero__lead { animation: fadeUp 1s var(--ease-out) both .5s; }
.js .hero__ctas { animation: fadeUp 1s var(--ease-out) both .62s; }
.js .hero__lines { animation: fadeUp 1s var(--ease-out) both .8s; }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (min-width: 701px) {
  .hero__poster, .hero__video { object-position: 50% 40%; }
}
@media (min-width: 760px) {
  .hero { justify-content: center; text-align: center; }
  .hero__shade {
    background:
      radial-gradient(ellipse 56% 50% at 50% 58%, rgba(13, 11, 9, .6), rgba(13, 11, 9, 0) 72%),
      linear-gradient(180deg, rgba(13, 11, 9, .74) 0%, rgba(13, 11, 9, .12) 20%, rgba(13, 11, 9, .08) 58%, rgba(13, 11, 9, .86) 100%);
  }
  .hero__in { padding-top: calc(var(--bar-h) + var(--hdr-h) + 56px); padding-bottom: 150px; }
  .hero__eyebrow { justify-content: center; margin-bottom: 22px; }
  .hero__eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
  .hero__lead { max-width: 36ch; margin-inline: auto; margin-top: 22px; }
  .hero__ctas { justify-content: center; margin-top: 34px; }
  .hero__ctas .btn { flex: 0 0 auto; min-width: 190px; }
  .hero__lines {
    position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
    width: min(var(--max), 100%); margin-inline: auto; padding: 0 var(--pad) 30px; text-align: left;
  }
  .hero__lines li { display: grid; gap: 6px; padding-top: 14px; border-top: 1px solid rgba(233, 216, 196, .32); }
  .hero__lines b { font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--sand); }
  .hero__lines span { font: italic 400 15px/1.35 var(--serif); color: rgba(255, 255, 255, .78); }
}
@media (min-width: 1180px) {
  .hero__side {
    display: block; position: absolute; left: max(18px, calc((100% - var(--max)) / 2 + 18px)); top: 50%;
    writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg);
    font-size: 10.5px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; color: rgba(255, 255, 255, .55);
  }
}

/* ---------- Vantagens ---------- */
.perks { background: var(--sand); color: var(--ink); }
.perks__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(var(--max), 100%); margin-inline: auto; }
.perks li {
  display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 14px var(--pad);
  font-size: 13.5px; font-weight: 500; line-height: 1.3;
  border-bottom: 1px solid rgba(21, 18, 15, .12);
}
.perks li:nth-child(odd) { border-right: 1px solid rgba(21, 18, 15, .12); }
.perks li:nth-child(n + 3) { border-bottom: 0; }
.perks .i { width: 24px; height: 24px; stroke-width: 1.3; color: var(--cafe); }
.perks .i--fill { width: 22px; height: 22px; }
@media (max-width: 400px) { .perks li { gap: 10px; padding-inline: 14px; font-size: 13px; } }
@media (min-width: 900px) {
  .perks__list { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-inline: var(--pad); }
  .perks li { justify-content: center; min-height: 76px; padding-inline: 16px; border-bottom: 0; border-right: 1px solid rgba(21, 18, 15, .12); }
  .perks li:last-child { border-right: 0; }
}

/* ---------- Seções ---------- */
.sec { position: relative; padding-block: clamp(76px, 12vw, 144px); }
.sec--paper { background: var(--paper); }
.sec--paper2 { background: var(--paper-2); }
.sec--sand { background: var(--sand); }
.sec--ink { background: var(--ink); color: var(--on-dark); }
.head { margin-bottom: clamp(40px, 6vw, 76px); }
.head--split { display: grid; gap: 4px; }
.kicker {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  font-size: 11.5px; font-weight: 500; line-height: 1; letter-spacing: .26em; text-transform: uppercase; color: var(--cafe);
}
.kicker span { display: inline-flex; align-items: center; gap: 14px; font: italic 400 16px/1 var(--serif); letter-spacing: .02em; text-transform: none; }
.kicker span::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.kicker--light { color: var(--sand); }
.h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 8.4vw, 4.8rem); line-height: 1.02;
  letter-spacing: -.012em; color: var(--ink); text-wrap: balance;
}
.h2 em { font-style: italic; }
.sec--ink .h2 { color: #fbf6ef; }
.sec--ink .h2 em { color: var(--sand); }
.lead { max-width: 50ch; margin-top: 18px; font-size: clamp(1.04rem, 1.4vw, 1.16rem); line-height: 1.6; color: var(--muted); }
.sec--ink .lead { color: var(--on-dark-2); }
.note { font-size: 11px; font-weight: 500; line-height: 1.5; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 1024px) {
  .head--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: end; }
  .head--split .lead { margin-top: 0; padding-bottom: 8px; }
}

/* ---------- Novidades: a peça da estação ---------- */
.feature { display: grid; gap: 30px; margin-bottom: clamp(80px, 11vw, 136px); }
.feature__img { position: relative; overflow: hidden; background: #0e0c0a; }
.feature__img img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.feature__img figcaption {
  position: absolute; left: 16px; bottom: 14px; font-size: 10.5px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255, 255, 255, .82);
}
.feature__tag { font-size: 11.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--cafe); }
.feature__name { margin-top: 12px; font: 400 clamp(2.7rem, 6.4vw, 4.4rem)/.98 var(--serif); letter-spacing: -.012em; color: var(--ink); }
.feature__desc { max-width: 46ch; margin-top: 16px; color: var(--muted); }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 22px; }
.price__v { font: 400 1.8rem/1 var(--serif); color: var(--ink); }
.price__note { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.opt { min-width: 0; margin: 26px 0 0; padding: 0; border: 0; }
.opt legend {
  display: flex; align-items: baseline; gap: 10px; padding: 0; margin-bottom: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink);
}
.opt legend b { font: italic 400 15px/1 var(--serif); letter-spacing: .01em; text-transform: none; color: var(--muted); }
.feature__buy { margin-top: 18px; }
.spec { margin-top: 30px; border-top: 1px solid var(--line); }
.spec div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec dt { color: var(--muted); }
.spec dd { color: var(--ink); text-align: right; }
@media (min-width: 760px) {
  .feature { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 104px); align-items: start; }
}
@media (min-width: 1100px) { .feature { align-items: center; } }

/* Amostras de cor */
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.sw { position: relative; display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; cursor: pointer; }
.sw input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 1; }
.sw__dot {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sw);
  box-shadow: inset 0 0 0 1px rgba(21, 18, 15, .22); transition: box-shadow .25s;
}
.sw input:checked ~ .sw__dot { box-shadow: inset 0 0 0 1px rgba(21, 18, 15, .22), 0 0 0 3px var(--paper), 0 0 0 4px var(--ink); }
.sw input:focus-visible ~ .sw__dot { outline: 2px solid var(--cafe); outline-offset: 6px; }
.sw--txt { display: inline-flex; gap: 10px; min-height: 46px; padding: 0 18px 0 12px; }
.sw--txt .sw__dot { width: 20px; height: 20px; }
.sw--txt input:checked ~ .sw__dot { box-shadow: inset 0 0 0 1px rgba(21, 18, 15, .22); }
.sw__frame { position: absolute; inset: 0; border: 1px solid var(--line-2); transition: border-color .25s; pointer-events: none; }
.sw--txt input:hover ~ .sw__frame { border-color: var(--ink); }
.sw--txt input:checked ~ .sw__frame { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.sw--txt input:focus-visible ~ .sw__frame { outline: 2px solid var(--cafe); outline-offset: 2px; }
.sw--txt input:focus-visible ~ .sw__dot { outline: 0; }
.sw__name { font-size: .92rem; color: var(--ink); }

/* Tamanhos */
.sizes { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; max-width: 380px; }
.size { position: relative; display: block; }
.size input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.size span {
  display: grid; place-items: center; min-height: 46px; border: 1px solid var(--line-2);
  font-size: 13px; font-weight: 500; letter-spacing: .08em; color: var(--ink);
  transition: background-color .2s, border-color .2s, color .2s;
}
.size input:hover + span { border-color: var(--ink); }
.size input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.size input:focus-visible + span { outline: 2px solid var(--cafe); outline-offset: 2px; }

/* ---------- Novidades: toda a coleção ---------- */
.grid-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 20px;
  margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.h3 { font: 400 clamp(1.7rem, 4.6vw, 2.4rem)/1.1 var(--serif); color: var(--ink); }
.pieces { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 12px; }
.piece { min-width: 0; }
.piece__fig { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); }
.piece__fig::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0) 70%);
}
.piece__no { position: absolute; left: 12px; top: 10px; font: italic 400 14px/1 var(--serif); color: var(--muted); }
.piece__body { padding-top: 14px; }
.piece__cat { font-size: 10.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--cafe); }
.piece__name { margin-top: 6px; font: 400 1.34rem/1.1 var(--serif); color: var(--ink); }
.piece__desc { margin-top: 6px; font-size: .86rem; line-height: 1.5; color: var(--muted); }
.piece__price { margin-top: 10px; font-size: 1rem; font-weight: 500; letter-spacing: .02em; color: var(--ink); }
.piece__cores { display: flex; align-items: center; min-width: 0; margin: 4px 0 0 -10px; padding: 0; border: 0; }
.piece__cor { margin-left: 2px; font-size: .82rem; color: var(--muted); white-space: nowrap; }
.piece__buy {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.piece__buy .i { width: 18px; height: 18px; }
.piece__buy::after {
  content: ""; width: 18px; height: 1px; background: currentColor; transform-origin: left; transition: transform .45s var(--ease-out);
}
.piece__buy .lg { display: none; }
.pieces__note { max-width: 62ch; margin-top: 36px; font-size: .88rem; color: var(--muted); }
@media (hover: hover) {
  .piece__buy:hover::after { transform: scaleX(1.8); }
  .piece:hover .cq { transform: translateY(-6px) scale(1.03); }
}
@media (min-width: 560px) and (max-width: 759px), (min-width: 1100px) { .piece__buy .lg { display: inline; } }
@media (min-width: 760px) {
  .pieces { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px 22px; }
  .piece__name { font-size: 1.5rem; }
}

/* ---------- Croquis (desenho técnico das peças) ---------- */
.cq { width: 84%; height: auto; overflow: visible; filter: drop-shadow(0 14px 14px rgba(40, 28, 16, .1)); transition: transform .8s var(--ease-out); }
.cq .o { fill: var(--f); stroke: var(--k); stroke-width: 1.15; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; transition: fill .5s; }
.cq .s { fill: none; stroke: var(--k2); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.cq .t { fill: none; stroke: var(--k2); stroke-width: .9; stroke-dasharray: 2.2 2.2; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.cq .b { fill: var(--btn); stroke: var(--k); stroke-width: .8; vector-effect: non-scaling-stroke; transition: fill .5s; }
.cq .in { fill: var(--in); stroke: var(--k); stroke-width: 1.15; stroke-linejoin: round; vector-effect: non-scaling-stroke; transition: fill .5s; }
.cq .rib { fill: none; stroke: var(--k2); stroke-linecap: butt; }
.cq .pole { fill: #3a2f25; }
.cq .tape { fill: none; stroke: #e2c58f; stroke-width: 4.2; stroke-linecap: butt; }
.cq .tape-ticks { fill: none; stroke: #5b4428; stroke-width: 4.2; stroke-dasharray: .7 3.3; opacity: .75; }
.c-areia { --f: #d9c3a4; --k: #2e261e; --k2: rgba(46, 38, 30, .5); --btn: #4a3a2c; --in: #c9b08e; }
.c-off { --f: #f5f0e7; --k: #2e261e; --k2: rgba(46, 38, 30, .45); --btn: #d9cfbf; --in: #e6ddcf; }
.c-cafe { --f: #6f4f38; --k: #2a1f17; --k2: rgba(255, 240, 222, .45); --btn: #3b2a1e; --in: #5a3f2c; }
.c-grafite { --f: #4d4a46; --k: #1f1c19; --k2: rgba(255, 255, 255, .38); --btn: #2a2724; --in: #3d3a37; }
.c-preto { --f: #262320; --k: #0f0d0b; --k2: rgba(255, 255, 255, .34); --btn: #141210; --in: #1a1816; }
.c-cru { --f: #ebe2d3; --k: #2e261e; --k2: rgba(46, 38, 30, .42); --btn: #cbbfa9; --in: #ddd2c0; }

/* ---------- Como comprar ---------- */
.how .kicker { color: var(--cafe); }
.how .lead { color: #4d4339; }
.steps { display: grid; border-top: 1px solid rgba(21, 18, 15, .2); counter-reset: none; }
.steps li { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 4px 10px; padding: 22px 0; border-bottom: 1px solid rgba(21, 18, 15, .2); }
.steps__n { grid-row: span 2; font: italic 400 2rem/1 var(--serif); color: var(--cafe); }
.steps h3 { font: 400 1.4rem/1.2 var(--serif); color: var(--ink); }
.steps p { font-size: .96rem; color: #4d4339; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 28px; border-top: 0; }
  .steps li { grid-template-columns: 1fr; align-content: start; padding: 26px 0 0; border-top: 1px solid rgba(21, 18, 15, .24); border-bottom: 0; }
  .steps__n { grid-row: auto; margin-bottom: 22px; font-size: 3rem; }
  .steps p { margin-top: 6px; }
}

/* ---------- Lookbook ---------- */
.lookbook { overflow: hidden; }
.lb-head { margin-bottom: clamp(44px, 7vw, 96px); }
.lb-title {
  margin-left: -.04em; font: italic 400 clamp(4.4rem, 22vw, 15rem)/.84 var(--serif); letter-spacing: -.035em; color: var(--sand);
}
.lb-head .lead { margin-top: 26px; }
.lb { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 52px 12px; }
.lb__f { min-width: 0; }
.lb__img { overflow: hidden; background: #0d0b09; }
.lb__img img { width: 100%; height: auto; object-fit: cover; }
.lb__f figcaption { display: flex; gap: 12px; margin-top: 14px; font: italic 400 15px/1.45 var(--serif); color: var(--on-dark-2); }
.lb__f figcaption .lb__n { flex: none; padding-top: 4px; font: 500 10.5px/1 var(--sans); letter-spacing: .2em; color: var(--sand); }
.lb__a { grid-column: 1 / -1; }
.lb__b { grid-column: 2 / -1; }
.lb__q { grid-column: 1 / -1; padding-block: 8px; font: italic 400 clamp(1.8rem, 7vw, 3.3rem)/1.16 var(--serif); letter-spacing: -.01em; color: #fbf6ef; text-wrap: balance; }
.lb__q::before { content: ""; display: block; width: 44px; height: 1px; margin-bottom: 22px; background: var(--sand); }
.lb__c { grid-column: 1 / -1; margin-inline: calc(var(--pad) * -1); }
.lb__c img { aspect-ratio: 4 / 3; object-position: 52% 50%; }
.lb__c figcaption { padding-inline: var(--pad); }
.lb__d { grid-column: 1 / span 4; }
.lb__e { grid-column: 2 / -1; }
.lb-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(56px, 8vw, 96px); }
.lb-cta .btn { flex: 1 1 220px; }
@media (min-width: 640px) {
  .lb__c { margin-inline: 0; }
  .lb__c img { aspect-ratio: 1280 / 548; }
  .lb__c figcaption { padding-inline: 0; }
}
@media (min-width: 760px) {
  .lb { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 clamp(16px, 2vw, 24px); }
  .lb__a { grid-column: 1 / span 5; grid-row: 1 / span 2; }
  .lb__b { grid-column: 7 / span 4; grid-row: 1; margin-top: clamp(40px, 7vw, 110px); }
  .lb__q { grid-column: 7 / span 6; grid-row: 2; align-self: end; margin-top: 64px; padding-bottom: 36px; font-size: clamp(1.7rem, 3.4vw, 3.3rem); }
  .lb__c { grid-column: 1 / -1; grid-row: 3; margin-top: clamp(72px, 9vw, 140px); }
  .lb__d { grid-column: 2 / span 4; grid-row: 4; margin-top: clamp(72px, 9vw, 140px); }
  .lb__e { grid-column: 8 / span 4; grid-row: 4; margin-top: clamp(150px, 17vw, 260px); }
  .lb-cta .btn { flex: 0 0 auto; }
}

/* ---------- Coleções ---------- */
.col { display: grid; gap: 48px; }
.col__img { position: relative; max-width: min(440px, 84%); margin-top: 34px; }
.col__img img { width: 100%; height: auto; aspect-ratio: 16 / 21; object-fit: cover; background: #0d0b09; }
.col__img figcaption { margin-top: 12px; font: italic 400 15px var(--serif); color: var(--muted); }
.lines { border-top: 1px solid var(--line); }
.line {
  display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 8px 12px; padding: 24px 0 18px;
  border-bottom: 1px solid var(--line); text-decoration: none;
}
.line__n { grid-row: span 3; padding-top: 10px; font: italic 400 16px/1 var(--serif); color: var(--cafe); }
.line__name { font: 400 clamp(2rem, 7.4vw, 3.4rem)/1.04 var(--serif); letter-spacing: -.01em; color: var(--ink); transition: transform .6s var(--ease-out); }
.line__desc { max-width: 44ch; font-size: .96rem; color: var(--muted); }
.line__go {
  display: inline-flex; align-items: center; gap: 10px; min-height: 40px;
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink);
}
.line__go .i { width: 20px; height: 20px; transition: transform .45s var(--ease-out); }
@media (hover: hover) {
  .line:hover .line__name { transform: translateX(10px); font-style: italic; }
  .line:hover .line__go .i { transform: translateX(6px); }
}
@media (min-width: 1024px) {
  .col { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 88px; align-items: start; }
  .col__intro { position: sticky; top: calc(var(--bar-h) + var(--hdr-h) + 36px); }
  .line { grid-template-columns: 56px minmax(0, 1fr); padding: 30px 0 22px; }
}

/* ---------- Sobre a marca ---------- */
.sobre__grid { display: grid; gap: 48px; }
.sobre__art { order: 2; width: 100%; max-width: 420px; margin-inline: auto; }
.sobre__frame {
  position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5;
  background: var(--paper); border: 1px solid var(--line);
}
.sobre__frame::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); pointer-events: none; }
.sobre__frame .cq { width: 62%; }
.sobre__art figcaption { margin-top: 12px; font: italic 400 15px var(--serif); color: var(--muted); text-align: center; }
.dropcap { margin-top: 26px; font-size: 1.08rem; line-height: 1.7; color: var(--text); }
.dropcap::first-letter { float: left; margin: .02em .12em 0 -.02em; font: 400 4.6em/.82 var(--serif); color: var(--cafe); }
.sobre__p { margin-top: 16px; color: var(--muted); }
.values { display: grid; gap: 22px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.values li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 2px 8px; }
.values span { grid-row: span 2; font: italic 400 1.5rem/1.1 var(--serif); color: var(--cafe); }
.values h3 { font: 400 1.4rem/1.2 var(--serif); color: var(--ink); }
.values p { font-size: .96rem; color: var(--muted); }
@media (min-width: 1024px) {
  .sobre__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 96px; align-items: center; }
  .sobre__art { order: 0; max-width: 460px; }
}
@media (min-width: 1300px) {
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .values li { grid-template-columns: 1fr; align-content: start; }
  .values span { grid-row: auto; margin-bottom: 10px; }
  .values h3 { font-size: 1.22rem; white-space: nowrap; }
}

/* ---------- Atendimento ---------- */
.atend__grid { display: grid; gap: 48px; }
.modes { display: grid; margin-top: 34px; border-top: 1px solid var(--line-dark); }
.mode { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; padding: 20px 0 12px; border-bottom: 1px solid var(--line-dark); }
.mode > .i { width: 30px; height: 30px; margin-top: 2px; color: var(--sand); stroke-width: 1.15; }
.mode h3 { font: 400 1.4rem/1.2 var(--serif); color: #fbf6ef; }
.mode p { margin-top: 4px; font-size: .96rem; color: var(--on-dark-2); }
.mode__go {
  display: inline-flex; align-items: center; min-height: 44px; font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px;
  text-decoration-color: rgba(233, 216, 196, .4);
}
.mode__go:hover { text-decoration-color: var(--sand); }
@media (min-width: 1024px) {
  .atend__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 88px; align-items: start; }
  .atend__txt { position: sticky; top: calc(var(--bar-h) + var(--hdr-h) + 36px); }
}

/* Formulário */
.form { position: relative; padding: 30px 20px 24px; background: var(--paper); color: var(--text); }
.form__t { margin-bottom: 22px; font: 400 2rem/1.1 var(--serif); color: var(--ink); }
.field { display: grid; gap: 8px; min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.field > label, .field > legend {
  padding: 0; font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink);
}
.field > legend { margin-bottom: 8px; }
.field small { font-size: 10px; letter-spacing: .12em; color: var(--muted); }
.field input:not([type="radio"]), .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--field); border-radius: 0;
  background: #fff; color: var(--ink); font-size: 16px; line-height: 1.35;
  -webkit-appearance: none; appearance: none; transition: border-color .2s, box-shadow .2s;
}
.field input[type="date"] { display: block; min-width: 0; }
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f655a; opacity: 1; }
.field select {
  padding-right: 44px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.5 6 4.5 4.5L12.5 6' fill='none' stroke='%2315120f' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 16px no-repeat;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(110, 79, 51, .28); }
.field__hint { font-size: .84rem; line-height: 1.45; color: var(--muted); }
.field__hint.is-warn { color: var(--err); font-weight: 500; }
.field__err { font-size: .85rem; font-weight: 500; color: var(--err); }
.field__err:empty { display: none; }
.field.is-invalid input:not([type="radio"]), .field.is-invalid .chip span { border-color: var(--err); }
.chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.chip { position: relative; display: block; min-width: 0; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: grid; place-items: center; min-height: 48px; padding: 0 4px; border: 1px solid var(--field);
  font-size: 14px; line-height: 1.2; text-align: center; color: var(--ink);
  transition: background-color .2s, border-color .2s, color .2s;
}
.chip input:hover + span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip input:disabled { cursor: not-allowed; }
.chip input:disabled + span { opacity: .45; text-decoration: line-through; border-style: dashed; }
.chip input:focus-visible + span { outline: 2px solid var(--cafe); outline-offset: 2px; }
.form .btn--block { margin-top: 6px; }
.form__status { margin-top: 12px; font-size: .92rem; font-weight: 500; color: var(--cafe); }
.form__status:empty { display: none; }
.form__status a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); text-underline-offset: 3px; }
.form__note { display: flex; gap: 10px; margin-top: 16px; font-size: .84rem; line-height: 1.55; color: var(--muted); }
.form__note .i { width: 18px; height: 18px; margin-top: 2px; color: var(--cafe); }
@media (min-width: 560px) {
  .form { padding: 40px 36px 32px; }
  .form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; align-items: start; }
}

/* ---------- Trocas e envios ---------- */
.policy { display: grid; border-top: 1px solid var(--line); }
.pol { padding: 28px 0; border-bottom: 1px solid var(--line); }
.pol__h { display: flex; align-items: center; gap: 14px; }
.pol__h .i { width: 30px; height: 30px; color: var(--cafe); stroke-width: 1.15; }
.pol h3 { font: 400 1.7rem/1.1 var(--serif); color: var(--ink); }
.pol ul { display: grid; gap: 10px; margin-top: 16px; }
.pol li { position: relative; padding-left: 20px; font-size: .97rem; line-height: 1.6; color: var(--text); }
.pol li::before { content: ""; position: absolute; left: 0; top: .8em; width: 9px; height: 1px; background: var(--cafe); }
.pol small { color: var(--muted); }
@media (min-width: 760px) { .policy { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; } }
@media (min-width: 1180px) {
  .policy { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 36px; border-top: 0; }
  .pol { padding: 30px 0 0; border-top: 1px solid var(--line); border-bottom: 0; }
}

.measures { margin-top: 40px; border: 1px solid var(--line); background: var(--paper-2); }
.measures summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 12px 20px;
  cursor: pointer; list-style: none; font: 400 1.4rem/1.2 var(--serif); color: var(--ink);
}
.measures summary::-webkit-details-marker { display: none; }
.measures summary > span { display: inline-flex; align-items: center; gap: 12px; }
.measures summary .i { width: 26px; height: 26px; color: var(--cafe); stroke-width: 1.2; }
.measures summary::after {
  content: ""; flex: none; width: 30px; height: 30px; border: 1px solid var(--line-2); border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5v9M3.5 8h9' fill='none' stroke='%2315120f' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .35s var(--ease);
}
.measures[open] summary::after { transform: rotate(45deg); }
.measures__body { padding: 0 20px 22px; }
.measures__body > p { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.table-wrap { overflow-x: auto; }
.measures table { width: 100%; min-width: 300px; border-collapse: collapse; font-size: .95rem; font-variant-numeric: tabular-nums; }
.measures th, .measures td { padding: 11px 8px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.measures thead th { font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.measures tbody th { font: 400 1.1rem var(--serif); color: var(--ink); }
.measures td { color: var(--text); }
.trocas__end { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 24px; margin-top: 36px; }
@media (max-width: 559px) { .trocas__end .btn { width: 100%; } }

/* ---------- Loja e contato ---------- */
.ct { display: grid; gap: 44px; }
.ct__addr { margin-top: 24px; font: 400 1.45rem/1.45 var(--serif); color: var(--ink); }
.hours { margin-top: 26px; border-top: 1px solid var(--line); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours dt { color: var(--muted); }
.hours dd { font-weight: 500; color: var(--ink); text-align: right; }
.ct__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ct__ctas .btn { flex: 1 1 200px; }
.ct__ctas .btn .i { width: 17px; height: 17px; }
.ct__tel { margin-top: 18px; font-size: .92rem; color: var(--muted); }
.map { position: relative; overflow: hidden; border: 1px solid var(--line); background: #f7f2ea; }
.map__svg { width: 100%; height: auto; aspect-ratio: 1 / 1; }
.map figcaption {
  position: absolute; left: 12px; top: 12px; padding: 6px 10px; border: 1px solid var(--line);
  background: rgba(246, 241, 233, .94); font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.map__pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.8s ease-out 4; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }
@media (min-width: 640px) { .map__svg { aspect-ratio: 600 / 460; } }
@media (min-width: 1024px) { .ct { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 88px; align-items: center; } .ct__ctas .btn { flex: 0 0 auto; } }

/* ---------- Rodapé ---------- */
.ftr { padding: clamp(64px, 9vw, 112px) 0 calc(96px + env(safe-area-inset-bottom)); background: var(--ink); color: var(--on-dark-2); font-size: .95rem; }
.ftr__mark { font: 400 min(15.5vw, 12.5rem)/.9 var(--serif); letter-spacing: -.02em; color: var(--sand); white-space: nowrap; }
.ftr__mark em { font-style: italic; }
.ftr__cols { display: grid; gap: 34px; margin-top: clamp(40px, 6vw, 72px); padding-top: 36px; border-top: 1px solid var(--line-dark); }
.ftr__h { margin-bottom: 10px; font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--sand); }
.ftr__about p:not(.ftr__h) { max-width: 34ch; }
.ftr__hours { margin-top: 10px; }
.ftr ul a { display: inline-flex; align-items: center; min-height: 40px; color: var(--on-dark); text-decoration: none; transition: color .2s; }
.ftr ul a:hover { color: var(--sand); }
.ftr__demo {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 20px;
  margin-top: 48px; padding: 6px 16px; border: 1px solid var(--line-dark); font-size: .9rem; color: var(--on-dark);
}
.ftr__demo p { padding-block: 10px; }
.ftr__demo a { color: #7ec4ff; font-weight: 500; text-decoration: none; }
.ftr__demo a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ftr__back { display: inline-flex; align-items: center; min-height: 44px; }
.ftr__note { margin-top: 16px; font-size: .84rem; }
@media (min-width: 760px) { .ftr__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .ftr { padding-bottom: 48px; }
  .ftr__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa {
  position: fixed; z-index: 75; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; text-decoration: none;
  box-shadow: 0 14px 32px -10px rgba(10, 110, 50, .6), 0 4px 14px rgba(0, 0, 0, .16);
  transition: transform .5s var(--ease-out), opacity .35s, visibility .35s;
}
.wa svg { width: 28px; height: 28px; }
.js .wa { opacity: 0; visibility: hidden; transform: translateY(18px) scale(.86); }
.js .wa.is-on { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) { .js .wa.is-on:hover { transform: translateY(-3px); } }

/* ---------- Grão de filme nas fotos (textura editorial) ---------- */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28; mix-blend-mode: overlay;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ---------- Revelação ao rolar (só com JavaScript) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .lb__f[data-reveal] img { clip-path: inset(14% 0 0 0); transform: scale(1.08); transition: clip-path 1.5s var(--ease-out), transform 1.8s var(--ease-out); }
.js .lb__f[data-reveal].is-in img { clip-path: inset(0); transform: none; }

/* ---------- Movimento reduzido: sem animações de entrada (o vídeo continua) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js [data-reveal].is-in { opacity: 1; transform: none; transition: none; }
  .js .lb__f[data-reveal] img { clip-path: none; transform: none; transition: none; }
  .js .hero__title .ln > span, .js .hero__eyebrow, .js .hero__lead, .js .hero__ctas, .js .hero__lines { animation: none; }
  .menu.is-open .menu__list li { animation: none; }
  .map__pulse { animation: none; opacity: 0; }
  .cq, .line__name, .piece__buy::after { transition: none; }
}
