/* ==========================================================
   Agência ART — Editorial system
   ========================================================== */

:root {
  --ink: #1A1312;
  --ink-80: rgba(26, 19, 18, 0.80);
  --ink-60: rgba(26, 19, 18, 0.60);
  --ink-40: rgba(26, 19, 18, 0.40);
  --ink-20: rgba(26, 19, 18, 0.20);
  --ink-10: rgba(26, 19, 18, 0.10);
  --ink-06: rgba(26, 19, 18, 0.06);

  --cream: #F9F3EC;
  --sand:  #EDE8D0;
  --orange: #F46712;
  --orange-soft: #FBE6D6;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --f-display: "Bricolage Grotesque", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --f-sans:    "Bricolage Grotesque", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --f-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--cream); }

/* -------- Type scale -------- */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wdth" 100;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
  padding-bottom: 0.06em;
}
.display-xxl { font-size: clamp(48px, 9vw, 168px); }
.display-xl  { font-size: clamp(48px, 8.4vw, 132px); }
.display-l   { font-size: clamp(40px, 6.4vw, 104px); }
.display-m   { font-size: clamp(32px, 4.4vw, 72px); }
.display-s   { font-size: clamp(28px, 3.4vw, 52px); }

/* Emphasis token — replaces the old serif italic with weight + width contrast.
   Bricolage has no italic axis, so we use a lighter weight + narrower width
   plus a touch of synthesized obliqueness to differentiate. */
.italic {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "wdth" 75, "wght" 300;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 60ch;
  color: var(--ink-80);
}

.mono {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}

a { color: inherit; text-decoration: none; }

/* -------- Layout -------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(80px, 12vw, 180px) 0; }
.section-tight { padding: clamp(60px, 8vw, 120px) 0; }

.divider {
  height: 1px;
  background: var(--ink-10);
  width: 100%;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--f-sans);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-decoration: none;
  background: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--orange); color: var(--cream); }
.btn-ghost {
  border-color: var(--ink-20);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-orange {
  background: var(--orange);
  color: var(--cream);
}
.btn-orange:hover { background: var(--ink); }

.btn .arrow {
  width: 16px; height: 16px;
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* Safety net: any inline <Arrow /> SVG without explicit sizing */
svg.arrow { width: 16px; height: 16px; flex-shrink: 0; display: inline-block; }

/* -------- Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--cream) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 26px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px;
  color: var(--ink-80);
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover { color: var(--orange); }
@media (max-width: 840px) {
  .nav-links { display: none; }
}

/* -------- Hero -------- */
.hero {
  padding: clamp(20px, 3vw, 44px) 0 clamp(48px, 7vw, 92px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  flex-wrap: wrap;
}
.hero-headline {
  margin: 0;
  font-size: clamp(38px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.hero-headline .line { display: block; }
.hero-headline .orange { color: var(--orange); }

.hero-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-top: clamp(28px, 3.5vw, 48px);
}
@media (max-width: 760px) {
  .hero-footer { grid-template-columns: 1fr; }
}

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.hero-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  border-top: 1px solid var(--ink-20);
  padding-top: 24px;
}
.hero-meta .num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero-meta .lbl {
  font-size: 12px; color: var(--ink-60);
  margin-top: 8px;
  max-width: 22ch;
  line-height: 1.4;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  padding: 24px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: flex; gap: clamp(40px, 6vw, 80px);
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee-track .item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink-60);
  display: flex; align-items: center; gap: clamp(40px, 6vw, 80px);
}
.marquee-track .item::after {
  content: "✶"; color: var(--orange); font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* -------- Section header -------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; }
}
.sec-head .num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-60);
  letter-spacing: 0.06em;
}
.sec-head h2 {
  margin: 16px 0 0 0;
}
.sec-head .desc { font-size: 16px; color: var(--ink-80); max-width: 58ch; }

/* -------- Manifesto -------- */
.manifesto {
  background: var(--sand);
}
.manifesto-quote {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.manifesto-quote em { color: var(--orange); font-style: italic; }
.manifesto-meta {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--ink-20);
  padding-top: 20px;
  flex-wrap: wrap;
}
.manifesto-meta .label { font-size: 12px; color: var(--ink-60); letter-spacing: 0.06em; text-transform: uppercase; }
.manifesto-meta .value { font-size: 14px; }

/* -------- Stats strip -------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
}
.stats .cell {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--ink-10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stats .cell:last-child { border-right: 0; }
.stats .num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.stats .num .unit { font-size: 0.4em; vertical-align: super; color: var(--orange); margin-left: 4px; }
.stats .lbl { font-size: 13px; color: var(--ink-60); max-width: 28ch; line-height: 1.4; }
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .cell:nth-child(2) { border-right: 0; }
  .stats .cell:nth-child(1), .stats .cell:nth-child(2) { border-bottom: 1px solid var(--ink-10); }
}

/* -------- Services -------- */
.services { background: var(--cream); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr 200px;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--ink-20);
  align-items: start;
  transition: padding .3s ease;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--ink-20); }
.service-row:hover { padding-left: 12px; }
.service-row:hover .service-title { color: var(--orange); }
.service-row .service-num { font-family: var(--f-mono); font-size: 12px; color: var(--ink-60); padding-top: 6px; }
.service-row .service-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color .3s ease;
}
.service-row .service-title small {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  vertical-align: super;
  margin-left: 4px;
  text-transform: uppercase;
}
.service-row .service-desc { font-size: 15px; color: var(--ink-80); max-width: 50ch; line-height: 1.5; }
.service-row .service-desc ul { padding: 0; margin: 14px 0 0 0; list-style: none; }
.service-row .service-desc li {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-60);
  padding: 4px 0; border-top: 1px dashed var(--ink-10);
  display: flex; justify-content: space-between; gap: 12px;
}
.service-row .service-desc li:first-child { border-top: 0; padding-top: 0; }
.service-row .service-meta { text-align: right; }
.service-row .service-meta .price-eyebrow { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--ink-60); text-transform: uppercase; }
.service-row .service-meta .price { font-family: var(--f-display); font-size: clamp(28px, 3vw, 40px); margin-top: 4px; line-height: 1; }
.service-row .service-meta .price small { font-family: var(--f-sans); font-size: 13px; color: var(--ink-60); display: block; margin-top: 6px; letter-spacing: 0; }

@media (max-width: 820px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row .service-meta { text-align: left; }
}

/* -------- Methodology -------- */
.method { background: var(--ink); color: var(--cream); }
.method .eyebrow { color: rgba(249, 243, 236, 0.6); }
.method .eyebrow::before { background: var(--orange); }
.method h2 { color: var(--cream); }
.method .desc { color: rgba(249, 243, 236, 0.7); }
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 920px) {
  .method-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .method-steps { grid-template-columns: 1fr; }
}
.method-step {
  border-left: 1px solid rgba(249, 243, 236, 0.15);
  padding: 28px clamp(16px, 2vw, 28px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.method-step:first-child { border-left: 0; }
.method-step .num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 0.1em;
}
.method-step h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1;
  margin: 60px 0 24px;
  letter-spacing: -0.015em;
}
.method-step h3 em { color: var(--orange); }
.method-step p {
  font-size: 14px;
  color: rgba(249, 243, 236, 0.65);
  margin: 0;
  line-height: 1.5;
  max-width: 32ch;
}

/* -------- Cases -------- */
.cases { background: var(--cream); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.case {
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.case:hover { transform: translateY(-4px); }

.case .img {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.case .img .stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    rgba(244,103,18,0.18) 0 1px,
    transparent 1px 18px);
}
.case .img .label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(249, 243, 236, 0.7); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case .body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.case .head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--ink-10);
}
.case .client { font-size: 14px; font-weight: 500; }
.case .place { font-family: var(--f-mono); font-size: 11px; color: var(--ink-60); }
.case .metric { display: flex; flex-direction: column; gap: 4px; }
.case .metric .v {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.case .metric .v .small { color: var(--orange); font-size: 0.4em; vertical-align: super; }
.case .metric .l { font-size: 13px; color: var(--ink-80); max-width: 26ch; }
.case .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; padding-top: 16px; border-top: 1px dashed var(--ink-10); }
.case .row .v { font-family: var(--f-display); font-size: 22px; }
.case .row .l { font-family: var(--f-mono); font-size: 10px; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.case-large { grid-column: span 7; }
.case-small { grid-column: span 5; }
.case-third { grid-column: span 4; }

@media (max-width: 820px) {
  .case-large, .case-small, .case-third { grid-column: span 12; }
}

/* -------- Quiz -------- */
.quiz {
  background: var(--ink);
  color: var(--cream);
}
.quiz .eyebrow { color: rgba(249,243,236,0.6); }
.quiz h2 { color: var(--cream); }
.quiz-shell {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
@media (max-width: 920px) {
  .quiz-shell { grid-template-columns: 1fr; }
}
.quiz-left h3 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 28px;
}
.quiz-left h3 em { color: var(--orange); font-style: italic; }
.quiz-left p { color: rgba(249,243,236,0.7); max-width: 36ch; font-size: 15px; }

.quiz-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.quiz-progress {
  display: flex; gap: 6px;
  margin-bottom: 22px;
}
.quiz-progress .seg {
  flex: 1; height: 4px; background: var(--ink-10); border-radius: 2px;
  transition: background .4s ease;
}
.quiz-progress .seg.active { background: var(--ink); }
.quiz-progress .seg.done { background: var(--orange); }

.quiz-question {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.quiz-question em { color: var(--orange); font-style: italic; }

.quiz-options { display: grid; gap: 8px; }
.quiz-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid var(--ink-20);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  background: var(--cream);
  transition: all .2s ease;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.quiz-option:hover { border-color: var(--ink); transform: translateX(4px); }
.quiz-option.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.quiz-option .arrow { opacity: 0; width: 16px; height: 16px; flex-shrink: 0; transition: opacity .2s ease; }
.quiz-option:hover .arrow, .quiz-option.selected .arrow { opacity: 1; }

.quiz-foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.quiz-step-label { font-family: var(--f-mono); font-size: 11px; color: var(--ink-60); letter-spacing: 0.08em; }

.quiz-result {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.quiz-result .verdict {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.quiz-result .verdict em { color: var(--orange); font-style: italic; }
.quiz-result p { color: var(--ink-80); font-size: 15px; max-width: 42ch; }
.quiz-result .verdict-meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-60); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }

/* -------- Testimonials -------- */
.testimonials { background: var(--sand); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  display: flex; flex-direction: column; gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--cream);
  border-radius: 4px;
}
.testi blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.testi blockquote em { color: var(--orange); font-style: italic; }
.testi .who { display: flex; gap: 14px; align-items: center; padding-top: 18px; border-top: 1px solid var(--ink-10); margin-top: auto; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 18px;
  color: var(--ink); flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.testi .avatar::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--orange) 0 1px, transparent 1px 6px);
  opacity: 0.2;
}
.testi .who .name { font-size: 14px; font-weight: 500; }
.testi .who .role { font-size: 12px; color: var(--ink-60); }

/* -------- Team -------- */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 920px;
}
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.member {
  display: flex; flex-direction: column; gap: 16px;
}
.member .photo {
  aspect-ratio: 4/5;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.member .photo .stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    rgba(244,103,18,0.25) 0 1px,
    transparent 1px 14px);
}
.member .photo .hint {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-60); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.member .name { font-family: var(--f-display); font-size: clamp(24px, 2.4vw, 32px); line-height: 1; letter-spacing: -0.01em; }
.member .role { font-size: 13px; color: var(--ink-60); margin-top: 4px; }
.member .bio { font-size: 14px; color: var(--ink-80); line-height: 1.5; margin-top: 8px; }

/* -------- FAQ -------- */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink-20);
}
.faq-item {
  border-bottom: 1px solid var(--ink-20);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: clamp(24px, 3vw, 36px) 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-q .plus {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%;
  transition: transform .3s ease;
}
.faq-q .plus::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 clamp(24px, 3vw, 36px) 0;
  font-size: 15px;
  color: var(--ink-80);
  max-width: 60ch;
  line-height: 1.55;
}

/* -------- Contact form -------- */
.contact { background: var(--ink); color: var(--cream); }
.contact .eyebrow { color: rgba(249,243,236,0.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact h2 { color: var(--cream); }
.contact-lhs p { color: rgba(249,243,236,0.7); font-size: 16px; line-height: 1.55; max-width: 38ch; }
.contact-meta {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-meta .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; border-top: 1px solid rgba(249,243,236,0.15);
  padding-top: 14px;
}
.contact-meta .lbl { font-family: var(--f-mono); font-size: 11px; color: rgba(249,243,236,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-meta .val { font-size: 14px; }

.form {
  background: var(--cream);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-60); text-transform: uppercase;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-20);
  padding: 10px 0;
  font-family: var(--f-sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.budget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 6px; }
.budget-opt {
  padding: 14px 16px;
  border: 1px solid var(--ink-20);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--f-sans);
  cursor: pointer;
  background: transparent;
  color: inherit;
  text-align: left;
  transition: all .2s ease;
}
.budget-opt:hover { border-color: var(--ink); }
.budget-opt.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.budget-opt.disabled { color: var(--ink-40); cursor: not-allowed; }
.budget-opt.disabled:hover { border-color: var(--ink-20); }

.form-warn {
  background: var(--orange-soft);
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  display: none;
}
.form-warn.show { display: block; }

.form-success {
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
  text-align: left;
  border-radius: 4px;
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.form-success em { color: var(--orange); font-style: italic; }
.form-success p { font-family: var(--f-sans); font-size: 14px; color: rgba(249,243,236,0.7); margin: 16px 0 0; line-height: 1.5; }

/* -------- Footer -------- */
.footer {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--ink-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { font-family: var(--f-mono); font-size: 11px; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; font-weight: 400; }
.footer ul { padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink-80); transition: color .2s; }
.footer ul a:hover { color: var(--orange); }

.footer-bigmark {
  margin: clamp(16px, 2.5vw, 36px) 0 calc(clamp(-52px, -3.4vw, -22px) + 10px);
  text-align: center;
  line-height: 0;
  position: relative;
  z-index: 0;
}
.footer-bigmark .bigmark-fill {
  display: block;
  width: min(1100px, 94%);
  margin: 0 auto;
  aspect-ratio: 384 / 83;
  background-color: rgba(237, 232, 208, 0.65); /* bege da marca (--sand) mais sutil */
  -webkit-mask: url("assets/logotipo.svg") center / contain no-repeat;
  mask: url("assets/logotipo.svg") center / contain no-repeat;
}
.footer-bottom { position: relative; z-index: 1; }
.footer-bigmark text { fill: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--ink-10);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-60); letter-spacing: 0.05em;
  flex-wrap: wrap;
}

/* -------- Reveal -------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
