/* ==========================================================================
   VestCo — Uniformes corporativos · Folha de estilo principal
   Tokens derivados do logotipo (verde / dourado / marinho).
   ========================================================================== */

:root {
  /* Cor */
  --verde: #1d6541;
  --verde-escuro: #0f3d27;
  --tinta: #10271b;
  --dourado: #f0b323;
  --dourado-escuro: #b8820c;
  --marinho: #1e557c;
  --branco: #ffffff;
  --tecido: #eef3ef;
  --linha: #d3ddd6;
  --grafite: #56635c;
  --verde-claro: #dcebe1;

  /* Tipo */
  --f-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --f-body: "Archivo", Arial, Helvetica, sans-serif;
  --f-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Escala */
  --fs-hero: clamp(2.6rem, 6.2vw, 5.4rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.55rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-label: 0.72rem;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --sec: clamp(4.5rem, 9vw, 8rem);
  --radius: 6px;
  --stitch: 1.5px dashed rgba(16, 39, 27, 0.35);
  --shadow: 0 24px 60px -30px rgba(16, 39, 27, 0.45);
}

/* ---------- Reset mínimo ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--tinta);
  background: var(--branco);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--dourado); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--dourado); color: var(--tinta); padding: .6rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Tipografia ---------- */
.h-display {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 118;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-hero { font-size: var(--fs-hero); }
.h-2 { font-size: var(--fs-h2); }
.h-3 {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 110;
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--grafite); max-width: 58ch; }
.muted { color: var(--grafite); }
.mono { font-family: var(--f-mono); }
.em { color: var(--verde); }

/* Etiqueta: o rótulo costurado que marca cada seção */
.tag {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-mono);
  font-size: var(--fs-label);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tinta);
  padding: .42rem .8rem .42rem .7rem;
  border: var(--stitch);
  border-radius: 3px;
  background: var(--branco);
  position: relative;
}
.tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--dourado); box-shadow: 0 0 0 2px var(--branco), 0 0 0 3px var(--dourado);
}
.tag--inv { background: transparent; color: var(--branco); border-color: rgba(255,255,255,.45); }
.tag--inv::before { box-shadow: 0 0 0 2px var(--verde-escuro), 0 0 0 3px var(--dourado); }

/* ---------- Layout ---------- */
.wrap { width: min(var(--maxw), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--sec); }
.section--tight { padding-block: calc(var(--sec) * .55); }
.section--tecido { background: var(--tecido); }
.section--verde { background: var(--verde-escuro); color: var(--branco); }
.section--verde .lead, .section--verde .muted { color: rgba(255,255,255,.72); }
.sec-head { display: grid; gap: 1.1rem; max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; justify-items: center; max-width: 900px; }
.sec-head .lead { max-width: 62ch; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.5rem;
  font-family: var(--f-display);
  font-variation-settings: "wdth" 108;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--dourado); color: var(--tinta); box-shadow: 0 10px 24px -12px rgba(240,179,35,.9); }
.btn--primary:hover { background: #ffc43d; }
.btn--verde { background: var(--verde); color: var(--branco); }
.btn--verde:hover { background: #227a4e; }
.btn--ghost { background: transparent; color: var(--tinta); border-color: var(--linha); }
.btn--ghost:hover { border-color: var(--tinta); }
.btn--ghost-inv { background: transparent; color: var(--branco); border-color: rgba(255,255,255,.4); }
.btn--ghost-inv:hover { border-color: var(--branco); }
.btn--sm { padding: .7rem 1.05rem; font-size: .92rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--linha);
}
.header__in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.header__logo img { width: 132px; height: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav__links { display: flex; gap: 1.5rem; }
.nav__links a {
  text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--tinta);
  padding-block: .35rem; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--dourado); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; font-family: var(--f-mono); font-size: .9rem; color: var(--grafite); }
.nav__phone svg { width: 16px; height: 16px; }
.nav__toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--linha);
  background: var(--branco); border-radius: var(--radius); cursor: pointer; place-items: center;
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--tinta); margin: 3px auto; transition: transform .2s, opacity .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5.5rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__copy { display: grid; gap: 1.5rem; }
.hero__copy .h-hero { max-width: 14ch; }
.hero__copy .lead { max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; padding-top: .6rem; border-top: var(--stitch); margin-top: .5rem; }
.hero__proof li { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .04em; color: var(--grafite); display: flex; align-items: center; gap: .5rem; }
.hero__proof li::before { content: ""; width: 6px; height: 6px; background: var(--verde); transform: rotate(45deg); flex: none; }

.hero__visual { position: relative; }
.hero__frame {
  position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 3 / 4; background: var(--tecido);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,39,27,0) 55%, rgba(16,39,27,.55) 100%);
  pointer-events: none;
}
/* A etiqueta grande: ficha da peça sobre a foto */
.etiqueta {
  position: absolute; left: clamp(.8rem, 2vw, 1.4rem); bottom: clamp(.8rem, 2vw, 1.4rem); z-index: 2;
  width: min(300px, 78%);
  background: var(--branco);
  border-radius: 4px;
  padding: .85rem 1rem 1rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--tinta);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.6);
}
.etiqueta::before, .etiqueta::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px; border-left: var(--stitch);
}
.etiqueta::before { left: 6px; } .etiqueta::after { right: 6px; }
.etiqueta__head { display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; font-weight: 500; padding-bottom: .55rem; margin-bottom: .55rem; border-bottom: 1px solid var(--linha); }
.etiqueta__head img { width: 54px; }
.etiqueta dl { display: grid; grid-template-columns: auto 1fr; gap: .3rem .8rem; margin: 0; }
.etiqueta dt { text-transform: uppercase; color: var(--grafite); }
.etiqueta dd { margin: 0; font-weight: 500; }
.hero__badge {
  position: absolute; top: -14px; right: -10px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--dourado); color: var(--tinta);
  display: grid; place-items: center; text-align: center;
  font-family: var(--f-display); font-variation-settings: "wdth" 115; font-weight: 800; line-height: 1;
  box-shadow: 0 16px 30px -14px rgba(240,179,35,.9);
  transform: rotate(-8deg);
}
.hero__badge b { display: block; font-size: 2.1rem; }
.hero__badge small { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-top: .2rem; }

/* Marca de fundo: a folha do logotipo, discreta */
.hero__mark {
  position: absolute; right: -6%; top: -10%; width: 46vw; max-width: 720px; opacity: .06; pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* ---------- Logos de clientes ---------- */
.clientes { border-block: 1px solid var(--linha); background: var(--branco); }
.clientes__in { display: flex; align-items: center; gap: 2rem; padding-block: 1.6rem; }
.clientes__label { flex: none; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grafite); max-width: 12ch; line-height: 1.4; }
.clientes__list { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex: 1; overflow-x: auto; scrollbar-width: none; }
.clientes__list::-webkit-scrollbar { display: none; }
.clientes__list li { flex: none; }
.clientes__list img { height: 84px; width: auto; filter: grayscale(1) contrast(1.05); opacity: .8; transition: opacity .2s, filter .2s; flex: none; mix-blend-mode: multiply; }
.clientes__list img:hover { filter: none; opacity: 1; }
.clientes__more { flex: none; font-family: var(--f-mono); font-size: .8rem; color: var(--verde); font-weight: 500; white-space: nowrap; }

/* ---------- Argumentos (dor → solução) ---------- */
.argumentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.arg {
  background: var(--branco); border: 1px solid var(--linha); border-radius: 10px; padding: 1.6rem 1.5rem 1.7rem;
  display: grid; gap: 1rem; align-content: start; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.arg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.arg__dor {
  font-family: var(--f-mono); font-size: .78rem; letter-spacing: .04em; color: #9a3b2c;
  padding: .55rem .75rem; background: #fbeeea; border-radius: 4px; border-left: 3px solid #c9442f;
}
.arg__dor::before { content: "PROBLEMA · "; font-weight: 600; }
.arg__sol { color: var(--grafite); }
.arg__sol strong { color: var(--tinta); }
.arg__ico { width: 44px; height: 44px; border-radius: 8px; background: var(--verde-claro); color: var(--verde); display: grid; place-items: center; }
.arg__ico svg { width: 22px; height: 22px; }

/* ---------- Linhas de uniforme ---------- */
.linhas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.linha {
  position: relative; border-radius: 10px; overflow: hidden; background: var(--tinta); color: var(--branco);
  aspect-ratio: 4 / 5; display: grid; align-items: end; isolation: isolate;
  text-decoration: none;
}
.linha img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; z-index: -2; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.linha:hover img, .linha:focus-within img { transform: scale(1.05); }
.linha::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,39,27,0) 28%, rgba(16,39,27,.55) 52%, rgba(16,39,27,.9) 78%, rgba(16,39,27,.96) 100%);
}
.linha__body { padding: 1.4rem 1.35rem 1.35rem; display: grid; gap: .6rem; }
.linha__num { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dourado); }
.linha__title { font-family: var(--f-display); font-variation-settings: "wdth" 112; font-weight: 800; font-size: 1.5rem; line-height: 1.05; letter-spacing: -.01em; }
.linha__desc { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.45; }
.linha__para { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .2rem; }
.linha__para span { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; padding: .28rem .5rem; border: 1px solid rgba(255,255,255,.35); border-radius: 3px; }
.linha__cta { margin-top: .5rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .92rem; color: var(--dourado); }
.linha__cta svg { width: 16px; height: 16px; transition: transform .2s; }
.linha:hover .linha__cta svg { transform: translateX(4px); }
.linha__btn { position: absolute; inset: 0; background: none; border: 0; cursor: pointer; text-indent: -9999px; overflow: hidden; }

/* ---------- Processo ---------- */
.processo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: passo; }
.processo::before {
  content: ""; position: absolute; left: 0; right: 0; top: 30px; border-top: var(--stitch); z-index: 0;
}
.passo { position: relative; padding: 0 1.6rem 0 0; display: grid; gap: .9rem; align-content: start; }
.passo__n {
  width: 60px; height: 60px; border-radius: 50%; background: var(--branco); border: 2px solid var(--verde);
  display: grid; place-items: center; font-family: var(--f-display); font-variation-settings: "wdth" 115; font-weight: 800; font-size: 1.35rem; color: var(--verde);
  position: relative; z-index: 1;
}
.passo__meta { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grafite); }
.passo p { color: var(--grafite); font-size: .98rem; }

/* ---------- Configurador (assinatura) ---------- */
.config { position: relative; overflow: hidden; }
.config__mark { position: absolute; left: -8%; bottom: -20%; width: 52vw; max-width: 760px; opacity: .07; pointer-events: none; }
.config .wrap { position: relative; }
.config__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.config__steps { display: grid; gap: 2rem; }
.cstep { display: grid; gap: .9rem; border: 1.5px dashed rgba(255,255,255,.28); border-radius: 6px; padding: 1rem 1.2rem 1.3rem; margin: 0; min-width: 0; }
.cstep__label { display: flex; align-items: baseline; gap: .8rem; padding: 0 .5rem; margin-left: -.5rem; font-family: var(--f-display); font-variation-settings: "wdth" 110; font-weight: 700; font-size: 1.15rem; }
.cstep__label small { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; color: var(--dourado); text-transform: uppercase; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem .95rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3);
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.9); background: rgba(255,255,255,.04);
  transition: background .15s, border-color .15s, color .15s;
}
.chip input:hover + span { border-color: rgba(255,255,255,.7); }
.chip input:checked + span { background: var(--dourado); color: var(--tinta); border-color: var(--dourado); }
.chip input:focus-visible + span { outline: 3px solid var(--dourado); outline-offset: 2px; }
.range { display: grid; gap: .6rem; }
.range__row { display: flex; align-items: center; gap: 1rem; }
.range input[type="range"] { flex: 1; accent-color: var(--dourado); height: 6px; cursor: pointer; }
.range output { font-family: var(--f-display); font-variation-settings: "wdth" 115; font-weight: 800; font-size: 1.6rem; min-width: 5.5ch; text-align: right; color: var(--dourado); }
.range__scale { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.55); }

/* A ficha de pedido, no formato de etiqueta grande */
.ficha {
  background: var(--branco); color: var(--tinta); border-radius: 8px; padding: 1.5rem 1.6rem 1.6rem;
  position: sticky; top: 100px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.ficha::before, .ficha::after { content: ""; position: absolute; top: 10px; bottom: 10px; width: 0; border-left: var(--stitch); }
.ficha::before { left: 9px; } .ficha::after { right: 9px; }
.ficha__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid var(--linha); }
.ficha__head img { width: 92px; }
.ficha__head span { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grafite); }
.ficha dl { display: grid; grid-template-columns: auto 1fr; gap: .55rem 1.1rem; font-size: .95rem; }
.ficha dt { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grafite); padding-top: .25rem; }
.ficha dd { margin: 0; font-weight: 500; min-height: 1.5em; }
.ficha dd.vazio { color: var(--grafite); font-weight: 400; font-style: italic; }
.ficha__nota { margin-top: 1rem; padding: .8rem .9rem; background: var(--tecido); border-radius: 4px; font-size: .85rem; color: var(--grafite); line-height: 1.45; }
.ficha__cta { display: grid; gap: .6rem; margin-top: 1.2rem; }
.ficha__alt { text-align: center; font-size: .85rem; color: var(--grafite); }
.ficha__alt a { color: var(--verde); font-weight: 600; }

/* ---------- Depoimentos ---------- */
.depo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.depo {
  background: var(--branco); border: 1px solid var(--linha); border-radius: 10px; padding: 1.7rem 1.7rem 1.5rem;
  display: grid; gap: 1.1rem; position: relative;
}
.depo::before {
  content: "“"; position: absolute; top: .3rem; right: 1.2rem; font-family: var(--f-display); font-weight: 800;
  font-size: 5rem; line-height: 1; color: var(--dourado); opacity: .55;
}
.depo blockquote { margin: 0; padding-right: 2.6rem; font-size: 1.05rem; line-height: 1.55; }
.depo figcaption { display: flex; align-items: center; gap: .8rem; }
.depo__ini {
  width: 42px; height: 42px; border-radius: 50%; background: var(--verde); color: var(--branco);
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: .95rem; flex: none;
}
.depo__nome { font-weight: 700; font-size: .95rem; }
.depo__emp { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grafite); }
.depo__tempo { margin-left: auto; font-family: var(--f-mono); font-size: .7rem; color: var(--verde); padding: .3rem .55rem; border: 1px solid var(--verde-claro); border-radius: 3px; background: var(--verde-claro); }

/* ---------- Sobre ---------- */
.sobre__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sobre__foto { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 6; }
.sobre__foto img { width: 100%; height: 100%; object-fit: cover; }
.sobre__foto figcaption {
  position: absolute; left: 1rem; bottom: 1rem; background: var(--branco); padding: .5rem .75rem; border-radius: 3px;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.sobre__copy { display: grid; gap: 1.3rem; }
.sobre__copy p { color: var(--grafite); max-width: 60ch; }
.numeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: .6rem; padding-top: 1.5rem; border-top: var(--stitch); }
.num b { display: block; font-family: var(--f-display); font-variation-settings: "wdth" 118; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--verde); letter-spacing: -.02em; }
.num__l { display: block; margin-top: .35rem; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grafite); line-height: 1.4; }
.valores { display: flex; flex-wrap: wrap; gap: .45rem; }
.valores li { font-size: .85rem; padding: .4rem .7rem; border: 1px solid var(--linha); border-radius: 999px; color: var(--grafite); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: .6rem; }
.faq details { background: var(--branco); border: 1px solid var(--linha); border-radius: 8px; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; font-family: var(--f-display); font-variation-settings: "wdth" 108; font-weight: 700; font-size: 1.05rem; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--linha);
  display: grid; place-items: center; font-family: var(--f-mono); font-weight: 500; transition: transform .2s, background .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--dourado); border-color: var(--dourado); }
.faq .faq__a { padding: 0 1.3rem 1.3rem; color: var(--grafite); line-height: 1.6; }
.faq .faq__a p + p { margin-top: .6rem; }

/* ---------- Contato ---------- */
.contato__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contato__info { display: grid; gap: 1.4rem; }
.nap { display: grid; gap: .9rem; padding-top: 1.2rem; border-top: var(--stitch); }
.nap__item { display: flex; gap: .85rem; align-items: flex-start; }
.nap__item svg { width: 20px; height: 20px; flex: none; color: var(--verde); margin-top: .15rem; }
.nap__item a { text-decoration: none; }
.nap__item a:hover { text-decoration: underline; }
.nap__item small { display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grafite); margin-bottom: .1rem; }
.atende { font-size: .9rem; color: var(--grafite); line-height: 1.6; }
.atende strong { color: var(--tinta); }

.form { background: var(--branco); border: 1px solid var(--linha); border-radius: 10px; padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .88rem; font-weight: 600; }
.field label small { font-weight: 400; color: var(--grafite); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--linha); border-radius: var(--radius); background: var(--branco);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--verde); box-shadow: 0 0 0 3px var(--verde-claro); }
.field textarea { min-height: 110px; resize: vertical; }
.field--check { grid-template-columns: auto 1fr; gap: .6rem; align-items: start; font-size: .85rem; color: var(--grafite); }
.field--check input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--verde); }
.form__foot { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: .3rem; }
.form__foot small { color: var(--grafite); font-size: .8rem; }
.form__msg { display: none; padding: .9rem 1rem; border-radius: var(--radius); font-size: .95rem; }
.form__msg.is-ok { display: block; background: var(--verde-claro); color: var(--verde-escuro); }
.form__msg.is-erro { display: block; background: #fbeeea; color: #9a3b2c; }
.hp { position: absolute; left: -9999px; }

/* ---------- Faixa final de CTA ---------- */
.cta-final { background: var(--verde); color: var(--branco); }
.cta-final__in { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; padding-block: 2.6rem; }
.cta-final .h-2 { font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 22ch; }
.cta-final p { color: rgba(255,255,255,.78); margin-top: .4rem; }

/* ---------- Footer ---------- */
.footer { background: var(--tinta); color: rgba(255,255,255,.8); font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: 3.5rem 2.5rem; }
.footer__brand { display: grid; gap: 1rem; }
.footer__brand img { width: 140px; }
.footer__brand p { max-width: 36ch; color: rgba(255,255,255,.65); line-height: 1.55; }
.footer h4 { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dourado); margin-bottom: 1rem; }
.footer ul { display: grid; gap: .5rem; }
.footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer a:hover { color: var(--branco); text-decoration: underline; }
.footer address { font-style: normal; line-height: 1.6; color: rgba(255,255,255,.75); }
.footer__social { display: flex; gap: .6rem; margin-top: .8rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; }
.footer__social a:hover { border-color: var(--dourado); }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.5); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25d366; color: #073b1c; text-decoration: none; font-weight: 700; font-size: .92rem;
  padding: .75rem 1.1rem .75rem .8rem; border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.5);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 24px; height: 24px; }

/* ---------- Página interna (orçamento / privacidade) ---------- */
.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); display: grid; gap: 1rem; }
.page-head .h-2 { max-width: 20ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .06em; color: var(--grafite); }
.breadcrumb a { text-decoration: none; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.prose { max-width: 72ch; color: var(--grafite); }
.prose h2 { font-family: var(--f-display); font-variation-settings: "wdth" 110; font-weight: 700; font-size: 1.4rem; color: var(--tinta); margin: 2rem 0 .7rem; }
.prose p + p { margin-top: .9rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; margin-top: .6rem; }
.orc__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.orc__aside { display: grid; gap: 1.2rem; position: sticky; top: 100px; }
.orc__aside .ficha { position: static; box-shadow: none; border: 1px solid var(--linha); }
.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1rem; }
.fieldset legend { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--verde); margin-bottom: .6rem; padding-top: .6rem; }
.fieldset + .fieldset { border-top: var(--stitch); padding-top: .6rem; }
.radio-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.radio-row label { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .9rem; border: 1.5px solid var(--linha); border-radius: 999px; cursor: pointer; font-size: .92rem; }
.radio-row label:has(input:checked) { border-color: var(--verde); background: var(--verde-claro); }
.radio-row input { accent-color: var(--verde); }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.hero .reveal { transition-duration: .9s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .linha img, .arg, .wa-float { transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .argumentos, .linhas { grid-template-columns: repeat(2, 1fr); }
  .processo { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .processo::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__grid, .config__grid, .sobre__grid, .contato__grid, .orc__grid { grid-template-columns: minmax(0, 1fr); }
  .config__steps, .ficha, .cstep { min-width: 0; }
  .cstep__label { flex-wrap: wrap; }
  .hero__visual { max-width: 520px; }
  .hero__mark { width: 80vw; right: -30%; }
  .ficha, .orc__aside { position: static; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: grid; }
  .nav { gap: .8rem; }
  .nav.is-open .nav__links {
    display: grid; position: absolute; left: 0; right: 0; top: 100%; background: var(--branco);
    border-bottom: 1px solid var(--linha); padding: 1rem var(--gutter) 1.4rem; gap: .2rem;
  }
  .nav.is-open .nav__links a { padding: .7rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--tecido); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .clientes__in { flex-wrap: wrap; }
  .depo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .argumentos, .linhas, .processo, .form__row, .footer__grid { grid-template-columns: 1fr; }
  .numeros { grid-template-columns: 1fr 1fr; }
  .hero__badge { width: 92px; height: 92px; top: -10px; right: -4px; }
  .hero__badge b { font-size: 1.6rem; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: .8rem; }
  .cta-final__in .btn { width: auto; }
}
