/* ============================================================
   CRAVIZE — Site oficial
   Sistema visual aprovado (2026-06-09). SEM azul.
   Fontes hospedadas LOCALMENTE (ver /fonts).
   ============================================================ */

/* ---------- FONTES LOCAIS ---------- */
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
/* Hanken Grotesk — arquivo variável serve 400–700 */
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/hanken-latin.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/hanken-latin-ext.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20CF, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- TOKENS ---------- */
:root {
  --cravo:    #C8341E;  /* assinatura / CTA */
  --cravo-d:  #A82815;  /* hover do CTA */
  --grafite:  #1A1714;  /* tinta / fundo escuro */
  --grafite-2:#2A241F;  /* superfície escura elevada */
  --areia:    #F4ECE2;  /* fundo claro */
  --offwhite: #FBF8F3;  /* branco da marca */
  --pedra:    #8C8178;  /* neutro médio */
  --pedra-d:  #6B635B;
  --mostarda: #E0A43B;  /* acento secundário */

  --maxw: 1120px;
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 18px 50px -20px rgba(26,23,20,.35);
  --display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --text: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--text);
  color: var(--grafite);
  background: var(--areia);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
}
p { margin: 0; }

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.eyebrow {
  font-family: var(--text);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cravo);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cravo);
  flex: none;
}
.lead { color: var(--pedra-d); font-size: 1.12rem; max-width: 58ch; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cravo); color: var(--offwhite); box-shadow: 0 10px 26px -10px rgba(200,52,30,.7); }
.btn-primary:hover { background: var(--cravo-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--grafite); border-color: rgba(26,23,20,.22); }
.btn-ghost:hover { border-color: var(--grafite); }
.btn-light { background: var(--offwhite); color: var(--grafite); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,236,226,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(26,23,20,.07);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand .wm { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.03em; color: var(--grafite); }
.nav { display: none; gap: 30px; font-weight: 500; font-size: .98rem; }
.nav a { color: var(--pedra-d); transition: color .15s; }
.nav a:hover { color: var(--grafite); }
.header-cta { display: none; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 70px 0 78px; overflow: hidden; }
.hero::after {
  /* alvo gigante de fundo — DNA da marca, bem sutil */
  content: ""; position: absolute; right: -180px; top: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  border: 60px solid rgba(200,52,30,.06);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 600; }
.hero h1 .crava { color: var(--cravo); }
.hero-sub { margin-top: 22px; font-size: 1.18rem; color: var(--pedra-d); max-width: 52ch; }
.hero-sub strong { color: var(--grafite); font-weight: 600; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--pedra-d); font-size: .96rem; }
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--areia); display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; color: var(--offwhite); font-size: .85rem;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--mostarda); letter-spacing: 2px; }

/* hero visual card */
.hero-card {
  background: var(--grafite); color: var(--offwhite);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card .tag { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mostarda); font-weight: 700; }
.hero-card h3 { color: var(--offwhite); font-size: 1.45rem; margin-top: 6px; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.metric { background: var(--grafite-2); border-radius: var(--r); padding: 16px; }
.metric .n { font-family: var(--display); font-weight: 600; font-size: 1.9rem; color: var(--offwhite); }
.metric .n .pct { color: var(--mostarda); }
.metric .l { font-size: .82rem; color: var(--pedra); margin-top: 2px; }
.hero-card .editar { margin-top: 18px; font-size: .76rem; color: var(--pedra); }

/* ---------- LOGOS / FAIXA ---------- */
.strip { background: var(--grafite); color: var(--offwhite); padding: 22px 0; }
.strip .wrap { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; text-align: center; }
.strip p, .strip a { font-weight: 500; font-size: .95rem; color: var(--areia); }
.strip a { transition: color .15s; }
.strip a:hover { color: var(--cravo); }
.strip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cravo); }

/* ---------- PROBLEMA / A VIRADA ---------- */
.virada { background: var(--grafite); color: var(--offwhite); }
.virada h2 { color: var(--offwhite); font-size: clamp(2rem, 4.6vw, 3rem); max-width: 18ch; }
.virada .lead { color: var(--areia); opacity: .85; margin-top: 18px; }
.contrast { display: grid; gap: 18px; margin-top: 46px; }
.col-card { border-radius: var(--r-lg); padding: 28px; }
.col-bad { background: var(--grafite-2); border: 1px solid rgba(255,255,255,.08); }
.col-good { background: var(--cravo); }
.col-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.col-bad h3 { color: var(--pedra); }
.col-good h3 { color: var(--offwhite); }
.col-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.col-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 1.02rem; }
.col-card li .ic { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.col-bad li { color: var(--areia); opacity: .78; }
.col-good li { color: var(--offwhite); }

/* ---------- SERVIÇOS ---------- */
.services-head { display: grid; gap: 16px; margin-bottom: 46px; }
.services-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); max-width: 16ch; }
.grid-services { display: grid; gap: 18px; }
.svc {
  background: var(--offwhite); border: 1px solid rgba(26,23,20,.08);
  border-radius: var(--r-lg); padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,52,30,.3); }
.svc .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(200,52,30,.1); color: var(--cravo); margin-bottom: 18px;
}
.svc .ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.22rem; margin-bottom: 8px; }
.svc p { color: var(--pedra-d); font-size: .99rem; }
/* card vira link inteiro: garante cor de texto e o "Ver serviço" no rodapé */
.svc { display: flex; flex-direction: column; color: var(--grafite); }
.svc-more {
  margin-top: auto; padding-top: 14px;
  font-weight: 600; font-size: .95rem; color: var(--cravo);
  transition: transform .18s ease;
}
.svc:hover .svc-more { transform: translateX(4px); }

/* ---------- JEITO CRAVIZE ---------- */
.jeito { background: var(--offwhite); }
.jeito-grid { display: grid; gap: 44px; align-items: start; }
.jeito h2 { font-size: clamp(2rem, 4.6vw, 3rem); max-width: 14ch; }
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { display: flex; gap: 18px; background: var(--areia); border-radius: var(--r-lg); padding: 22px 24px; }
.step .num {
  counter-increment: step; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cravo); color: var(--offwhite);
  display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.1rem;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 5px; }
.step p { color: var(--pedra-d); font-size: .97rem; }
.ia-note {
  margin-top: 22px; display: flex; gap: 12px; align-items: flex-start;
  background: var(--grafite); color: var(--areia); border-radius: var(--r-lg); padding: 20px 22px;
}
.ia-note .ic { flex: none; color: var(--mostarda); width: 24px; height: 24px; margin-top: 2px; }
.ia-note strong { color: var(--offwhite); }

/* ---------- PROVA SOCIAL ---------- */
.numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 52px; }
.num-card { background: var(--grafite); color: var(--offwhite); border-radius: var(--r-lg); padding: 26px; }
.num-card .n { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 6vw, 3rem); }
.num-card .n .pct { color: var(--cravo); }
.num-card .l { color: var(--pedra); font-size: .92rem; margin-top: 4px; }
.editar-badge {
  display: inline-block; margin-top: 10px; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  color: var(--mostarda); background: rgba(224,164,59,.14); padding: 3px 9px; border-radius: 6px;
}
.tgrid { display: grid; gap: 18px; }
.tcard { background: var(--offwhite); border: 1px solid rgba(26,23,20,.08); border-radius: var(--r-lg); padding: 26px; }
.tcard .stars { color: var(--mostarda); letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { margin: 0; font-size: 1.06rem; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--cravo); color: var(--offwhite); display: grid; place-items: center; font-family: var(--display); font-weight: 600; flex: none; }
.tcard .who .nm { font-weight: 600; font-size: .96rem; }
.tcard .who .rl { color: var(--pedra-d); font-size: .86rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--areia); }
.faq-grid { display: grid; gap: 40px; }
.faq h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.acc { display: grid; gap: 12px; }
details.qa {
  background: var(--offwhite); border: 1px solid rgba(26,23,20,.09);
  border-radius: var(--r); padding: 4px 22px; transition: border-color .15s;
}
details.qa[open] { border-color: rgba(200,52,30,.35); }
details.qa summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .plus { flex: none; width: 22px; height: 22px; position: relative; transition: transform .2s; }
details.qa summary .plus::before, details.qa summary .plus::after {
  content: ""; position: absolute; background: var(--cravo); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
details.qa summary .plus::before { width: 16px; height: 2.5px; }
details.qa summary .plus::after { width: 2.5px; height: 16px; }
details.qa[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
details.qa .a { padding: 0 0 20px; color: var(--pedra-d); }

/* ---------- CTA FINAL + FORM ---------- */
.cta { background: var(--grafite); color: var(--offwhite); }
.cta-grid { display: grid; gap: 44px; align-items: center; }
.cta h2 { color: var(--offwhite); font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 14ch; }
.cta h2 .crava { color: var(--cravo); }
.cta .lead { color: var(--areia); opacity: .85; margin-top: 18px; }
.cta-bullets { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.cta-bullets li { display: flex; gap: 11px; align-items: center; color: var(--areia); }
.cta-bullets .ic { color: var(--cravo); flex: none; width: 20px; height: 20px; }

.form-card { background: var(--offwhite); color: var(--grafite); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .sub { color: var(--pedra-d); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-size: 1rem; font-family: var(--text);
  border: 1.5px solid rgba(26,23,20,.16); border-radius: 11px; background: #fff; color: var(--grafite);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--cravo); box-shadow: 0 0 0 3px rgba(200,52,30,.14);
}
.form-foot { font-size: .8rem; color: var(--pedra); margin-top: 14px; text-align: center; }
.wa-alt { margin-top: 16px; text-align: center; font-size: .92rem; color: var(--pedra-d); }
.wa-alt a { color: var(--cravo); font-weight: 600; }

/* ---------- FOOTER ---------- */
.footer { background: var(--grafite); color: var(--areia); padding: 56px 0 30px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; gap: 34px; }
.footer .brand .wm { color: var(--offwhite); }
.footer-tag { color: var(--pedra); margin-top: 14px; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--offwhite); margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: var(--pedra); font-size: .94rem; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--offwhite); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--areia); }
.socials a:hover { background: var(--cravo); border-color: var(--cravo); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--pedra); font-size: .85rem; }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; font-weight: 600;
  padding: 13px 18px; border-radius: 999px; box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
  transition: transform .15s;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .lbl { display: none; }

/* ---------- CASES (prova social) ---------- */
.case-tag {
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--mostarda); text-transform: uppercase; margin-bottom: 12px;
  display: block; line-height: 1.3;
}
.numbers-cases .num-card { display: flex; flex-direction: column; }
.numbers-cases .num-card .l { margin-top: 8px; line-height: 1.45; }

/* depoimento em destaque (ex-líder) */
.tcard-feature { background: var(--grafite); border-color: rgba(255,255,255,.08); }
.tcard-feature blockquote { color: var(--offwhite); }
.tcard-feature .who .nm { color: var(--offwhite); }
.tcard-feature .who .rl { color: var(--pedra); }
.tcard-feature .who .av { background: var(--mostarda); color: var(--grafite); }

/* ---------- MOVIMENTO: scroll-reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
/* leve cascata quando vários reveals dividem a mesma linha */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }

/* ---------- MOVIMENTO: glow de fundo seguindo o mouse ---------- */
/* Mancha de luz desfocada nas cores da marca. Fica ATRÁS do conteúdo,
   não captura clique e é discreta. Ajusta a intensidade conforme o fundo. */
.mouse-glow {
  position: fixed; top: 0; left: 0; z-index: 0;
  width: 600px; height: 600px; pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(200,52,30,.34), rgba(200,52,30,0) 70%),
    radial-gradient(closest-side, rgba(224,164,59,.24), rgba(224,164,59,0) 75%);
  filter: blur(58px);
  opacity: .7;          /* mais perceptível, mas ainda elegante (era .55) */
  will-change: transform, opacity;
  transition: opacity .4s ease;
}
/* aparece só depois que o JS o ativa de fato (evita "flash" no carregamento) */
.mouse-glow.is-on { opacity: .7; }
/* O conteúdo precisa ficar acima do glow. Seções de fundo claro ganham
   fundo transparente pra deixar o glow vazar discretamente por trás;
   as de fundo escuro mantêm a cor e o glow aparece sutil sobre elas. */
.header, .footer, .wa-float { position: relative; z-index: 2; }
main { position: relative; z-index: 1; }
/* seções claras: deixa o areia do body aparecer pra o glow passar */
.section, .faq { background: transparent; }
.jeito { background: rgba(251,248,243,.86); }
/* seções escuras mantêm cor própria mas semi-translúcida pro glow respirar */
.hero { background: transparent; }
.virada { background: rgba(26,23,20,.94); }
.strip { background: rgba(26,23,20,.96); }
.cta { background: rgba(26,23,20,.94); }
/* conteúdo interno das seções claras sempre acima do glow */
.section .wrap, .faq .wrap, .strip .wrap { position: relative; z-index: 1; }

/* ---------- MOVIMENTO: cursor customizado (cravo) ---------- */
.cravo-cursor {
  position: fixed; top: 0; left: 0; z-index: 999;
  width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border-radius: 50%; background: var(--cravo); pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;           /* nasce invisível; vira visível no 1º mousemove real */
  transition: width .18s ease, height .18s ease, margin .18s ease, background .18s ease, opacity .18s ease;
}
.cravo-cursor.is-on { opacity: 1; }
.cravo-cursor.is-hover { width: 38px; height: 38px; margin: -19px 0 0 -19px; background: rgba(200,52,30,.28); }
/* esconde o cursor nativo só quando o customizado está ativo */
.has-cravo-cursor, .has-cravo-cursor a, .has-cravo-cursor button, .has-cravo-cursor summary { cursor: none; }

/* ============================================================
   PÁGINAS INTERNAS (serviços + privacidade)
   ============================================================ */
/* breadcrumb */
.crumb { padding: 22px 0 0; font-size: .9rem; color: var(--pedra-d); }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; align-items: center; }
.crumb li { display: flex; align-items: center; gap: 8px; }
.crumb li:not(:last-child)::after { content: "›"; color: var(--pedra); }
.crumb a { color: var(--pedra-d); }
.crumb a:hover { color: var(--cravo); }
.crumb [aria-current="page"] { color: var(--grafite); font-weight: 600; }

/* hero da página interna */
.page-hero { padding: 26px 0 14px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); max-width: 20ch; }
.page-hero .lead { margin-top: 20px; }

/* TL;DR citável (AEO) */
.tldr {
  margin: 26px 0 0; padding: 18px 22px;
  background: var(--offwhite); border: 1px solid rgba(26,23,20,.1);
  border-left: 4px solid var(--cravo); border-radius: var(--r);
  font-size: 1.04rem; color: var(--grafite);
}
.tldr strong { font-weight: 700; }

/* corpo de conteúdo (prose) das páginas internas */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.05rem); margin: 48px 0 14px; }
.prose h3 { font-size: 1.22rem; margin: 26px 0 8px; }
.prose p { color: var(--pedra-d); margin-bottom: 14px; }
.prose ul { color: var(--pedra-d); padding-left: 0; list-style: none; display: grid; gap: 11px; margin: 14px 0; }
.prose ul li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul li::before {
  content: ""; flex: none; width: 9px; height: 9px; margin-top: 8px;
  border-radius: 50%; background: var(--cravo);
}
.prose strong { color: var(--grafite); }
.prose a { color: var(--cravo); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* tabela "para quem é" */
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid rgba(26,23,20,.1); }
.prose th { font-family: var(--display); font-weight: 600; color: var(--grafite); }
.prose td { color: var(--pedra-d); }

/* serviços relacionados (cross-link) */
.related { margin-top: 56px; }
.related h2 { font-size: 1.5rem; margin-bottom: 18px; }
.related-grid { display: grid; gap: 16px; }
.related-card {
  display: block; background: var(--offwhite); border: 1px solid rgba(26,23,20,.1);
  border-radius: var(--r-lg); padding: 22px; color: var(--grafite);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,52,30,.3); }
.related-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.related-card p { color: var(--pedra-d); font-size: .95rem; }
.related-card .svc-more { display: inline-block; margin-top: 12px; color: var(--cravo); font-weight: 600; font-size: .92rem; }

/* CTA simples no fim das páginas internas (sem form, leva pra home) */
.cta-band { background: var(--grafite); color: var(--offwhite); }
.cta-band h2 { color: var(--offwhite); }
.cta-band .crava { color: var(--cravo); }
.cta-band .lead { color: var(--areia); opacity: .85; margin-top: 14px; }
.cta-band .hero-actions { margin-top: 26px; }
.cta-band .btn-ghost { color: var(--offwhite); border-color: rgba(255,255,255,.3); }
.cta-band .btn-ghost:hover { border-color: var(--offwhite); }

/* ---------- RESPONSIVO ---------- */
@media (min-width: 720px) {
  .numbers { grid-template-columns: repeat(4, 1fr); }
  .numbers-cases { grid-template-columns: repeat(3, 1fr); }
  .contrast { grid-template-columns: 1fr 1fr; }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  /* depoimento em destaque ocupa a linha inteira no layout de 2 colunas */
  .tcard-feature { grid-column: 1 / -1; }
  .wa-float .lbl { display: inline; }
  .strip .wrap { flex-wrap: nowrap; }
}
@media (min-width: 920px) {
  .section { padding: 100px 0; }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .grid-services { grid-template-columns: repeat(3, 1fr); }
  .jeito-grid { grid-template-columns: .9fr 1.1fr; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; }
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .tgrid { grid-template-columns: repeat(3, 1fr); }
  .tcard-feature { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  /* garante visibilidade total mesmo se o JS não rodar */
  .reveal { opacity: 1 !important; transform: none !important; }
  .cravo-cursor { display: none !important; }
  .mouse-glow { display: none !important; }
}
