/* ============================================================
   STUDIO CORINA — Interface v3
   Dark editorial · fotos em fusão com o preto · sem blocos
   ============================================================ */

:root {
  --bg: #e9e7e1;          /* paper arquitetônico, frio */
  --bg2: #f4f2ee;
  --ink-solid: #14130f;   /* near-black das bandas escuras */
  --ivory: #14130f;
  --mut: #625d54;
  --mut2: #928c81;
  --accent: #c1502f;      /* clay / terracota — acento de estúdio */
  --accent2: #a23c1e;
  --line: rgba(20, 19, 15, .18);
  --line2: rgba(20, 19, 15, .08);
  --max: 1320px;
  --serif: "Syne", "Hanken Grotesk", sans-serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.page-enter { animation: pageIn 1s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 56px); }

h1, h2, h3 {
  font-family: var(--serif); font-weight: 700; line-height: 1.02;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(34px, 6vw, 78px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.6vw, 46px); }
h3 { font-size: clamp(17px, 2vw, 23px); font-weight: 600; }
h1 em, h2 em { font-style: normal; color: var(--accent); }

/* kicker fino dentro do título */
.fina {
  display: block; color: var(--mut2); font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: .42em; text-transform: uppercase; font-weight: 300;
  font-family: var(--mono); margin-bottom: 18px;
}

/* label mono */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--accent); font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--accent); }

/* sub com filete lateral */
.sub {
  max-width: 520px; border-left: 1px solid rgba(25, 21, 16, .3);
  padding-left: 26px; margin: 34px 0 44px;
  color: var(--mut); font-weight: 300; font-size: 16px; line-height: 1.75;
}
.sub b { color: var(--ivory); font-weight: 500; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--line); background: transparent; color: var(--ivory);
  transition: border-color .35s, background .35s, color .35s, transform .35s var(--ease);
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover { border-color: var(--accent); color: var(--accent2); transform: translateY(-2px); }
.btn:hover .arr { transform: translateX(6px); }
.btn.gold { border-color: var(--accent); color: var(--accent); }
.btn.gold:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.sec.dark .btn { border-color: rgba(255,255,255,.28); color: #f6f4f0; }
.sec.dark .btn:hover { border-color: var(--accent); color: #fff; background: var(--accent); }
.sec.dark .btn.gold { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Estatísticas ---------- */
.stats { display: flex; gap: clamp(16px, 2.5vw, 36px); margin-top: 52px; flex-wrap: nowrap; }
.stats > div { border-top: 1px solid rgba(25, 21, 16, .2); padding-top: 14px; flex: 1; min-width: 0; }
.stats .l { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stats .n { font-size: clamp(26px, 3vw, 34px); font-weight: 200; font-family: var(--sans); color: var(--ivory); }
.stats .n i { font-style: normal; color: var(--accent2); font-size: .6em; }
.stats .l {
  color: var(--mut2); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-family: var(--mono); margin-top: 6px;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(233, 231, 225, .82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line2);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--serif); font-weight: 300; font-size: 13px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ivory);
}
.nav { display: flex; gap: 36px; font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.nav a { color: var(--mut); transition: color .25s; position: relative; padding-bottom: 4px; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ivory); }
.nav a:hover::after { width: 100%; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--ivory);
  width: 40px; height: 40px; position: relative; z-index: 130;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; width: 24px; height: 1.5px;
  background: currentColor; transition: transform .4s var(--ease), top .4s;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO — quadro com moldura dupla + foto em fusão
   ============================================================ */
.hero { min-height: 92vh; display: flex; flex-direction: column; padding-top: 68px; }
.hero-frame {
  position: relative; flex: 1; display: flex; align-items: center;
  width: 100%; padding: 88px 0 96px; overflow: hidden;
}
.hero .sub { border-left: none; padding-left: 0; }

/* variante: foto do hero à esquerda, texto à direita */
.hero-photo.left { inset: 0 auto 0 0; }
.hero-photo.left img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.3) 22%, rgba(0,0,0,.8) 45%, #000 65%);
          mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.3) 22%, rgba(0,0,0,.8) 45%, #000 65%);
}
.hero.flip .hero-content { display: flex; justify-content: flex-end; }
.hero.flip .flip-box { max-width: 620px; }
@media (max-width: 820px) {
  .hero-photo.left { width: 88%; opacity: .5; }
  .hero.flip .hero-content { justify-content: flex-start; }
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block; transform: translateY(112%);
  animation: lineUp 1.2s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes lineUp { to { transform: none; } }
.hero .sub { opacity: 0; animation: fadeUp 1.1s var(--ease) .8s forwards; }
.hero .btn-row { opacity: 0; animation: fadeUp 1.1s var(--ease) 1s forwards; }
.hero .stats { opacity: 0; animation: fadeUp 1.1s var(--ease) 1.2s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* foto com fusão para o preto */
.hero-photo { position: absolute; inset: 0 0 0 auto; width: 52%; max-width: 900px; pointer-events: none; z-index: 1; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 22%, rgba(0,0,0,.8) 45%, #000 65%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 22%, rgba(0,0,0,.8) 45%, #000 65%);
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(245,242,236,.92) 4%, transparent 40%),
              linear-gradient(to bottom, rgba(245,242,236,.75) 2%, transparent 30%);
}

.scroll-cue {
  position: absolute; right: clamp(28px, 4vw, 56px); bottom: 42px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--mut2); writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2);
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--serif); font-weight: 200; font-size: 11px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--mut2); white-space: nowrap;
}
.marquee-track em { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SEÇÕES COM FOTO EM FUSÃO
   ============================================================ */
.sec { position: relative; padding: clamp(80px, 12vh, 130px) 0; overflow: hidden; }
.sec-inner { position: relative; z-index: 2; }

/* imagem fundida à direita ou esquerda */
.fused { position: absolute; top: 0; bottom: 0; pointer-events: none; z-index: 1; }
.fused.right { right: 0; width: 55%; max-width: 940px; }
.fused.left { left: 0; width: 50%; max-width: 860px; }
.fused img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .9s var(--ease), transform 1.2s var(--ease);
}
.fused.right img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
}
.fused.left img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
          mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
}
.fused::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(245,242,236,.9) 3%, transparent 34%),
              linear-gradient(to bottom, rgba(245,242,236,.72) 2%, transparent 26%);
}

/* ============================================================
   SOLUÇÕES — lista com troca de imagem fundida
   ============================================================ */
.solutions { min-height: 88vh; display: flex; align-items: center; }
.sol-media { position: absolute; inset: 0 0 0 auto; width: 55%; max-width: 940px; pointer-events: none; z-index: 1; }
.sol-bg { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.sol-bg.is-active { opacity: 1; }
.sol-bg img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 24%, rgba(0,0,0,.85) 52%, #000 70%);
}
.sol-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(245,242,236,.9) 3%, transparent 34%),
              linear-gradient(to bottom, rgba(245,242,236,.72) 2%, transparent 26%);
}
.sol-wrap { max-width: 640px; }
.sol-wrap h2 { margin: 18px 0 10px; }
.sol-wrap > p { color: var(--mut); font-weight: 300; font-size: 15px; max-width: 44ch; margin-bottom: 40px; }
.sol-list { list-style: none; }
.sol-list button {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid var(--line2);
  color: var(--ivory); display: flex; align-items: center; gap: 20px;
  padding: clamp(16px, 2.4vh, 24px) 4px; text-align: left; cursor: pointer;
  transition: padding-left .45s var(--ease), border-color .45s;
}
.sol-list li:first-child button { border-top: 1px solid var(--line2); }
.sol-list .n {
  font-family: var(--mono); font-size: 11px;
  color: var(--mut2); width: 30px; flex: none; letter-spacing: .1em;
  transition: color .3s;
}
.sol-list .t {
  font-family: var(--serif); font-weight: 200; font-size: clamp(15px, 1.9vw, 22px);
  flex: 1; line-height: 1.2; transition: color .3s;
}
.sol-list .a {
  opacity: 0; transform: translateX(-10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  color: var(--accent2); font-size: 18px;
}
.sol-list button:hover, .sol-list button:focus-visible {
  padding-left: 20px; border-bottom-color: rgba(176, 141, 87, .5);
}
.sol-list button:hover .n, .sol-list button:focus-visible .n { color: var(--accent); }
.sol-list button:hover .t, .sol-list button:focus-visible .t { color: var(--accent2); }
.sol-list button:hover .a, .sol-list button:focus-visible .a { opacity: 1; transform: none; }
.sol-badge {
  font-family: var(--mono); font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent2);
  border: 1px solid rgba(176, 141, 87, .45); border-radius: 100px;
  padding: 5px 12px; flex: none;
}

/* ============================================================
   WORKSHOP / SOBRE
   ============================================================ */
.sec-text { max-width: 560px; }
.sec-text h2 { margin: 18px 0 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.chip-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mut);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px;
  transition: border-color .3s, color .3s;
}
.chip-tag:hover { border-color: var(--accent); color: var(--accent2); }

.quote {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(15px, 1.7vw, 19px); color: var(--ivory);
  border-left: 1px solid var(--accent); padding-left: 24px;
  margin: 30px 0 0; line-height: 1.55;
}

/* nome gigante em outline */
.giant-name {
  position: absolute; right: clamp(8px, 3vw, 64px); bottom: clamp(16px, 5vh, 56px);
  z-index: 2; pointer-events: none; text-align: right;
  font-family: var(--serif); font-weight: 200; text-transform: uppercase;
  font-size: clamp(36px, 7vw, 100px); line-height: .95; letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 21, 16, .22);
}
.giant-name em { font-style: normal; -webkit-text-stroke: 1px rgba(125, 97, 52, .45); }

/* ---------- Duas colunas: foto fundida + infos ---------- */
.two-col {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
  position: relative; z-index: 2;
}
.col-photo { position: relative; }
.col-photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  -webkit-mask-image: radial-gradient(115% 115% at 50% 50%, #000 50%, transparent 88%);
          mask-image: radial-gradient(115% 115% at 50% 50%, #000 50%, transparent 88%);
  transition: transform 1.2s var(--ease);
}
.col-photo:hover img { transform: scale(1.03); }
.h1-md { font-size: clamp(22px, 3.8vw, 44px); }

/* ---------- Mockup MacBook (CSS puro) ---------- */
.mock-laptop {
  width: 100%; max-width: 620px; margin: 0 auto;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.mock-screen {
  position: relative; background: #0e0c0a;
  border-radius: 16px 16px 0 0;
  padding: 16px 16px 20px;
  border: 1px solid rgba(25, 21, 16, .25);
  box-shadow: 0 40px 70px -35px rgba(25, 21, 16, .45);
}
.mock-cam {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #2c2823;
}
/* antes / depois dentro da tela */
.ba {
  position: relative; overflow: hidden; border-radius: 5px;
  aspect-ratio: 16 / 10; --pos: 55%;
  cursor: ew-resize; touch-action: none; user-select: none; -webkit-user-select: none;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
}
.ba-before {
  position: absolute; inset: 0; z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 3;
  width: 1px; background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 14px rgba(0, 0, 0, .4);
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10, 9, 7, .6); border: 1px solid rgba(255, 255, 255, .55);
  color: #fff; display: grid; place-items: center; font-size: 13px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ba-lbl {
  position: absolute; top: 10px; z-index: 4; pointer-events: none;
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: #fff;
  background: rgba(10, 9, 7, .55); border-radius: 100px; padding: 5px 11px;
}
.ba-lbl.b { left: 10px; }
.ba-lbl.a { right: 10px; }
.mock-base {
  height: 15px;
  background: linear-gradient(#ece6da, #c6bfb0);
  border: 1px solid rgba(25, 21, 16, .22); border-top: none;
  border-radius: 0 0 16px 16px;
  position: relative;
}
.mock-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 6px; background: rgba(25, 21, 16, .2);
  border-radius: 0 0 8px 8px;
}

/* ============================================================
   PILARES
   ============================================================ */
.pilares-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px); margin-top: 56px;
}
.pilar { border-top: 1px solid rgba(25, 21, 16, .2); padding-top: 18px; transition: border-color .4s; }
.pilar:hover { border-top-color: var(--accent); }
.pilar .n { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--mut2); display: block; margin-bottom: 12px; }
.pilar h3 { font-size: 22px; margin-bottom: 8px; }
.pilar p { font-size: 13px; font-weight: 300; color: var(--mut); }

/* ============================================================
   TIMELINE
   ============================================================ */
.tl-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 44px 4px 20px; scrollbar-width: none;
}
.tl-track::-webkit-scrollbar { display: none; }
.tl-item {
  flex: 0 0 min(290px, 76vw); scroll-snap-align: start;
  border-top: 1px solid rgba(25, 21, 16, .2);
  padding-top: 20px; position: relative; transition: border-color .4s;
}
.tl-item:hover { border-top-color: var(--accent); }
.tl-item .ano { font-family: var(--serif); font-weight: 200; font-size: 24px; display: block; line-height: 1.1; margin-bottom: 10px; color: var(--ivory); }
.tl-item p { font-size: 13px; color: var(--mut); font-weight: 300; max-width: 26ch; }
.tl-hint {
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mut2);
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.tl-hint::after { content: "⟶"; animation: hintX 2s var(--ease) infinite; }
@keyframes hintX { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

.sec.compact { padding: clamp(48px, 7vh, 80px) 0; }
.sec.compact .sub { margin: 22px 0 26px; }

/* ============================================================
   CONTATO — mapa (MASP) + form em etapas
   ============================================================ */
.map-box {
  position: relative; margin: 28px 0 24px;
  border: 1px solid var(--line); overflow: hidden;
}
.map-box iframe {
  display: block; width: 100%; height: 280px; border: 0;
  filter: grayscale(1) contrast(1.04);
  transition: filter .5s;
}
.map-box:hover iframe { filter: grayscale(.2); }
.map-pin {
  position: absolute; left: 12px; bottom: 12px; z-index: 2; pointer-events: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: #fff;
  background: rgba(10, 9, 7, .7); border-radius: 100px; padding: 7px 14px;
}
.addr {
  font-size: 15px; font-weight: 300; color: var(--mut); line-height: 1.7;
  margin-top: 6px;
}
.addr b { color: var(--ivory); font-weight: 500; }

/* ============================================================
   FORM
   ============================================================ */
/* faixa de números pequena + assinatura (seção O Studio) */
.stats.stats-sm { margin: 28px 0 4px; gap: clamp(18px, 3vw, 44px); }
.stats.stats-sm .n { font-size: clamp(22px, 2.4vw, 30px); }
.signature {
  font-family: var(--serif); font-weight: 200; font-size: clamp(18px, 2.2vw, 26px);
  color: var(--accent2); margin: 26px 0 4px; letter-spacing: .01em;
}

.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
  position: relative; z-index: 2;
}
.contact-grid > * { min-width: 0; }
.contact-map .map-box { margin: 0; }
.contact-map .map-box iframe { height: clamp(320px, 46vh, 460px); }
.contact-side h2 { margin: 16px 0 24px; }

/* faixa CTA que abre o modal de orçamento */
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(28px, 5vw, 72px); flex-wrap: wrap;
  border: 1px solid var(--line); padding: clamp(30px, 4.5vw, 56px);
  position: relative; z-index: 2;
}
.cta-band > div:first-child { max-width: 620px; }
.cta-band h2 { margin: 14px 0 14px; }
.cta-band .sub { margin: 0; border: none; padding: 0; }

/* modal do formulário (coluna única) */
.modal-form .form-sheet {
  grid-template-columns: 1fr; width: min(620px, 100%);
}
.modal-form .modal-body { max-height: 88svh; }
.modal-form .modal-body > p { margin-bottom: 22px; }
.contact-side h2 { margin: 16px 0 30px; }
.contact-links { list-style: none; }
.contact-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0; border-bottom: 1px solid var(--line2);
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mut);
  transition: color .3s, padding-left .35s var(--ease);
}
.contact-links li:first-child a { border-top: 1px solid var(--line2); }
.contact-links a:hover { color: var(--accent2); padding-left: 10px; }

.form-progress { display: flex; align-items: center; margin-bottom: 36px; }
.form-progress .p-step {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mut2);
  display: flex; align-items: center; gap: 10px; transition: color .4s; white-space: nowrap;
}
.form-progress .p-step .dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 10px;
  transition: all .4s var(--ease);
}
.form-progress .p-step.active { color: var(--ivory); }
.form-progress .p-step.active .dot { border-color: var(--accent); background: var(--accent); color: #fff; }
.form-progress .p-step.done .dot { border-color: var(--accent); color: var(--accent2); }
.form-progress .p-line { flex: 1; height: 1px; background: var(--line2); margin: 0 14px; position: relative; }
.form-progress .p-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.form-progress .p-line.filled::after { transform: scaleX(1); }

.step { display: none; animation: stepIn .6s var(--ease); }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.step legend { font-family: var(--serif); font-weight: 200; font-size: 17px; margin-bottom: 24px; color: var(--ivory); }
fieldset { border: none; }

.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.chip-grid input { position: absolute; opacity: 0; pointer-events: none; }
.chip-grid label.chip {
  border: 1px solid var(--line); padding: 15px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--mut);
  cursor: pointer; transition: all .3s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.chip-grid label.chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--mut2); transition: all .3s; flex: none;
}
.chip-grid label.chip:hover { border-color: rgba(176, 141, 87, .6); color: var(--ivory); }
.chip-grid input:checked + label.chip {
  border-color: var(--accent); color: var(--ivory);
  background: rgba(168, 131, 78, .12);
}
.chip-grid input:checked + label.chip::before { background: var(--accent); border-color: var(--accent); }

.f-field { margin-bottom: 20px; }
.f-field label {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mut2); margin-bottom: 8px;
}
.f-field input, .f-field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory); padding: 10px 0; font-size: 15px; font-family: var(--sans); font-weight: 300;
  transition: border-color .3s;
}
.f-field input:focus, .f-field textarea:focus { outline: none; border-color: var(--accent); }
.f-field textarea { resize: vertical; min-height: 80px; }

.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.step-nav .btn-ghost {
  background: none; border: none; color: var(--mut2);
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s;
}
.step-nav .btn-ghost:hover { color: var(--ivory); }

.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success.show { display: block; animation: stepIn .6s var(--ease); }
.form-success .ok {
  width: 62px; height: 62px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; margin: 0 auto 22px;
  color: var(--accent2); font-size: 22px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(176, 141, 87, .5); } 60% { box-shadow: 0 0 0 10px rgba(176, 141, 87, 0); } }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--mut); font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vh, 72px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px); padding-bottom: 48px;
}
.f-brand .logo { font-size: 14px; }
.f-brand p { color: var(--mut); font-weight: 300; font-size: 13px; margin-top: 14px; max-width: 30ch; }
.f-col h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mut2); font-weight: 400; margin-bottom: 18px;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; }
.f-col a {
  font-size: 13px; font-weight: 300; color: var(--mut);
  transition: color .25s, padding-left .3s var(--ease);
}
.f-col a:hover { color: var(--accent2); padding-left: 6px; }
.footer-bar {
  border-top: 1px solid var(--line2); padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mut2);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MODAIS
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  visibility: hidden; opacity: 0;
  transition: opacity .5s var(--ease), visibility .5s;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(40, 33, 26, .45);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.modal-sheet {
  position: relative; z-index: 2;
  width: min(980px, 100%); max-height: 88svh;
  display: grid; grid-template-columns: .9fr 1.1fr;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--ivory); overflow: hidden;
  transform: translateY(40px) scale(.97);
  transition: transform .6s var(--ease);
}
.modal.open .modal-sheet { transform: none; }
.modal-media { position: relative; min-height: 300px; overflow: hidden; }
.modal-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 1.4s var(--ease);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.5) 18%, #000 45%);
          mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.5) 18%, #000 45%);
}
.modal.open .modal-media img { transform: scale(1); }
.modal-body { padding: clamp(28px, 4vw, 48px); overflow-y: auto; }
.modal-body .eyebrow { margin-bottom: 16px; }
.modal-body h3 { margin-bottom: 14px; }
.modal-body > p { font-size: 14px; font-weight: 300; color: var(--mut); margin-bottom: 26px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245, 242, 236, .75); border: 1px solid var(--line); color: var(--ivory);
  font-size: 15px; line-height: 1;
  transition: transform .35s var(--ease), background .3s, border-color .3s;
}
.modal-close:hover { transform: rotate(90deg); background: var(--accent); border-color: var(--accent); color: #fff; }

.etapas { list-style: none; margin: 0 0 28px; }
.etapas li {
  display: flex; gap: 18px; padding: 14px 0;
  border-bottom: 1px solid var(--line2);
  align-items: baseline;
}
.etapas li:last-child { border-bottom: none; }
.etapas .n { font-family: var(--mono); font-size: 11px; color: var(--accent); flex: none; width: 28px; }
.etapas b { display: block; font-weight: 500; font-size: 14px; color: var(--ivory); }
.etapas span.d { font-size: 13px; font-weight: 300; color: var(--mut); }

/* barras comparativas */
.compare { margin: 6px 0 26px; }
.compare .row { margin-bottom: 16px; }
.compare .lbl {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mut); margin-bottom: 8px;
}
.compare .lbl b { color: var(--ivory); letter-spacing: .05em; }
.compare .track { height: 2px; background: var(--line2); overflow: hidden; }
.compare .bar {
  height: 100%; width: 0; background: linear-gradient(to right, var(--accent), var(--accent2));
  transition: width 1.4s var(--ease) .2s;
}
.compare .bar.dim { background: rgba(25, 21, 16, .3); }
.compare .note { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--mut2); margin-top: 10px; }

/* ============================================================
   PÁGINA STUDIO
   ============================================================ */
.page-hero { min-height: 64vh; }
.page-hero .hero-frame { padding: 70px 0; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .modal-sheet { grid-template-columns: 1fr; max-height: 92svh; overflow-y: auto; }
  .modal-media { min-height: 200px; }
  .modal-media img {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,.5) 18%, #000 45%);
            mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,.5) 18%, #000 45%);
  }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .col-photo { max-width: 380px; }
}
@media (max-width: 820px) {
  .hero-photo { width: 88%; opacity: .5; }
  .fused.right, .fused.left, .sol-media { width: 92%; opacity: .35; }
  .sec-text, .sol-wrap { max-width: 100%; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0; z-index: 120;
    background: rgba(245, 242, 236, .94);
    -webkit-backdrop-filter: blur(26px); backdrop-filter: blur(26px);
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    font-size: 13px;
    visibility: hidden; opacity: 0; transition: opacity .45s var(--ease), visibility .45s;
  }
  body.menu-open .nav { visibility: visible; opacity: 1; }
  .nav-toggle { display: block; }
  .chip-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .stats { gap: 24px; }
  .giant-name { display: none; }
}

/* ---------- Menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line span { transform: none; }
  .hero .sub, .hero .btn-row, .hero .stats { opacity: 1; }
}

/* ============================================================
   v4 — Elementos de estúdio / empresa
   ============================================================ */

/* ---------- Faixa de reconhecimento / imprensa ---------- */
.press { border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); padding: clamp(28px, 4vh, 44px) 0; }
.press-head {
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mut2); text-align: center; margin-bottom: 26px;
}
.press-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(24px, 5vw, 68px);
}
.press-row span {
  font-family: var(--serif); font-weight: 200; font-size: clamp(14px, 1.7vw, 20px);
  color: var(--mut); letter-spacing: .02em; white-space: nowrap;
  opacity: .82; transition: opacity .3s, color .3s;
}
.press-row span:hover { opacity: 1; color: var(--ivory); }

/* ---------- Portfólio de projetos ---------- */
.sec-head { max-width: 640px; margin-bottom: clamp(32px, 5vh, 52px); }
.sec-head.between { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head h2 { margin-top: 14px; }
.sec-head p { color: var(--mut); font-weight: 300; margin-top: 12px; }

.projects-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.project {
  position: relative; overflow: hidden; display: block;
  background: #ddd6cb; cursor: pointer; isolation: isolate;
}
.project img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease), filter .6s;
  filter: saturate(.92);
}
.project::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,10,8,.72) 2%, rgba(12,10,8,.12) 42%, transparent 68%);
  opacity: .75; transition: opacity .5s;
}
.project:hover img { transform: scale(1.05); filter: saturate(1.05); }
.project:hover::after { opacity: .95; }
.project .p-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(18px, 2vw, 26px); color: #fff;
  transform: translateY(6px); transition: transform .5s var(--ease);
}
.project:hover .p-meta { transform: none; }
.project .p-cat {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent2); display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.project .p-cat span { color: rgba(255,255,255,.6); }
.project .p-name { font-family: var(--serif); font-weight: 200; font-size: clamp(18px, 2vw, 26px); line-height: 1.1; }
.project .p-go {
  position: absolute; top: clamp(14px, 1.6vw, 20px); right: clamp(14px, 1.6vw, 20px); z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center; color: #fff; font-size: 14px;
  opacity: 0; transform: scale(.8) rotate(-20deg); transition: all .45s var(--ease);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.project:hover .p-go { opacity: 1; transform: none; }
/* spans editoriais */
.project.wide { grid-column: span 7; min-height: clamp(280px, 40vw, 440px); }
.project.narrow { grid-column: span 5; min-height: clamp(280px, 40vw, 440px); }
.project.half { grid-column: span 6; min-height: clamp(240px, 32vw, 360px); }
.project.third { grid-column: span 4; min-height: clamp(230px, 26vw, 320px); }

/* ---------- Processo ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 5vh, 52px);
}
.proc { border-top: 1px solid var(--line); padding-top: 20px; transition: border-color .4s; }
.proc:hover { border-top-color: var(--accent); }
.proc .s {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--mut2);
  display: block; margin-bottom: 14px;
}
.proc h3 { font-size: clamp(16px, 1.8vw, 21px); margin-bottom: 8px; }
.proc p { font-size: 13px; font-weight: 300; color: var(--mut); }

@media (max-width: 820px) {
  .project.wide, .project.narrow, .project.half, .project.third { grid-column: span 12; min-height: 62vw; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* CTA no menu */
.nav-cta {
  border: 1px solid var(--line); padding: 8px 16px; color: var(--ivory) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { border-color: var(--accent); background: var(--accent); color: #fff !important; }
.site-header.scrolled .nav-cta { border-color: var(--line); }

/* footer: bloco de dados da empresa */
.f-brand .f-info {
  margin-top: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  line-height: 2; color: var(--mut2); text-transform: uppercase;
}

/* ============================================================
   v5 — Camada corporativa (empresa, não portfólio)
   ============================================================ */

/* ---------- Faixa de métricas ---------- */
.metrics { border-bottom: 1px solid var(--line2); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line2);
}
.metric {
  padding: clamp(30px, 4.5vh, 52px) clamp(18px, 2vw, 32px);
  border-left: 1px solid var(--line2);
}
.metric:first-child { border-left: none; }
.metric .mv {
  font-family: var(--serif); font-weight: 200; font-size: clamp(30px, 4vw, 52px);
  line-height: 1; color: var(--ivory);
}
.metric .mv i { font-style: normal; color: var(--accent2); }
.metric .ml {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mut2); margin-top: 12px;
}
@media (max-width: 720px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(3) { border-left: none; }
}

/* ---------- Para quem atendemos ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(32px, 5vh, 52px); }
.aud {
  border: 1px solid var(--line); padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px; min-height: 220px;
  transition: border-color .4s, transform .5s var(--ease);
}
.aud:hover { border-color: var(--accent); transform: translateY(-6px); }
.aud .an { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--mut2); }
.aud h3 { font-size: clamp(18px, 2vw, 24px); }
.aud p { font-size: 13px; font-weight: 300; color: var(--mut); margin-top: auto; }
@media (max-width: 720px) { .aud-grid { grid-template-columns: 1fr; } }

/* ---------- Depoimentos ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(32px, 5vh, 52px); }
.qcard {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; flex-direction: column; gap: 20px; min-height: 240px;
}
.qcard blockquote {
  font-family: var(--serif); font-weight: 200; font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5; color: var(--ivory);
}
.qcard .qby { margin-top: auto; }
.qcard .qby b { display: block; font-weight: 500; font-size: 13px; }
.qcard .qby span { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--mut2); }
@media (max-width: 760px) { .quotes-grid { grid-template-columns: 1fr; } .qcard { min-height: 0; } }

/* ============================================================
   v6 — Ritmo de agência: bandas escuras de alto contraste
   ============================================================ */

/* --- Métricas em banda escura --- */
.metrics { background: var(--ink-solid); border: none; }
.metrics-grid { border-top: none; }
.metrics .metric { border-left-color: rgba(255,255,255,.1); }
.metrics .metric .mv { color: #f4f2ee; }
.metrics .metric .mv i { color: var(--accent); }
.metrics .metric .ml { color: rgba(255,255,255,.42); }

/* --- Utilitário de seção escura --- */
.sec.dark { background: var(--ink-solid); color: #e9e7e1; }
.sec.dark h2 { color: #f6f4f0; }
.sec.dark h2 em { color: var(--accent); }
.sec.dark h3 { color: #f6f4f0; }
.sec.dark p, .sec.dark .sub { color: rgba(255,255,255,.6); }
.sec.dark .sub { border-left-color: rgba(255,255,255,.25); }
.sec.dark .sub b { color: #f6f4f0; }
.sec.dark .sec-head p { color: rgba(255,255,255,.6); }
/* processo */
.sec.dark .proc { border-top-color: rgba(255,255,255,.16); }
.sec.dark .proc h3 { color: #f6f4f0; }
.sec.dark .proc p, .sec.dark .proc .s { color: rgba(255,255,255,.5); }
/* cta band */
.sec.dark .cta-band { border-color: rgba(255,255,255,.18); }

/* --- Footer escuro --- */
.site-footer { background: var(--ink-solid); border: none; color: rgba(255,255,255,.55); }
.site-footer .logo { color: #f6f4f0; }
.f-brand p { color: rgba(255,255,255,.5); }
.f-brand .f-info { color: rgba(255,255,255,.4); }
.f-col h4 { color: rgba(255,255,255,.42); }
.f-col a { color: rgba(255,255,255,.6); }
.f-col a:hover { color: var(--accent); }
.footer-bar { border-top-color: rgba(255,255,255,.12); color: rgba(255,255,255,.42); }

/* --- Tipografia de estúdio: ajustes de peso p/ Syne --- */
.logo { font-weight: 700; letter-spacing: .18em; }
.giant-name { font-weight: 800; -webkit-text-stroke-width: 1.2px; }
.sol-list .t { font-weight: 600; }
.tl-item .ano, .step legend, .quote, .signature, .metric .mv { font-weight: 600; }
.project .p-name, .aud h3, .qcard blockquote { font-weight: 600; }

/* ============================================================
   v7 — Mais arte, menos ruído
   ============================================================ */
:root { --max: 1400px; }
body { font-size: 16px; }
h1 { font-weight: 600; letter-spacing: -.03em; font-size: clamp(40px, 7.4vw, 104px); }
h2 { font-weight: 500; font-size: clamp(28px, 4.2vw, 60px); line-height: 1; }
h3 { font-weight: 500; }
.sec { padding: clamp(110px, 16vh, 190px) 0; }
.sec.compact { padding: clamp(80px, 11vh, 130px) 0; }
.hero { min-height: 100vh; }
.hero-frame { padding: 60px 0 120px; }
.hero-photo { width: 62%; max-width: none; }
.hero-photo::after { background: linear-gradient(to top, rgba(233,231,225,.95) 6%, transparent 42%); }
.hero .sub { font-size: 17px; max-width: 440px; margin-top: 28px; }
.eyebrow { letter-spacing: .3em; color: var(--mut2); font-size: 10px; }
.eyebrow::before, .eyebrow::after { display: none; }
.sub { border-left: none; padding-left: 0; }
.sol-wrap h2 { margin-bottom: 48px; }
.sol-list button { padding: clamp(20px, 3vh, 30px) 0; border-bottom-color: var(--line2); }
.sol-list .n { display: none; }
.sol-list .t { font-weight: 500; font-size: clamp(18px, 2.3vw, 28px); }
.sol-badge { border: none; padding: 0; color: var(--mut2); }
.sec-head { margin-bottom: clamp(48px, 8vh, 96px); }
.projects-grid { gap: clamp(20px, 3vw, 44px); }
.project::after { opacity: .35; }
.project .p-meta { color: #fff; }
.project img { filter: saturate(.8) contrast(1.02); transition: filter 1.2s var(--ease), transform 1.6s var(--ease); }
.project:hover img { filter: saturate(1); transform: scale(1.02); }
.project .p-go { display: none; }
.mock-laptop { animation: none; }
.mock-screen { background: transparent; border: none; padding: 0; border-radius: 0; box-shadow: none; }
.mock-cam, .mock-base { display: none; }
.ba { border-radius: 0; }
.fused::after { background: linear-gradient(to top, rgba(233,231,225,.95) 4%, transparent 36%), linear-gradient(to bottom, rgba(233,231,225,.9) 2%, transparent 32%); }
.btn { padding: 15px 28px; }
.cta-band { border: none; padding: 0; }
.site-footer { padding-top: clamp(64px, 10vh, 110px); }

/* ===== Identidade: Bodoni Moda (como o logo) ===== */
:root{--serif:"Bodoni Moda","Didot","Bodoni 72",Georgia,serif}
h1,h2,h3{font-weight:500;letter-spacing:0}
h1{font-weight:500}
.logo{display:flex;align-items:center;gap:12px;text-transform:none;letter-spacing:0}
.marca-icone{height:28px;width:auto}
.marca-texto{font-family:var(--serif);font-weight:500;font-size:20px;line-height:1;letter-spacing:.06em;display:flex;flex-direction:column;align-items:center}
.marca-texto small{font-family:var(--sans);font-weight:400;font-size:8px;letter-spacing:.42em;text-transform:uppercase;color:var(--mut);margin-bottom:3px}
.giant-name,.tl-item .ano,.step legend,.quote,.signature,.metric .mv,.project .p-name,.aud h3,.qcard blockquote,.sol-list .t{font-weight:500}
.marca-logo{height:40px;width:auto;mix-blend-mode:multiply}
.site-footer .marca-logo{filter:invert(1);mix-blend-mode:screen}
.site-header:not(.scrolled){mix-blend-mode:multiply}

/* ===== Paleta: off white + cinza chumbo ===== */
:root{--bg:#f4f3ef;--bg2:#faf9f6;--ink-solid:#2b2d30;--ivory:#2b2d30;--mut:#5c6065;--mut2:#8b8f94;--accent:#3a3d42;--accent2:#2b2d30;--line:rgba(43,45,48,.2);--line2:rgba(43,45,48,.09)}
.site-header.scrolled{background:rgba(244,243,239,.85)}
.hero-photo::after,.fused::after,.sol-media::after{background:linear-gradient(to top,rgba(244,243,239,.92) 4%,transparent 40%),linear-gradient(to bottom,rgba(244,243,239,.75) 2%,transparent 30%)}
.btn.gold:hover{background:var(--ink-solid);color:#fff}
.sec.dark .btn.gold,.sec.dark .btn{border-color:rgba(255,255,255,.5);color:#fff}
.sec.dark .btn:hover{background:#fff;color:var(--ink-solid)}
.sec.dark h2 em{color:#fff}
.metrics .metric .mv i{color:#fff}

/* ===== Fontes da marca ===== */
@font-face{font-family:"Against";src:url("../fonts/against.otf") format("opentype");font-weight:400;font-display:swap}
@font-face{font-family:"Ace Sans";src:url("../fonts/acesans.otf") format("opentype");font-weight:400;font-display:swap}
:root{--serif:"Against","Bodoni Moda",Georgia,serif;--mono:"Ace Sans","JetBrains Mono",Menlo,monospace}
h1,h2,h3,.giant-name,.tl-item .ano,.step legend,.quote,.signature,.metric .mv,.project .p-name,.aud h3,.qcard blockquote,.sol-list .t{font-weight:400}
.eyebrow,.btn,.nav,.stats .l,.f-col h4,.footer-bar{letter-spacing:.28em}
.marca-logo{height:40px;mix-blend-mode:normal}
.site-header:not(.scrolled){mix-blend-mode:normal}
.site-footer .marca-logo{filter:none;mix-blend-mode:normal}
h1,h2,h3{line-height:1.18}
.hero h1 .line{line-height:1.12}
.hero h1,.hero h1 .line,.hero h1 .line span,.h1-md{line-height:1.22}
.hero h1,.hero h1 .line,.hero h1 .line span,.h1-md,h2,h3{line-height:1.32}
