:root {
  --bg:      oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --fg:      #2f2416;
  --muted:   oklch(40% 0.02 100);
  --border:  oklch(15% 0.02 100);
  --accent:  #C09B5A;
  --accent-whatsapp: #135E54;
  --accent-whatsapp-hover: #38D366;

  --font-display: 'proxima-nova';
  --font-body:    'proxima-nova';

  --ink: #18130c;
  --graphite: #1f1b12;
  --graphite-2: #302819;
  --header-bg: #352925;
  --paper: oklch(97.5% 0.004 240);
  --paper-2: oklch(92% 0.007 240);
  --line: color-mix(in oklch, var(--fg) 18%, transparent);
  --gold-soft: color-mix(in oklch, var(--accent) 20%, white);
  --gold-line: color-mix(in oklch, var(--accent) 42%, transparent);
  --success: oklch(55% 0.13 150);
  --warning: oklch(68% 0.12 78);
  --danger: oklch(58% 0.14 32);
  --radius: 2px;
  --max: 1280px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--border) 6%, transparent) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(color-mix(in oklch, var(--border) 5%, transparent) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  padding-bottom: 96px;
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: env(safe-area-inset-top);
  z-index: 49;
  background: var(--header-bg);
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 14px;
  background: var(--surface);
  border: 2px solid var(--fg);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1.5px solid color-mix(in oklch, var(--surface) 18%, transparent);
  background: var(--header-bg);
  color: var(--surface);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 160px;
  display: block;
}

.page-cannabis .hero {
  min-height: 816px;
  padding-top: 0;
  background: #24191c;
}

.page-cannabis .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 50%, rgba(192, 155, 90, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(36, 25, 28, 0.92) 0%, rgba(36, 25, 28, 0.72) 48%, rgba(36, 25, 28, 0.46) 100%),
    linear-gradient(180deg, rgba(15, 14, 8, 0.42), rgba(15, 14, 8, 0.66));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.page-cannabis .hero-inner {
  min-height: 816px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.page-cannabis .hero-content {
  max-width: 960px;
}

.page-cannabis #dores-title,
.page-cannabis #atuacao-title,
.page-cannabis #processo-title,
.page-cannabis #criterios-canabico-title,
.page-cannabis #faq-canabico-title {
  font-size: 50px;
}

.hero-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: color-mix(in oklch, var(--surface) 72%, transparent);
  font-size: 14px;
  line-height: 1.65;
}

.hero-brand {
  display: flex;
  align-items: center;
  width: max-content;
  margin-bottom: 30px;
  text-decoration: none;
}

.hero-brand img {
  width: 180px;
  display: block;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 11px;
  color: color-mix(in oklch, var(--surface) 68%, transparent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in oklch, var(--surface) 84%, transparent);
}

.nav-links a {
  text-decoration: none;
  padding-block: 10px;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid color-mix(in oklch, var(--surface) 28%, transparent);
  background: transparent;
  color: var(--surface);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.btn {
  --btn-bg: var(--fg);
  --btn-fg: var(--surface);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1.5px solid var(--fg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn.is-loading {
  cursor: progress;
  opacity: 0.88;
  transform: none;
}

.btn.is-loading:hover,
.btn.is-loading:focus-visible {
  transform: none;
}

.btn.is-loading i {
  display: none;
}

.btn.is-loading::before {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spin 720ms linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--ink);
  border-color: var(--accent);
  font-weight: 700;
}

.btn-whatsapp {
    --btn-bg: var(--accent-whatsapp);
    --btn-fg: var(--ink);
    font-size: 17px;
    font-family: var(--font-display);
    padding: 18px 25px;
    border-radius: 5px;
    border: none;
    color: white;
    font-weight: 300;
}

.btn-whatsapp:hover {
    background: #38D366;
    border: none;
}

.nav-cta {
  min-height: 44px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 400;
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
}

.btn-dark {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  border-color: var(--surface);
}

.icon-arrow {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.icon-arrow::before {
  content: "";
  position: absolute;
  inset: 8px 2px auto 2px;
  height: 1.5px;
  background: currentColor;
}

.icon-arrow::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  color: var(--surface);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--graphite) 92%, black), var(--graphite-2));
  overflow: clip;
  border-bottom: 2px solid var(--fg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--surface) 5%, transparent) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(color-mix(in oklch, var(--surface) 4%, transparent) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 7vw, 64px) 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.hero-content,
.triage-panel {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1.5px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 65px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy {
  max-width: 690px;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
  font-size: clamp(16px, 1.5vw, 16px);
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1.5px solid color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--graphite) 70%, transparent);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 18px;
  min-height: 96px;
  border-right: 1.5px solid color-mix(in oklch, var(--surface) 18%, transparent);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 400;
}

.hero-proof span {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.triage-panel {
  align-self: stretch;
  min-height: 460px;
  border: 1.5px solid color-mix(in oklch, var(--surface) 32%, transparent);
  background:
    linear-gradient(145deg, color-mix(in oklch, var(--surface) 16%, transparent), color-mix(in oklch, var(--graphite) 72%, transparent));
  backdrop-filter: blur(22px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 44px 120px color-mix(in oklch, black 30%, transparent);
}

.panel-head,
.panel-foot {
  padding: 20px;
  border-bottom: 1.5px solid color-mix(in oklch, var(--surface) 18%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-foot {
  border-top: 1.5px solid color-mix(in oklch, var(--surface) 18%, transparent);
  border-bottom: 0;
  color: color-mix(in oklch, var(--surface) 72%, transparent);
  font-size: 11px;
  line-height: 1.5;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
}

.panel-status::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.panel-title {
  margin: 0;
  font-size: 13px;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
}

.decision-map {
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.map-node {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1.5px solid color-mix(in oklch, var(--surface) 25%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.map-node:hover {
  transform: translateX(4px);
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent) 10%, transparent);
}

.node-icon,
.abstract-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid currentColor;
  color: var(--accent);
  position: relative;
  flex: 0 0 auto;
}

.node-icon::before,
.node-icon::after,
.abstract-icon::before,
.abstract-icon::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
}

.node-icon::before {
  width: 16px;
  height: 16px;
  left: 6px;
  top: 6px;
}

.node-icon::after {
  width: 14px;
  height: 1.5px;
  right: 6px;
  bottom: 10px;
  background: currentColor;
  border: 0;
}

.map-node strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.map-node span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: color-mix(in oklch, var(--surface) 70%, transparent);
}

.node-index {
  color: color-mix(in oklch, var(--surface) 50%, transparent);
  font-size: 11px;
}

.section {
  padding: clamp(72px, 9vw, 90px) 0;
}

.section-dark {
  --glow-a-x: 74%;
  --glow-a-y: 18%;
  --glow-b-x: 22%;
  --glow-b-y: 12%;
  --glow-drift-x: 4%;
  --glow-drift-y: 7%;
  --glow-duration: 18s;
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, color-mix(in oklch, var(--graphite) 84%, black), color-mix(in oklch, var(--graphite-2) 82%, var(--accent)));
  color: var(--surface);
  border-block: 2px solid var(--fg);
  overflow: hidden;
}

.section-dark[aria-labelledby="duvida-title"] {
  --glow-a-x: 76%;
  --glow-a-y: 16%;
  --glow-b-x: 18%;
  --glow-b-y: 24%;
  --glow-drift-x: -5%;
  --glow-drift-y: 6%;
  --glow-duration: 19s;
}

.section-dark[aria-labelledby="duvida-title"] .section-head {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, .38fr);
}

.section-dark[aria-labelledby="duvida-title"] .section-head::before {
  content: "";
  position: absolute;
  left: -28%;
  top: -182%;
  width: min(1180px, 96vw);
  height: 760px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 42% 50%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 76%),
    radial-gradient(ellipse at 58% 42%, color-mix(in oklch, var(--surface) 7%, transparent), transparent 70%);
  filter: blur(34px);
  opacity: .95;
  pointer-events: none;
}

.section-dark[aria-labelledby="valor-title"] {
  --glow-a-x: 22%;
  --glow-a-y: 18%;
  --glow-b-x: 82%;
  --glow-b-y: 34%;
  --glow-drift-x: 6%;
  --glow-drift-y: -5%;
  --glow-duration: 23s;
}

.section-dark#faq {
  --glow-a-x: 84%;
  --glow-a-y: 18%;
  --glow-b-x: 28%;
  --glow-b-y: 74%;
  --glow-drift-x: 5%;
  --glow-drift-y: -6%;
  --glow-duration: 25s;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--surface) 5%, transparent) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(color-mix(in oklch, var(--surface) 4%, transparent) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(900px 520px at var(--glow-a-x) var(--glow-a-y), color-mix(in oklch, var(--accent) 19%, transparent), transparent 62%),
    radial-gradient(720px 460px at var(--glow-b-x) var(--glow-b-y), color-mix(in oklch, var(--surface) 9%, transparent), transparent 58%);
  opacity: .95;
  transform: translate3d(0, 0, 0) scale(1);
  animation: section-glow-drift var(--glow-duration) ease-in-out infinite alternate;
  pointer-events: none;
}

.section-dark > .shell {
  position: relative;
  z-index: 2;
}

@keyframes section-glow-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(calc(var(--glow-drift-x) * .55), calc(var(--glow-drift-y) * -.45), 0) scale(1.04);
  }

  100% {
    transform: translate3d(var(--glow-drift-x), var(--glow-drift-y), 0) scale(1.08);
  }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(32px, 6vw, 72px);
}

.section-head-method {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .42fr);
}

h2 {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 65px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-wrap: balance;
}

#duvida-title {
  max-width: 1120px;
}

#metodo-title {
  max-width: 1080px;
}

.title-accent {
  color: var(--accent);
  font-weight: 700;
}

.copy-mobile {
  display: none;
}

.section-head p,
.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.section-dark .section-head p,
.section-dark .lead {
  color: color-mix(in oklch, var(--surface) 70%, transparent);
}

.section-cta {
  display: flex;
  margin-top: clamp(22px, 3vw, 34px);
}

.section-cta-center {
  justify-content: center;
}

.trail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 5;
}

.trail-card {
  min-height: 350px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in oklch, var(--surface) 88%, transparent), color-mix(in oklch, var(--paper-2) 70%, transparent));
  color: var(--fg);
  text-decoration: none;
  display: grid;
  gap: 24px;
  align-content: space-between;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.trail-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--accent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.trail-card:hover,
.trail-card:focus-visible,
.trail-card.is-active {
  transform: translateY(-8px);
  background: var(--fg);
  color: var(--surface);
}

.trail-card:hover::after,
.trail-card:focus-visible::after,
.trail-card.is-active::after {
  transform: scaleX(1);
}

.trail-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.trail-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 300;
}

.trail-card p {
  margin-bottom: 0;
  max-width: 300px;
  color: color-mix(in oklch, currentColor 72%, transparent);
  font-size: 16px;
  line-height: 1.6;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--fg);
  background: var(--surface);
}

.cred-item {
  min-height: 210px;
  padding: 24px;
  border-right: 1.5px solid var(--fg);
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.cred-item:last-child {
  border-right: 0;
}

.cred-item span {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--fg);
  display: block;
  position: relative;
}

.cred-item span::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 16px;
  height: 1.5px;
  background: var(--accent);
}

.cred-item h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.cred-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.editorial-card,
.benefit-card,
.quote-card {
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  padding: clamp(22px, 3vw, 34px);
}

.editorial-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 22px;
}

.section-dark .editorial-card {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
  backdrop-filter: blur(16px);
}

.card-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border: 1.5px solid currentColor;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.section-dark .card-label {
  color: color-mix(in oklch, var(--surface) 68%, transparent);
}

.editorial-card h3,
.benefit-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: .95;
  font-weight: 300;
}

.editorial-card h3 {
  margin-bottom: 0;
}

.editorial-card p,
.benefit-card p,
.quote-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section-dark .editorial-card p {
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.mini-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
}

.mini-flow i {
  display: block;
  height: 30px;
  border: 1.5px solid var(--fg);
  position: relative;
}

.mini-flow i::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 13px;
  width: 10px;
  height: 1.5px;
  background: var(--accent);
}

.mini-flow i:last-child::after {
  display: none;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  border-top: 2px solid color-mix(in oklch, var(--fg) 22%, transparent);
}

.step {
  position: relative;
  min-height: 190px;
  padding: 42px clamp(18px, 2.4vw, 28px) 0 0;
  border-right: 0;
  display: grid;
  align-content: start;
  gap: 24px;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -43px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent), 0 0 36px color-mix(in oklch, var(--accent) 52%, transparent);
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
}

.step h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.4px;
}

.step p {
  margin-bottom: 0;
  max-width: 250px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card,
.quote-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-card:hover,
.quote-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.benefit-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.abstract-icon::before {
  left: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
}

.abstract-icon::after {
  right: 7px;
  bottom: 7px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quote-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: space-between;
  gap: 20px;
}

.section-dark .quote-card {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
  backdrop-filter: blur(16px);
}

.quote-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.quote-card h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: .95;
  font-weight: 300;
}

.section-dark .quote-card p {
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.criteria-table {
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.section-dark .criteria-table {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  backdrop-filter: blur(16px);
}

.criteria-row {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--fg);
}

.section-dark .criteria-row {
  border-bottom-color: color-mix(in oklch, var(--surface) 24%, transparent);
}

.criteria-row:last-child {
  border-bottom: 0;
}

.criteria-row strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.criteria-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section-dark .criteria-row p {
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.criteria-row span {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .72fr);
  gap: 0;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.analysis-case {
  position: relative;
  margin-bottom: clamp(34px, 4.8vw, 58px);
  overflow: visible;
}

.analysis-case::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 60px;
  background: var(--accent);
  transform: translateX(-50%);
}

.section-dark .case-card {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
  backdrop-filter: blur(16px);
}

.case-copy,
.case-board {
  padding: clamp(26px, 4vw, 48px);
}

.case-copy {
  border-right: 1px solid var(--fg);
  display: grid;
  align-content: center;
  gap: 22px;
}

.case-copy .kicker {
  margin: 0;
}

.section-dark .case-copy {
  border-right-color: color-mix(in oklch, var(--surface) 24%, transparent);
}

.case-copy h3 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: .9;
  font-weight: 400;
}

.case-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.case-copy blockquote {
  margin: 0;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.75;
}

.case-copy blockquote strong {
  font-weight: 700;
  color: var(--accent);
}

.section-dark .case-copy p {
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.section-dark .case-copy blockquote {
  color: color-mix(in oklch, var(--surface) 82%, transparent);
}

.notice {
  padding: 18px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--fg);
  font-size: 12px;
  line-height: 1.7;
}

.section-dark .notice {
  border-color: color-mix(in oklch, var(--accent) 48%, transparent);
  background: color-mix(in oklch, var(--accent) 16%, transparent);
  color: color-mix(in oklch, var(--surface) 84%, transparent);
}

.checklist {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--bg);
}

.section-dark .check-row {
  border-color: color-mix(in oklch, var(--surface) 20%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
}

.check-row i {
  width: 22px;
  height: 22px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  display: block;
  position: relative;
}

.section-dark .check-row i {
  border-color: color-mix(in oklch, var(--surface) 42%, transparent);
}

.check-row i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translate(-50%, -62%) rotate(-45deg);
}

.check-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.check-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-dark .check-row span {
  color: color-mix(in oklch, var(--surface) 68%, transparent);
}

.faq {
  border-top: 2px solid var(--fg);
}

.section-dark .faq {
  border-top-color: color-mix(in oklch, var(--surface) 30%, transparent);
}

.faq-item {
  border-bottom: 2px solid var(--fg);
}

.section-dark .faq-item {
  border-bottom-color: color-mix(in oklch, var(--surface) 30%, transparent);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.section-dark .faq-question {
  color: var(--surface);
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--fg);
  position: relative;
  transition: transform 180ms ease, background 180ms ease;
}

.section-dark .faq-icon {
  border-color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 18px;
  height: 1.5px;
  background: currentColor;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.section-dark .faq-answer p {
  color: color-mix(in oklch, var(--surface) 72%, transparent);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.cta-box {
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  padding: clamp(24px, 3.4vw, 38px);
}

.section-dark .cta-box {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
}

.cta-box h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1;
}

.cta-box p {
  color: var(--muted);
  line-height: 1.65;
}

.section-dark .cta-box p {
  color: color-mix(in oklch, var(--surface) 74%, transparent);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border-block: 1px solid color-mix(in oklch, var(--fg) 18%, transparent);
}

.contact-points div {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 15px 18px 16px 0;
  border: 0;
  border-right: 1px solid color-mix(in oklch, var(--fg) 14%, transparent);
  background: transparent;
}

.contact-points div + div {
  padding-left: 18px;
}

.contact-points div:last-child {
  border-right: 0;
}

.contact-points strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.contact-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-dark .contact-points div {
  border-color: color-mix(in oklch, var(--surface) 20%, transparent);
  background: transparent;
}

.section-dark .contact-points span {
  color: color-mix(in oklch, var(--surface) 70%, transparent);
}

.microcopy {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1.5px solid color-mix(in oklch, var(--fg) 18%, transparent);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.section-dark .microcopy {
  border-top-color: color-mix(in oklch, var(--surface) 20%, transparent);
  color: color-mix(in oklch, var(--surface) 62%, transparent);
}

.form-card {
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  padding: clamp(28px, 3.2vw, 40px) clamp(22px, 2.8vw, 32px);
}

.form-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
}

.form-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--fg);
  background: var(--bg);
  color: var(--fg);
  padding: 12px 13px;
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 122px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 22%, transparent);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 18px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}

.consent input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  accent-color: var(--accent);
  margin: 1px 0 0;
}

.quick-contact-form {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 80;
  width: min(calc(100% - 48px), 750px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 58px repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--accent-whatsapp);
  box-shadow: 0 18px 44px color-mix(in oklch, black 18%, transparent);
  font-family: var(--font-body);
  transform: translateX(-50%);
}

.quick-contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--surface);
  font-size: 43px;
  line-height: 1;
}

.quick-contact-field {
  display: block;
  margin: 0;
  color: transparent;
}

.quick-contact-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.quick-contact-field input {
  min-height: 42px;
  border: 1px solid color-mix(in oklch, black 34%, transparent);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 9px 12px;
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--surface) 45%, transparent);
}

.quick-contact-field input::placeholder {
  color: color-mix(in oklch, var(--fg) 62%, transparent);
  opacity: 1;
}

.quick-contact-submit {
  width: 100%;
  min-height: 42px;
  padding: 0;
  background: var(--accent-whatsapp-hover);
  color: var(--surface);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.quick-contact-submit:hover,
.quick-contact-submit:focus-visible {
  background: color-mix(in oklch, var(--accent-whatsapp-hover) 88%, white);
}

footer {
  padding: 34px 0;
  background: var(--graphite);
  color: color-mix(in oklch, var(--surface) 68%, transparent);
  border-top: 1.5px solid color-mix(in oklch, var(--surface) 20%, transparent);
  font-size: 11px;
  line-height: 1.7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--surface);
  font-weight: 500;
}

.footer-inner a {
  color: var(--surface);
  text-underline-offset: 4px;
}

.privacy-hero {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
  font-weight: 100;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-hero .lead {
  max-width: 760px;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
  font-size: 19px;
}

.privacy-updated {
  margin-top: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-content {
  padding: clamp(56px, 8vw, 104px) 0;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--surface) 78%, white);
  overflow: hidden;
}

.privacy-toc a {
  padding: 13px 14px;
  color: var(--fg);
  border-bottom: 1px solid color-mix(in oklch, var(--fg) 20%, transparent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.privacy-toc a:last-child {
  border-bottom: 0;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  background: color-mix(in oklch, var(--accent) 16%, var(--surface));
}

.privacy-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--surface) 88%, white);
}

.privacy-card section + section {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid color-mix(in oklch, var(--fg) 18%, transparent);
}

.privacy-card h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 34px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0px;
  text-transform: none;
}

.privacy-card p,
.privacy-card li {
  color: color-mix(in oklch, var(--fg) 78%, transparent);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.privacy-card li + li {
  margin-top: 6px;
}

.privacy-contact {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-inner,
  .section-head,
  .case-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .triage-panel {
    min-height: auto;
  }

  .cred-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cred-item:nth-child(2n),
  .cred-item:last-child {
    border-right: 0;
  }

  .cred-item {
    border-bottom: 1.5px solid var(--fg);
  }

  .cred-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .editorial-grid,
  .quote-grid,
  .trail-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    row-gap: 36px;
  }

  .step {
    border-bottom: 0;
  }

  .case-copy {
    border-right: 0;
    border-bottom: 1px solid var(--fg);
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 24px, var(--max));
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 78px;
    padding: 18px;
    display: grid;
    gap: 8px;
    background: var(--graphite);
    border: 1.5px solid color-mix(in oklch, var(--surface) 28%, transparent);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .privacy-hero,
  .privacy-content {
    padding: 40px 20px;
  }

  .privacy-hero h1 {
    font-size: 48px;
  }

  .privacy-hero .lead {
    font-size: 16px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-card {
    padding: 24px 20px;
  }

  .privacy-card h2 {
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0px;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 20px;
  }

  #trilhas.section {
    padding: 40px 20px;
  }

  #trilhas h2 {
    margin-bottom: 0;
    font-size: 35px;
  }

  .section-dark[aria-labelledby="duvida-title"] {
    padding: 40px 20px;
  }

  .section-dark[aria-labelledby="duvida-title"] .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  #duvida-title {
    max-width: none;
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
    overflow-wrap: normal;
  }

  #metodo.section {
    padding: 40px 20px;
  }

  #metodo .section-head {
    margin-bottom: 28px;
  }

  #metodo-title {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
  }

  .section-dark[aria-labelledby="valor-title"] {
    padding: 40px 20px;
  }

  .section-dark[aria-labelledby="valor-title"] .section-head {
    margin-bottom: 28px;
  }

  #valor-title {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
  }

  #criterios.section {
    padding: 40px 20px;
  }

  #criterios .section-head {
    margin-bottom: 28px;
  }

  #criterios-title {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
  }

  #faq.section {
    padding: 40px 20px;
  }

  #faq .section-head {
    margin-bottom: 28px;
  }

  #faq-title {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
  }

  #faq .faq-question span:first-child {
    font-size: 18px;
  }

  #faq .faq-answer p {
    font-size: 15px;
  }

  #formulario.section {
    padding: 40px 0;
  }

  #final-title {
    margin-bottom: 18px;
    font-size: 35px;
    line-height: 1;
  }

  .page-service #dores.section,
  .page-service #atuacao.section,
  .page-service #processo.section,
  .page-service #criterios-regulatorios.section,
  .page-service #criterios-legislativos.section,
  .page-service #criterios-eleitorais.section,
  .page-service #criterios-sucessorios.section,
  .page-service #criterios-canabico.section,
  .page-service #faq.section,
  .page-service #formulario.section {
    padding: 40px 20px;
  }

  .page-service #dores .section-head,
  .page-service #atuacao .section-head,
  .page-service #processo .section-head,
  .page-service #criterios-regulatorios .section-head,
  .page-service #criterios-legislativos .section-head,
  .page-service #criterios-eleitorais .section-head,
  .page-service #criterios-sucessorios .section-head,
  .page-service #criterios-canabico .section-head,
  .page-service #faq .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .page-service #dores-title,
  .page-service #atuacao-title,
  .page-service #processo-title,
  .page-service #criterios-regulatorios-title,
  .page-service #criterios-legislativos-title,
  .page-service #criterios-eleitorais-title,
  .page-service #criterios-sucessorios-title,
  .page-service #criterios-canabico-title,
  .page-service #faq-regulatorio-title,
  .page-service #faq-legislativo-title,
  .page-service #faq-eleitoral-title,
  .page-service #faq-sucessoes-title,
  .page-service #faq-canabico-title,
  .page-service #final-regulatorio-title,
  .page-service #final-legislativo-title,
  .page-service #final-eleitoral-title,
  .page-service #final-sucessoes-title,
  .page-service #final-canabico-title {
    max-width: none;
    margin-bottom: 0;
    font-size: 35px;
    line-height: 1;
    overflow-wrap: normal;
  }

  .page-service .section-head p {
    font-size: 16px;
    line-height: 1.65;
  }

  .page-service .editorial-card,
  .page-service .quote-card {
    min-height: 0;
    padding: 22px;
  }

  .page-service .editorial-card h3,
  .page-service .quote-card h3 {
    font-size: 23px;
    line-height: 1.05;
  }

  .page-service .editorial-card p,
  .page-service .quote-card p,
  .page-service .step p,
  .page-service .criteria-row p {
    font-size: 16px;
  }

  .page-service .criteria-row {
    padding: 18px;
  }

  .page-service .criteria-row strong {
    font-size: 23px;
  }

  .page-service .final-cta {
    gap: 18px;
  }

  .page-service .form-card {
    padding: 28px 20px;
  }

  .page-service .copy-desktop {
    display: none;
  }

  .page-service .copy-mobile {
    display: inline;
  }

  .page-service #final-regulatorio-title .copy-mobile,
  .page-service #final-legislativo-title .copy-mobile,
  .page-service #final-eleitoral-title .copy-mobile,
  .page-service #final-sucessoes-title .copy-mobile,
  .page-service #final-canabico-title .copy-mobile {
    display: block;
  }

  .form-card h3 {
    margin-bottom: 15px;
  }

  .trail-card {
    min-height: 0;
  }

  .trail-card h3 {
    font-size: 23px;
  }

  .hero-proof,
  .triage-panel {
    display: none;
  }

  .hero-proof,
  .trail-grid,
  .editorial-grid,
  .quote-grid,
  .benefit-grid,
  .contact-points,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-points div,
  .contact-points div + div {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid color-mix(in oklch, var(--fg) 14%, transparent);
  }

  .contact-points div:last-child {
    border-bottom: 0;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1.5px solid color-mix(in oklch, var(--surface) 18%, transparent);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .trail-grid {
    margin-top: 0;
  }

  .cred-grid {
    grid-template-columns: 1fr;
  }

  .cred-item {
    border-right: 0;
    border-bottom: 1.5px solid var(--fg);
  }

  .cred-item:last-child {
    border-bottom: 0;
  }

  .timeline {
    border-top: 0;
    border-left: 2px solid color-mix(in oklch, var(--fg) 22%, transparent);
    padding: 0 0 0 28px;
  }

  .step,
  .step:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 0 0 34px 20px;
    border-right: 0;
    border-bottom: 0;
  }

  .step::before {
    left: -37px;
    top: 4px;
  }

  .step:last-child {
    padding-bottom: 0;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .criteria-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 128px;
  }

  .quick-contact-form {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 10px;
    border-radius: 0;
    transform: none;
  }

  .quick-contact-icon {
    display: none;
  }

  .quick-contact-field input,
  .quick-contact-submit {
    min-height: 42px;
    font-size: 16px;
  }

  .quick-contact-submit {
    grid-column: 1 / -1;
  }

}

@media (max-width: 430px) {
  .brand-text strong {
    font-size: 12px;
  }

  .brand-text span {
    display: none;
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .panel-head,
  .panel-foot {
    display: grid;
  }

  .map-node {
    grid-template-columns: 1fr;
  }

  .node-index {
    justify-self: start;
  }

  h1 {
    font-size: clamp(37px, 10.4vw, 45px);
    line-height: .9;
    letter-spacing: -1.5px;
    overflow-wrap: break-word;
  }

  .kicker::before {
    width: 24px;
  }

  h2 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: .96;
    letter-spacing: -1.2px;
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
