:root {
  color-scheme: light;
  --ivory: #F6F1EA;
  --linen: #EFE7DC;
  --sand: #E6DACB;
  --fendi: #B8A898;
  --terracotta: #C07A56;
  --wood: #5A3A26;
  --brass: #B89A62;
  --brass-light: #E2CD9C;
  --charcoal: #2A2521;
  --charcoal-2: #1E1A17;
  --ink: #2A2521;
  --muted: #5A4A3E;
  --soft: #7A6A5C;
  --on-dark: #F6F1EA;
  --on-dark-muted: #BFB2A3;
  --line: #D8CBBB;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(16px, 4vw, 64px);
  --maxw: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 600; color: #8A5A3B; margin: 0;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(36px, 5vw, 60px); }
.lede { font-size: 17px; color: var(--muted); max-width: 58ch; margin: 0; }
.proto-note {
  font-size: 12px; color: var(--soft); border: 1px dashed var(--fendi);
  padding: 4px 10px; border-radius: 999px; display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 15px 28px; border-radius: 999px; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn-brass {
  position: relative; overflow: hidden;
  background: linear-gradient(110deg, var(--brass) 0%, #CDB27C 50%, var(--brass) 100%);
  color: var(--charcoal);
}
.btn-brass::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 246, 222, .7) 50%, transparent 62%);
  transform: translateX(-110%);
  animation: shine 4.5s var(--ease) infinite;
}
@keyframes shine { 0%, 55% { transform: translateX(-110%); } 85%, 100% { transform: translateX(110%); } }
.btn-ghost { border-color: rgba(246, 241, 234, .6); color: var(--on-dark); background: transparent; }
.btn-ghost:hover { background: rgba(246, 241, 234, .12); }
.btn-wood { background: var(--wood); color: var(--on-dark); }
.btn-wood:hover { background: #4A2F1E; }
.btn-line { border-color: var(--wood); color: var(--wood); background: transparent; }
.btn-line:hover { background: var(--wood); color: var(--on-dark); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding-top: calc(env(safe-area-inset-top, 0px) + 14px);
  padding-inline: var(--gutter);
  transition: padding .5s var(--ease);
}
.header-bar {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px 14px 12px 26px; border-radius: 999px;
  border: 1px solid transparent; color: var(--on-dark);
  transition: background .5s var(--ease), border-color .5s, color .5s, box-shadow .5s;
}
.header.is-scrolled .header-bar {
  background: rgba(246, 241, 234, .66);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(184, 154, 98, .3);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(42, 37, 33, .1);
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand b { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: .01em; }
.brand small { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; margin-top: 4px; opacity: .8; }
.nav { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav a {
  text-decoration: none; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; position: relative; padding-block: 6px;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.tools { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer; position: relative;
  transition: background .3s;
}
.icon-btn:hover { background: rgba(184, 154, 98, .18); }
.icon-btn svg { width: 20px; height: 20px; }
.badge {
  position: absolute; top: 4px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--terracotta); color: #fff;
  font-size: 10px; font-weight: 600; display: grid; place-items: center;
}
.menu-btn { display: none; }
.search-pop {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(340px, calc(100vw - 32px));
  background: var(--ivory); color: var(--ink); border-radius: 18px; padding: 14px;
  box-shadow: 0 24px 60px rgba(42, 37, 33, .2); border: 1px solid var(--line);
}
.search-pop label { font-size: 12px; color: var(--soft); display: block; margin-bottom: 6px; }
.search-pop input {
  width: 100%; border: 0; border-bottom: 1px solid var(--brass); background: transparent;
  font: inherit; font-size: 16px; padding: 8px 2px; color: var(--ink); outline: none;
}
.tools-wrap { position: relative; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--charcoal);
  min-height: clamp(600px, 92vh, 900px); color: var(--on-dark);
  display: flex; align-items: flex-end;
}
.hero-slides { position: absolute; inset: -80px 0 0; will-change: transform; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1);
  transition: transform 8s linear;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { transform: scale(1.08); }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(30, 26, 23, .85) 0%, rgba(30, 26, 23, .5) 45%, rgba(30, 26, 23, .1) 100%),
    linear-gradient(0deg, rgba(30, 26, 23, .7) 0%, rgba(30, 26, 23, 0) 40%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding-block: 160px 72px;
  display: grid; gap: 28px;
}
.hero-content .eyebrow { color: var(--brass-light); }
.hero h1 { font-size: clamp(44px, 7vw, 92px); max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--brass-light); font-weight: 400; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; animation: rise 1.2s var(--ease) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { from { transform: translateY(40%); opacity: .2; } to { transform: none; opacity: 1; } }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: #E6DACB; max-width: 48ch; margin: 0; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(246, 241, 234, .2); padding-top: 22px; margin-top: 16px;
  font-size: 13px; color: #D8C8B6;
}
.hero-dots { display: flex; gap: 10px; align-items: center; }
.hero-dots button {
  width: 34px; height: 24px; border: 0; background: transparent; cursor: pointer; padding: 0;
  display: grid; align-items: center;
}
.hero-dots button::before {
  content: ''; height: 2px; background: rgba(246, 241, 234, .35); border-radius: 2px;
  transition: background .4s;
}
.hero-dots button[aria-current="true"]::before { background: var(--brass-light); }
.hero-count { font-variant-numeric: tabular-nums; letter-spacing: .12em; }

/* ---------- Sections ---------- */
section.block { padding-block: clamp(80px, 11vw, 140px); }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 28px; flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head > div { display: grid; gap: 14px; }

/* ---------- Vitrine ---------- */
.vitrine { display: flex; gap: 20px; }
.v-card {
  flex: 1 1 0; min-width: 0; display: flex; flex-direction: column;
  background: var(--linen); border-radius: 22px; overflow: hidden;
  transition: flex-grow .8s var(--ease), box-shadow .6s var(--ease);
  cursor: pointer; border: 1px solid transparent;
}
.v-card.is-open { flex-grow: 1.7; box-shadow: 0 30px 70px rgba(90, 58, 38, .16); border-color: rgba(184, 154, 98, .5); }
.v-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.v-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .9s var(--ease), transform 1.2s var(--ease);
}
.v-media img + img { opacity: 0; }
.v-card.is-open .v-media img + img { opacity: 1; }
.v-card.is-open .v-media img { transform: scale(1.04); }
.v-tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  background: rgba(246, 241, 234, .78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 7px 12px; border-radius: 999px; color: var(--wood);
}
.v-body { padding: 24px 26px 28px; display: grid; gap: 12px; }
.v-body h3 { font-size: 30px; }
.v-mats { display: flex; gap: 8px; flex-wrap: wrap; }
.v-mats span { font-size: 12px; background: var(--sand); padding: 5px 12px; border-radius: 999px; color: var(--muted); }
.v-more {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .8s var(--ease);
}
.v-more > div { overflow: hidden; display: grid; gap: 16px; }
.v-card.is-open .v-more { grid-template-rows: 1fr; }
.v-more p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }

/* ---------- Galeria ---------- */
.gallery-section { background: var(--linen); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--fendi); background: transparent; border-radius: 999px;
  padding: 10px 18px; font-size: 13px; cursor: pointer; color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.chip:hover { border-color: var(--wood); }
.chip[aria-pressed="true"] { background: var(--charcoal); color: var(--on-dark); border-color: var(--charcoal); }
.masonry { columns: 3 300px; column-gap: 18px; }
.tile {
  break-inside: avoid; margin: 0 0 18px; position: relative; border-radius: 16px; overflow: hidden;
  cursor: zoom-in; background: var(--sand);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.tile.is-out { opacity: 0; transform: scale(.96); }
.tile img { width: 100%; height: auto; transition: transform .9s var(--ease); }
.tile:hover img, .tile:focus-visible img { transform: scale(1.06); }
.tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 60px 20px 18px; color: var(--on-dark);
  background: linear-gradient(0deg, rgba(30, 26, 23, .82), rgba(30, 26, 23, 0));
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
  transform: translateY(8px); opacity: .92; transition: transform .6s var(--ease), opacity .6s;
}
.tile:hover figcaption { transform: none; opacity: 1; }
.tile figcaption b { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.1; display: block; }
.tile figcaption small { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-light); }
.fav {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  border: 0; cursor: pointer; display: grid; place-items: center;
  background: rgba(246, 241, 234, .75); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--wood); transition: transform .3s var(--ease);
}
.fav:hover { transform: scale(1.08); }
.fav svg { width: 18px; height: 18px; }
.fav[aria-pressed="true"] svg path { fill: var(--terracotta); stroke: var(--terracotta); }
.empty { color: var(--soft); padding: 30px 0; }

/* ---------- Quick view ---------- */
dialog.qv {
  border: 0; padding: 0; border-radius: 24px; width: min(1100px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px); background: var(--ivory); color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .4); overflow: auto;
}
dialog.qv::backdrop { background: rgba(30, 26, 23, .62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
dialog.qv[open] { animation: qv-in .6s var(--ease); }
@keyframes qv-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.qv-grid { display: grid; grid-template-columns: 1.15fr 1fr; }
.qv-stage { position: relative; background: var(--sand); min-height: 420px; overflow: hidden; cursor: crosshair; }
.qv-stage > img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.lens {
  position: absolute; width: 190px; height: 190px; border-radius: 50%; pointer-events: none;
  border: 3px solid var(--brass); box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  background-repeat: no-repeat; background-size: 280%;
  transform: translate(-50%, -50%) scale(.6); opacity: 0;
  transition: opacity .3s, transform .4s var(--ease);
}
.qv-stage.is-zoom .lens { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.qv-hint {
  position: absolute; left: 16px; bottom: 16px; font-size: 12px; padding: 7px 12px; border-radius: 999px;
  background: rgba(246, 241, 234, .8); color: var(--wood);
}
.qv-info { padding: clamp(24px, 4vw, 44px); display: grid; gap: 18px; align-content: start; }
.qv-info h3 { font-size: clamp(32px, 3.4vw, 44px); }
.qv-info p { margin: 0; color: var(--muted); }
.qv-thumbs { display: flex; gap: 10px; }
.qv-thumbs button {
  width: 76px; height: 76px; padding: 0; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: var(--sand);
}
.qv-thumbs button[aria-current="true"] { border-color: var(--wood); }
.qv-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.swatches { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.swatches span.lbl { font-size: 13px; color: var(--soft); margin-right: 6px; }
.sw {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1px var(--fendi);
}
.sw[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--wood); }
.qv-close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%;
  border: 0; background: rgba(246, 241, 234, .85); cursor: pointer; font-size: 22px; line-height: 1;
}
.qv-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

/* ---------- Hub de links ---------- */
.hub { background: var(--charcoal); color: var(--on-dark); position: relative; overflow: hidden; }
.hub::before {
  content: ''; position: absolute; inset: -40px;
  background: url(../img/area-externa.jpg) center / cover;
  filter: blur(28px) saturate(.8); opacity: .32;
}
.hub .wrap { position: relative; }
.hub .eyebrow { color: var(--brass-light); }
.hub .lede { color: var(--on-dark-muted); }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.hub-card {
  display: grid; gap: 14px; align-content: start; padding: 28px; border-radius: 20px; text-decoration: none;
  background: rgba(246, 241, 234, .08); border: 1px solid rgba(246, 241, 234, .16);
  -webkit-backdrop-filter: blur(18px) saturate(130%); backdrop-filter: blur(18px) saturate(130%);
  transition: background .4s, border-color .4s, transform .6s var(--ease);
}
.hub-card:hover { background: rgba(246, 241, 234, .14); border-color: rgba(226, 205, 156, .55); transform: translateY(-4px); }
.hub-card svg { width: 28px; height: 28px; color: var(--brass-light); }
.hub-card h3 { font-size: 28px; }
.hub-card p { margin: 0; color: var(--on-dark-muted); font-size: 14px; }
.hub-card .go { font-size: 13px; font-weight: 600; color: var(--brass-light); letter-spacing: .04em; }
.hub-card .go i { display: inline-block; font-style: normal; transition: transform .5s var(--ease); }
.hub-card:hover .go i { transform: translateX(6px); }
.hub-card.primary { background: rgba(184, 154, 98, .22); border-color: rgba(226, 205, 156, .5); }
.hub-sellers { display: flex; gap: 8px; flex-wrap: wrap; }
.hub-sellers a {
  font-size: 13px; text-decoration: none; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(226, 205, 156, .5); color: var(--on-dark);
}
.hub-sellers a:hover { background: rgba(226, 205, 156, .2); }

/* ---------- Conceito ---------- */
.concept { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.concept-media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; max-width: 100%; }
.concept-media img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.concept-media .proto-note { position: absolute; left: 16px; top: 16px; background: rgba(246, 241, 234, .9); }
.concept-text { display: grid; gap: 22px; }
.steps { list-style: none; margin: 10px 0 0; padding: 0; border-top: 1px solid var(--line); }
.steps li {
  display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.steps b { font-family: var(--serif); font-size: 26px; font-weight: 500; color: #8A5A3B; line-height: 1; }
.steps strong { display: block; font-weight: 600; margin-bottom: 2px; }
.steps span { color: var(--muted); font-size: 15px; }

/* ---------- Depoimentos ---------- */
.quotes { background: var(--wood); color: var(--on-dark); }
.quotes .eyebrow { color: var(--brass-light); }
.q-wrap { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(12px, 3vw, 40px); align-items: center; }
.q-nav {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(226, 205, 156, .5);
  background: transparent; color: var(--brass-light); cursor: pointer; font-size: 22px;
  transition: background .3s;
}
.q-nav:hover { background: rgba(226, 205, 156, .15); }
.q-stage { position: relative; min-height: 300px; }
.q-slide {
  position: absolute; inset: 0; display: grid; gap: 26px; align-content: center;
  opacity: 0; transform: translateY(12px); transition: opacity .9s var(--ease), transform .9s var(--ease);
  pointer-events: none;
}
.q-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.q-mark { font-family: var(--serif); font-size: 120px; line-height: .5; color: var(--brass); height: 44px; }
.q-slide blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.25;
  max-width: 30ch;
}
.q-slide cite { font-style: normal; font-size: 14px; color: #D8C8B6; }
.q-slide cite b { color: var(--on-dark); font-weight: 600; display: block; font-size: 15px; }
.q-slide cite .g-stars { display: block; margin-bottom: 6px; }
.q-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.g-rating {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--on-dark);
  padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(226, 205, 156, .45);
  background: rgba(246, 241, 234, .06); transition: background .3s;
}
.g-rating:hover { background: rgba(226, 205, 156, .16); }
.g-score { font-family: var(--serif); font-size: 30px; line-height: 1; font-weight: 600; }
.g-stars { color: var(--brass-light); letter-spacing: .12em; font-size: 15px; }
.g-count { font-size: 13px; color: #E6DACB; }
.hero-rating { display: inline-flex; gap: 10px; align-items: center; color: #E6DACB; text-decoration: none; font-size: 13px; }
.hero-rating .g-stars { font-size: 13px; }
.hero-rating:hover { color: var(--on-dark); }
.addr { font-style: normal; }
.addr-card { display: grid; gap: 4px; font-size: 14px; color: var(--on-dark-muted); }
.addr-card strong { color: var(--on-dark); font-weight: 500; }
.q-dots { display: flex; gap: 8px; margin-top: 34px; }
.q-dots span { width: 12px; height: 4px; border-radius: 3px; background: #8A6A52; transition: width .5s var(--ease), background .5s; }
.q-dots span.on { width: 40px; background: var(--brass-light); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal-2); color: var(--on-dark-muted); padding-block: 90px 40px; }
.f-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.5fr; gap: 40px; }
.footer h4 {
  margin: 0 0 16px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-light); font-weight: 600;
}
.footer p { margin: 0; font-size: 14px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--on-dark); }
.f-links { display: grid; gap: 8px; font-size: 14px; }
.f-brand b { font-family: var(--serif); font-size: 36px; color: var(--on-dark); font-weight: 500; display: block; line-height: 1; }
.seal {
  display: inline-flex; gap: 12px; align-items: center; margin-top: 22px; padding: 12px 16px;
  border: 1px solid rgba(184, 154, 98, .55); border-radius: 14px; font-size: 13px; color: #E6DACB;
}
.seal svg { width: 26px; height: 26px; color: var(--brass-light); flex: none; }
.news { display: grid; gap: 12px; }
.news-row { display: flex; border-bottom: 1px solid var(--brass); }
.news-row input {
  flex: 1; min-width: 0; background: transparent; border: 0; color: var(--on-dark); font: inherit;
  font-size: 15px; padding: 12px 2px; outline: none;
}
.news-row input::placeholder { color: #8C7F72; }
.news-row button {
  background: transparent; border: 0; color: var(--brass-light); font-weight: 600; cursor: pointer; padding: 0 4px;
}
.news label.lgpd { display: flex; gap: 10px; font-size: 12px; align-items: flex-start; line-height: 1.5; }
.news label.lgpd input { accent-color: var(--brass); margin-top: 3px; }
.news-msg { font-size: 13px; color: var(--brass-light); min-height: 20px; }
.f-bottom {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid #3A332D;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: #8C7F72;
}

/* ---------- Cursor ---------- */
.cursor, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .has-cursor .cursor, .has-cursor .cursor-ring {
    display: block; position: fixed; left: 0; top: 0; pointer-events: none; z-index: 100; border-radius: 50%;
  }
  .has-cursor .cursor { width: 6px; height: 6px; background: var(--brass); }
  .has-cursor .cursor-ring {
    width: 38px; height: 38px; border: 1px solid rgba(184, 154, 98, .8);
    transition: width .45s var(--ease), height .45s var(--ease), background .45s, border-color .45s;
  }
  .has-cursor .cursor-ring.is-hover { width: 72px; height: 72px; background: rgba(184, 154, 98, .14); border-color: rgba(184, 154, 98, .3); }
  [data-magnetic] { transition: transform .5s var(--ease); }
}

/* ---------- Reveal ---------- */
.reveal.pre { opacity: 0; transform: translateY(24px); }
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .header.menu-open .nav {
    display: grid; position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 8px);
    background: var(--ivory); color: var(--ink); border-radius: 20px; padding: 14px 24px;
    box-shadow: 0 24px 60px rgba(42, 37, 33, .2); gap: 0;
  }
  .header.menu-open .nav a { padding-block: 12px; border-bottom: 1px solid var(--line); }
  .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .vitrine { flex-direction: column; }
  .v-card, .v-card.is-open { flex-grow: 1; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-stage { min-height: 0; aspect-ratio: 1 / 1; }
  .concept { grid-template-columns: 1fr; }
  .q-wrap { grid-template-columns: 1fr; }
  .q-nav { display: none; }
  .q-stage { min-height: 360px; }
}
@media (max-width: 560px) {
  .f-grid { grid-template-columns: 1fr; }
  .brand b { font-size: 24px; }
  .header-bar { padding-left: 18px; }
  .hero-cta .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal.pre { opacity: 1; transform: none; }
}

/* ---------- Utilitários ---------- */
[hidden] { display: none !important; }
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; border-radius: 999px;
  background: var(--charcoal); color: var(--on-dark); text-decoration: none; font-size: 14px;
}
.skip:focus { top: 16px; }
