:root {
  --ink: #15201c;
  --ink-soft: #43534c;
  --forest: #0b1814;
  --forest-2: #12261f;
  --forest-3: #1b382d;
  --paper: #f3f0e9;
  --paper-2: #ebe7dc;
  --ivory: #fbfaf6;
  --sage: #d5d6af;
  --sage-strong: #c7ca91;
  --sage-dark: #758568;
  --line: rgba(21, 32, 28, .16);
  --line-light: rgba(255, 255, 255, .18);
  --white: #ffffff;
  --font-display: "Lora", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-height: 84px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --shadow: 0 28px 80px rgba(10, 24, 18, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 22px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--sage); color: var(--forest); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 92px 0; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--ivory);
  color: var(--forest);
  border-radius: 3px;
  box-shadow: var(--shadow);
}
:focus-visible { outline: 3px solid var(--sage-strong); outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  z-index: 1002;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--sage-strong);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(11, 24, 20, .94);
  border-color: rgba(255, 255, 255, .10);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
}
.brand-name { font-size: 14px; font-weight: 600; letter-spacing: .025em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .25s var(--ease);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--sage);
  transition: right .3s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--sage); color: var(--forest); }
.button-accent:hover { background: var(--sage-strong); }
.button-ghost { border-color: rgba(255,255,255,.42); color: var(--white); background: rgba(255,255,255,.02); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-small { min-height: 43px; padding: 10px 16px; font-size: 11px; }
.header-cta { margin-left: 3px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}
.mobile-drawer {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgba(0,0,0,.54);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.drawer-panel {
  width: min(430px, 100%);
  min-height: 100%;
  padding: 25px;
  background: var(--forest);
  color: var(--white);
  transform: translateX(100%);
  transition: transform .36s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.26);
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.drawer-panel nav { display: grid; margin: 72px 0 38px; }
.drawer-panel nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-display);
  font-size: clamp(27px, 7vw, 38px);
  line-height: 1.2;
}
.drawer-action { margin-top: auto; }
.drawer-note { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }

.hero {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}
.hero-image {
  position: absolute;
  inset: 0;
  background: image-set(url("../img/concept-clarity-city.webp") type("image/webp"), url("../img/concept-clarity-city.jpg") type("image/jpeg")) 62% center / cover no-repeat;
  filter: saturate(.72) contrast(1.06);
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,16,12,.99) 0%, rgba(5,16,12,.92) 42%, rgba(5,16,12,.44) 73%, rgba(5,16,12,.3) 100%),
    linear-gradient(0deg, rgba(5,16,12,.45), transparent 45%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.16);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);
  align-items: end;
  gap: 90px;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 96px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--sage); }
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .98;
}
.hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.67);
  font-size: 12px;
  letter-spacing: .035em;
}
.hero-trust li { display: flex; align-items: center; gap: 10px; }
.hero-trust li::before { content: ""; width: 5px; height: 5px; background: var(--sage); border-radius: 50%; }
.hero-note {
  max-width: 340px;
  justify-self: end;
  padding: 27px 0 0 28px;
  border-top: 1px solid rgba(255,255,255,.38);
  border-left: 1px solid rgba(255,255,255,.2);
}
.note-index { display: block; color: var(--sage); font-size: 12px; letter-spacing: .12em; }
.hero-note p {
  margin: 32px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.25;
}
.hero-note strong {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.9vw, 66px);
  line-height: 1.08;
}
.section-heading > p,
.section-heading > div + p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.situations { padding-bottom: 72px; background: var(--paper); }
.situation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.situation-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.18);
  transition: background .28s var(--ease), transform .28s var(--ease);
}
.situation-card:hover { background: var(--ivory); transform: translateY(-3px); }
.situation-card-dark { background: var(--forest-2); color: var(--white); }
.situation-card-dark:hover { background: var(--forest-3); }
.card-number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(21,32,28,.28);
  font-family: var(--font-display);
  font-size: 43px;
}
.situation-card-dark .card-number { color: rgba(255,255,255,.19); }
.card-area {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid currentColor;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.situation-card-dark .card-area { color: var(--sage); }
.situation-card h3 {
  max-width: 440px;
  margin: 58px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -.025em;
}
.situation-card p { max-width: 520px; margin: 0 0 28px; color: var(--ink-soft); }
.situation-card-dark p { color: rgba(255,255,255,.68); }
.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.card-link span { display: inline-block; margin-left: 7px; transition: transform .25s var(--ease); }
.situation-card:hover .card-link span { transform: translate(3px,-3px); }
.autonomous-note {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.autonomous-note > span { font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.autonomous-note p { margin: 0; color: var(--ink-soft); }
.autonomous-note a { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }

.approach { padding-top: 72px; padding-bottom: 84px; background: var(--ivory); }
.approach-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.approach-visual { position: relative; margin: 0; min-height: 500px; overflow: hidden; background: var(--forest); }
.approach-visual img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; filter: saturate(.62) contrast(1.05); }
.approach-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,16,12,.72)); }
.approach-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 26px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
}
.approach-copy h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.08;
}
.approach-intro { margin: 22px 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.analysis-list { margin: 0; border-top: 1px solid var(--line); }
.analysis-list div { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.analysis-list dt { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.analysis-list dd { margin: 0; color: var(--ink-soft); }
.practice-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.practice-tags span { padding: 8px 11px; border: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .065em; text-transform: uppercase; }

.local-guides { padding-top: 82px; padding-bottom: 82px; background: var(--paper); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.guide-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.2);
  transition: background .24s var(--ease), transform .24s var(--ease);
}
.guide-card:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}
.guide-card-wide { grid-column: span 2; }
.guide-card span {
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.guide-card h3 {
  margin: 42px 0 13px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.02em;
}
.guide-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.process { padding-top: 84px; padding-bottom: 84px; background: var(--forest); color: var(--white); }
.section-heading-light h2 { color: var(--white); }
.section-heading-light > p,
.section-heading-light > div + p { color: rgba(255,255,255,.66); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.process-card { min-height: 230px; padding: 26px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-card > span { color: var(--sage); font-family: var(--font-display); font-size: 17px; }
.process-card h3 { margin: 48px 0 13px; font-family: var(--font-display); font-size: 29px; font-weight: 500; }
.process-card p { margin: 0; color: rgba(255,255,255,.66); }
.process-disclaimer { max-width: 760px; margin: 22px 0 0; color: rgba(255,255,255,.54); font-size: 13px; }

.faq { padding-top: 82px; padding-bottom: 82px; background: var(--paper-2); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); gap: 72px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { font-size: clamp(38px, 4.2vw, 58px); line-height: 1.08; }
.faq-intro > p:last-child { margin: 22px 0 0; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 20px 54px 20px 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 17px; font-family: var(--font-body); font-size: 25px; font-weight: 300; transition: transform .25s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 720px; margin: -4px 55px 20px 0; color: var(--ink-soft); }

.contact { padding-top: 82px; padding-bottom: 82px; background: var(--paper); }
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 54px;
  padding: 48px;
  background: var(--forest-2);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-copy h2 { font-size: clamp(40px, 4.5vw, 58px); line-height: 1.07; }
.contact-copy > p:not(.eyebrow):not(.contact-warning) { color: rgba(255,255,255,.68); font-size: 17px; }
.contact-guidance { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.contact-guidance > span { display: block; color: var(--sage); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-guidance ul { margin: 15px 0 0; padding: 0; list-style: none; }
.contact-guidance li { position: relative; padding: 7px 0 7px 22px; color: rgba(255,255,255,.72); }
.contact-guidance li::before { content: ""; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }
.contact-warning { margin-top: 24px; color: rgba(255,255,255,.52); font-size: 12px; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px; align-content: start; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.field-full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  padding: 14px 15px;
  background: rgba(255,255,255,.055);
  color: var(--white);
  outline: none;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form select { color-scheme: dark; }
.contact-form option {
  background: var(--ivory);
  color: var(--forest);
}
.contact-form option:checked {
  background: var(--sage);
  color: var(--forest);
}
.consent-field {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 12px !important;
  align-items: start;
  padding: 2px 0 4px;
}
.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--sage);
}
.contact-form .consent-field > span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}
.consent-field a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--sage); background: rgba(255,255,255,.08); }
.form-note,
.form-status { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; }
.form-status:not(:empty) { color: var(--sage); }

.site-footer { padding: 58px 0 22px; background: #07110e; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.4fr .55fr .8fr; gap: 60px; padding-bottom: 44px; }
.footer-brand-block p { max-width: 410px; margin: 22px 0 0; color: rgba(255,255,255,.56); }
.footer-nav,
.footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-nav h2,
.footer-contact h2 { margin: 0 0 15px; color: var(--sage); font-family: var(--font-body); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a,
.footer-contact a { width: fit-content; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .035em; }

.whatsapp-float {
  position: fixed;
  z-index: 1001;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  max-width: calc(100vw - 44px);
  padding: 12px 16px 12px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #21a85a, #167a43);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(5, 16, 12, .24), 0 0 0 0 rgba(33, 168, 90, .34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.2;
  text-transform: uppercase;
  animation: whatsapp-pulse 2.6s ease-out infinite;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 52px rgba(5, 16, 12, .3), 0 0 0 8px rgba(33, 168, 90, .1);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 18px 45px rgba(5, 16, 12, .24), 0 0 0 0 rgba(33, 168, 90, .34); }
  72% { box-shadow: 0 18px 45px rgba(5, 16, 12, .24), 0 0 0 13px rgba(33, 168, 90, 0); }
  100% { box-shadow: 0 18px 45px rgba(5, 16, 12, .24), 0 0 0 0 rgba(33, 168, 90, 0); }
}

.policy-header { position: sticky; }
.policy-page { background: var(--paper); }
.policy-hero {
  padding: calc(var(--header-height) + 88px) 0 84px;
  background: var(--forest);
  color: var(--white);
}
.policy-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.policy-hero p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}
.policy-content { background: var(--paper); }
.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, .35fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}
.policy-layout aside {
  position: sticky;
  top: 112px;
  color: var(--ink-soft);
  font-size: 13px;
}
.policy-text {
  max-width: 840px;
  padding-top: 4px;
}
.policy-text h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.policy-text h2:not(:first-child) { margin-top: 42px; }
.policy-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
}
.policy-text a {
  color: var(--forest-3);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page { background: var(--paper); }
.service-hero {
  padding: calc(var(--header-height) + 82px) 0 78px;
  background: var(--forest);
  color: var(--white);
}
.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.service-hero p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.7;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}
.service-aside {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.service-aside h2 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-aside a {
  display: inline-flex;
  margin-top: 18px;
}
.service-content {
  max-width: 820px;
}
.service-content h2 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(31px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
}
.service-content h2:not(:first-child) { margin-top: 42px; }
.service-content p,
.service-content li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.76;
}
.service-content ul {
  margin: 0;
  padding-left: 20px;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.service-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay { transition-delay: .09s; }
.js .reveal-delay-2 { transition-delay: .17s; }

@media (max-width: 1040px) {
  :root { --container: min(100% - 40px, 920px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 760px; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; padding-bottom: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-note { justify-self: start; max-width: 560px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .approach-grid { grid-template-columns: .85fr 1fr; gap: 42px; }
  .faq-layout { gap: 42px; }
  .contact-shell { padding: 42px; gap: 38px; }
}

@media (max-width: 780px) {
  :root { --container: calc(100% - 32px); --header-height: 72px; }
  .section { padding: 62px 0; }
  .situations,
  .approach,
  .process,
  .faq,
  .contact { padding-top: 62px; padding-bottom: 62px; }
  .hero { min-height: 680px; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,16,12,.98) 0%, rgba(5,16,12,.9) 62%, rgba(5,16,12,.63) 100%); }
  .hero-layout { padding-top: 130px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(48px, 14vw, 69px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-trust { gap: 10px 17px; }
  .hero-note { display: none; }
  .section-heading h2,
  .approach-copy h2,
  .faq-intro h2,
  .contact-copy h2 { font-size: clamp(38px, 11vw, 52px); }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card { min-height: auto; padding: 24px 24px; }
  .card-number { top: 28px; right: 25px; }
  .situation-card h3 { margin-top: 46px; }
  .situation-card p { margin-bottom: 22px; }
  .autonomous-note { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .autonomous-note a { white-space: normal; margin-top: 6px; }
  .approach-grid { grid-template-columns: 1fr; gap: 34px; }
  .approach-visual,
  .approach-visual img { min-height: 310px; }
  .analysis-list div { grid-template-columns: 1fr; gap: 7px; }
  .local-guides { padding-top: 62px; padding-bottom: 62px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card,
  .guide-card-wide { min-height: auto; grid-column: auto; }
  .guide-card h3 { margin-top: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; padding: 24px; }
  .process-card h3 { margin-top: 30px; }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-intro { position: static; }
  .contact-shell { grid-template-columns: 1fr; padding: 30px 24px; gap: 34px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label,
  .field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 50px 30px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 11px 13px;
    font-size: 11px;
  }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-layout aside { position: static; }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .situations,
  .approach,
  .local-guides,
  .process,
  .faq,
  .contact { padding-top: 52px; padding-bottom: 52px; }
  .brand-name { font-size: 13px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: 650px; }
  .hero-layout { padding-top: 115px; }
  .eyebrow { font-size: 11px; margin-bottom: 17px; }
  .hero h1 { font-size: 46px; }
  .hero-trust { display: grid; }
  .situation-card { min-height: auto; }
  .approach-visual,
  .approach-visual img { min-height: 270px; }
  summary { font-size: 19px; }
  .whatsapp-float {
    width: auto;
    height: 54px;
    justify-content: center;
    padding: 0 13px;
  }
  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .whatsapp-float { animation: none; }
}


/* Seção pessoal e refinamentos */
.desktop-nav { gap: 24px; }
.profile { background: var(--paper-2); }
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}
.profile-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.7vw, 78px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.02;
}
.profile-copy > p { max-width: 690px; color: var(--ink-soft); }
.profile-intro { margin: 24px 0 0; color: var(--ink) !important; font-size: 18px; line-height: 1.7; }
.profile-copy > p + p { margin-top: 14px; }
.profile-principles { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.profile-principles span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.38);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
}
.text-link::after { content: "→"; }
.profile-editorial {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  background:
    radial-gradient(circle at 80% 15%, rgba(213,214,175,.16), transparent 26%),
    linear-gradient(145deg, var(--forest-3), var(--forest) 67%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.profile-editorial::before,
.profile-editorial::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.profile-editorial::before {
  inset: 25px;
  border: 1px solid rgba(255,255,255,.13);
}
.profile-editorial::after {
  width: 230px;
  height: 230px;
  top: -88px;
  right: -88px;
  border: 1px solid rgba(213,214,175,.24);
  border-radius: 50%;
}
.profile-monogram {
  position: absolute;
  top: 48px;
  left: 50px;
  color: rgba(213,214,175,.15);
  font-family: var(--font-display);
  font-size: clamp(92px, 11vw, 154px);
  letter-spacing: -.07em;
  line-height: 1;
}
.profile-editorial blockquote {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.18;
}
.profile-signature {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.profile-signature strong { font-size: 13px; letter-spacing: .035em; }
.profile-signature span { color: rgba(255,255,255,.53); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1040px) {
  .profile-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); gap: 38px; }
  .profile-editorial { min-height: 410px; }
}
@media (max-width: 780px) {
  .profile-layout { grid-template-columns: 1fr; gap: 34px; }
  .profile-copy h2 { font-size: clamp(40px, 12vw, 56px); }
  .profile-intro { font-size: 17px; }
  .profile-editorial { min-height: 340px; }
  .profile-monogram { top: 38px; left: 35px; }
}
@media (max-width: 480px) {
  .profile-editorial { min-height: 310px; padding: 28px; }
  .profile-editorial::before { inset: 18px; }
  .profile-editorial blockquote { font-size: 29px; margin-bottom: 35px; }
  .profile-principles span { font-size: 10px; }
}

/* Ajuste final de respiro dos cards em telas estreitas */
@media (max-width: 780px) {
  .situation-card { min-height: auto; }
}

/* V17 - acabamento final */
body { font-size: 15px; }

.hero {
  min-height: 590px;
}

.hero-layout {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .38fr);
  gap: 44px;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 46px;
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.35vw, 62px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 24px;
}

.hero-trust {
  margin-top: 20px;
  gap: 9px 18px;
}

.hero-note {
  max-width: 280px;
  padding: 18px 0 0 20px;
}

.hero-note p {
  margin: 18px 0 12px;
  font-size: clamp(18px, 1.45vw, 22px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading > p,
.section-heading > div + p,
.approach-intro,
.profile-copy > p,
.faq-intro > p:last-child,
.contact-copy > p:not(.eyebrow):not(.contact-warning) {
  font-size: 15.5px;
}

.situation-card p,
.autonomous-note p,
.analysis-list dd,
.process-card p,
details p,
.guide-card p,
.service-content p,
.service-content li {
  font-size: 14.5px;
  line-height: 1.66;
}

.proof-strip {
  padding: 0 0 58px;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-item {
  min-height: 174px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.2);
}

.proof-item span,
.prep-list span {
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 17px;
}

.proof-item h2 {
  margin: 28px 0 9px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
}

.proof-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.62;
}

.quick-cta {
  padding: 0 0 76px;
  background: var(--paper);
}

.quick-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 88% 18%, rgba(213,214,175,.15), transparent 24%),
    linear-gradient(135deg, var(--forest-3), var(--forest));
  color: var(--white);
  box-shadow: var(--shadow);
}

.quick-cta h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.quick-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.68);
}

.prep {
  background: var(--ivory);
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.prep-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.prep-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.prep-list li {
  min-height: 176px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.2);
}

.prep-list strong {
  display: block;
  margin: 26px 0 8px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.17;
}

.prep-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.62;
}

.region-band {
  padding: 54px 0;
  background: var(--paper-2);
}

.region-inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, 1fr);
  gap: 38px;
  align-items: center;
}

.region-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.region-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.region-chips span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.situation-card,
.guide-card,
.proof-item,
.prep-list li {
  will-change: transform;
}

.situation-card:hover,
.guide-card:hover {
  box-shadow: 0 18px 44px rgba(10,24,18,.08);
}

.service-cta {
  margin-top: 34px;
  padding: 26px;
  background: var(--forest);
  color: var(--white);
}

.service-cta h2 {
  margin: 0 0 10px !important;
  color: var(--white);
  font-size: clamp(26px, 3vw, 36px) !important;
}

.service-cta p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.68) !important;
}

@media (max-width: 1040px) {
  .hero {
    min-height: 560px;
  }
  .hero-layout,
  .proof-grid,
  .prep-layout,
  .region-inner {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    gap: 28px;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 40px;
  }
  .hero-note {
    display: none;
  }
  .region-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  body { font-size: 15px; }
  .hero { min-height: 535px; }
  .hero-layout {
    padding-top: 96px;
    padding-bottom: 34px;
  }
  .hero h1 {
    font-size: clamp(32px, 9.5vw, 43px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    display: grid;
    margin-top: 22px;
  }
  .hero-trust {
    display: grid;
    margin-top: 18px;
  }
  .proof-strip,
  .quick-cta {
    padding-bottom: 52px;
  }
  .proof-grid,
  .prep-list {
    grid-template-columns: 1fr;
  }
  .proof-item,
  .prep-list li {
    min-height: auto;
    padding: 20px;
  }
  .proof-item h2,
  .prep-list strong {
    margin-top: 22px;
  }
  .quick-cta-inner {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .quick-cta .button {
    width: 100%;
  }
  .prep-copy h2,
  .region-inner h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .region-band {
    padding: 46px 0;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    width: 54px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 520px; }
  .hero h1 { font-size: 32px; }
}


/* V18 - alternador de tema */
:root[data-hero-theme="clarity"] .hero-image {
  background: image-set(url("../img/concept-clarity-city.webp") type("image/webp"), url("../img/concept-clarity-city.jpg") type("image/jpeg")) 62% center / cover no-repeat;
}

:root[data-hero-theme="forense"] .hero-image {
  background: image-set(url("../img/hero-forense.webp") type("image/webp"), url("../img/hero-forense.jpg") type("image/jpeg")) center 42% / cover no-repeat;
}

.theme-float {
  position: fixed;
  z-index: 1001;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(7,17,14,.88);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(5,16,12,.24);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.theme-float:hover {
  transform: translateY(-2px);
  border-color: rgba(213,214,175,.68);
  background: rgba(11,24,20,.96);
}

.theme-float-icon {
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--sage) 0 50%, transparent 50%),
    rgba(255,255,255,.08);
}

@media (max-width: 780px) {
  .theme-float {
    left: 16px;
    bottom: 16px;
    min-height: 46px;
    padding: 0 12px;
  }

  .theme-float span[data-theme-label] {
    display: none;
  }

  .theme-float-icon {
    width: 24px;
    height: 24px;
  }
}


/* V20 - publicacao com alternador */
.approach-visual picture,
.approach-visual picture img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.approach-visual picture img {
  object-fit: cover;
}

@media (max-width: 780px) {
  .site-header.is-scrolled {
    height: 68px;
  }

  .contact-form textarea {
    min-height: 145px;
  }
}


/* V21 - home enxuta com alternador */
.hero {
  min-height: 720px;
}

.hero-layout {
  gap: 64px;
  padding-top: calc(var(--header-height) + 68px);
  padding-bottom: 76px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 650px;
  margin-top: 24px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-trust {
  margin-top: 26px;
}

.compact-situations {
  padding-top: 76px;
  padding-bottom: 50px;
}

.compact-situations .section-heading {
  margin-bottom: 34px;
}

.compact-situations .section-heading h2,
.journey-copy h2,
.compact-profile .profile-copy h2,
.faq-compact .faq-intro h2,
.compact-guides .section-heading h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
}

.compact-situations .situation-card {
  min-height: 280px;
  padding: 28px;
}

.compact-situations .situation-card h3 {
  margin-top: 48px;
  font-size: clamp(25px, 2.6vw, 35px);
}

.compact-situations .situation-card p {
  max-width: 430px;
}

.compact-cta {
  padding-bottom: 66px;
}

.compact-cta .quick-cta-inner {
  padding: clamp(24px, 3.3vw, 36px);
}

.compact-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.journey {
  padding: 76px 0;
  background: var(--ivory);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: start;
}

.journey-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.035em;
}

.journey-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.journey .practice-tags {
  margin-top: 26px;
}

.journey-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, .8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.journey-steps span {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.journey-steps strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.12;
}

.journey-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.compact-profile {
  padding: 72px 0;
}

.compact-profile .profile-layout {
  align-items: center;
}

.compact-profile .profile-intro {
  max-width: 720px;
}

.compact-profile .profile-editorial {
  min-height: 310px;
}

.faq-compact {
  padding: 70px 0;
}

.faq-compact .faq-layout {
  gap: 54px;
}

.faq-compact .faq-intro {
  top: 98px;
}

.faq-compact .faq-list details {
  padding: 22px 0;
}

.contact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-form textarea {
  min-height: 138px;
}

.compact-guides {
  padding-top: 66px;
  padding-bottom: 66px;
}

.compact-guides .section-heading {
  margin-bottom: 30px;
}

.compact-guides .guide-card {
  min-height: 190px;
  padding: 24px;
}

.compact-guides .guide-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

:root[data-hero-theme="forense"] {
  --forest: #111410;
  --forest-2: #1d211b;
  --forest-3: #2a2a20;
  --paper: #f1eee6;
  --paper-2: #e8dfcf;
  --sage: #d8c69c;
  --sage-strong: #c7a968;
  --sage-dark: #8c744b;
}

:root[data-hero-theme="forense"] .hero-image {
  filter: sepia(.14) saturate(.82) contrast(1.12) brightness(.9);
}

:root[data-hero-theme="forense"] .hero-shade {
  background:
    linear-gradient(90deg, rgba(10,12,9,.99) 0%, rgba(18,20,15,.94) 43%, rgba(25,24,17,.52) 74%, rgba(25,24,17,.34) 100%),
    linear-gradient(0deg, rgba(11,12,9,.58), transparent 48%);
}

:root[data-hero-theme="forense"] .site-header.is-scrolled,
:root[data-hero-theme="forense"] .drawer-panel {
  background: rgba(17,20,16,.95);
}

:root[data-hero-theme="forense"] .quick-cta-inner,
:root[data-hero-theme="forense"] .contact-shell {
  background:
    radial-gradient(circle at 88% 18%, rgba(216,198,156,.16), transparent 24%),
    linear-gradient(135deg, #2a2a20, #111410);
}

:root[data-hero-theme="forense"] .theme-float {
  border-color: rgba(216,198,156,.42);
}

:root[data-hero-theme="forense"] .theme-float-icon {
  background:
    linear-gradient(90deg, #d8c69c 0 50%, transparent 50%),
    rgba(255,255,255,.08);
}

@media (max-width: 1040px) {
  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .journey-steps p {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .compact-situations,
  .journey,
  .compact-profile,
  .faq-compact,
  .contact,
  .compact-guides {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .compact-situations .situation-card {
    min-height: 248px;
  }

  .journey-steps li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .journey-steps p {
    grid-column: auto;
  }
}


/* V22 - alternador no menu */
.theme-menu-toggle {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.theme-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(213,214,175,.78);
  background: rgba(255,255,255,.12);
}

.theme-menu-dot {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--sage) 0 50%, transparent 50%),
    rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 3px rgba(11,24,20,.32);
}

.theme-menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root[data-hero-theme="forense"] .theme-menu-toggle {
  border-color: rgba(216,198,156,.5);
  background: rgba(216,198,156,.11);
}

:root[data-hero-theme="forense"] .theme-menu-dot {
  background:
    linear-gradient(90deg, #d8c69c 0 50%, transparent 50%),
    rgba(255,255,255,.08);
}

@media (max-width: 1040px) {
  .theme-menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 780px) {
  .theme-menu-toggle {
    width: 36px;
    height: 36px;
    margin-left: auto;
  }

  .theme-menu-dot {
    width: 17px;
    height: 17px;
  }
}


/* V25 - FAQ ampliada e contato compacto sobre a base V22 */
.faq-compact {
  padding-top: 62px;
  padding-bottom: 62px;
}

.faq-compact .faq-layout {
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: 42px;
}

.faq-compact .faq-intro h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.faq-compact .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 0;
}

.faq-compact .faq-list details {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.28);
}

.faq-compact .faq-list summary {
  font-size: 15px;
  line-height: 1.35;
}

.faq-compact .faq-list details p {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.58;
}

.contact {
  padding-top: 56px;
  padding-bottom: 56px;
}

.contact-shell {
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1fr);
  gap: 34px;
  padding: clamp(24px, 3.2vw, 38px);
}

.contact-copy h2 {
  font-size: clamp(32px, 3.3vw, 46px);
}

.contact-copy > p:not(.eyebrow):not(.contact-warning) {
  font-size: 15px;
  line-height: 1.62;
}

.contact-guidance-compact {
  margin-top: 20px;
  padding-top: 18px;
}

.contact-guidance-compact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-guidance-compact li {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-guidance-compact li::before {
  display: none;
}

.contact-form {
  gap: 14px;
}

.contact-form label {
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 112px;
}

.contact-form .consent-field {
  padding: 12px;
}

.form-note {
  margin-top: -4px;
  font-size: 11.5px;
}

@media (max-width: 1040px) {
  .faq-compact .faq-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .faq-compact .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-compact .faq-list details {
    min-height: auto;
  }

  .contact {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .contact-shell {
    padding: 24px 18px;
    gap: 26px;
  }
}
