/* =========================================================
   TOKENS — PALETA WARM SOPHISTICATED
   ========================================================= */
:root {
  --bg:         #F1EADB;
  --paper:      #F7F2E8;
  --paper-alt:  #EDE4D0;
  --ink:        #1F1D1A;
  --ink-soft:   #3A3733;
  --muted:      #6E6960;
  --line:       #C9BFA9;
  --line-soft:  #DDD3BC;
  --olive:      #3A3F2E;
  --olive-deep: #2B3022;
  --clay:       #8B6F47;
  --clay-deep:  #6E5636;

  /* Warm sage/moss green used for Soluções accents — same "green family" as
     --olive but a distinctly lighter, warmer tone so it reads on its own
     next to the Método section instead of competing with it. */
  --sage:       #74804B;
  --sage-deep:  #5C6639;

  /* Dark surface for solution cards — same olive green used in Método,
     alternated with the light paper surface for visual rhythm. */
  --surface-dark:      var(--olive);
  --surface-dark-alt:  var(--olive-deep);
  --on-dark:           #F3ECDD;
  --on-dark-soft:      #C9BBA4;
  --on-dark-line:      rgba(243, 236, 221, 0.14);
  --gold:              #C9A567;
  --gold-deep:         #E0C48C;

  --f-display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Geist', 'Inter Tight', 'Manrope', -apple-system, system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
/* Offset anchor-jump targets so the sticky nav never covers the top of the
   section being scrolled to (e.g. clicking a Moments card into a Product). */
section[id], article[id], header[id] { scroll-margin-top: 96px; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
p { margin: 0; text-wrap: pretty; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.005em; text-wrap: balance; }

/* =========================================================
   UTIL
   ========================================================= */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-soft { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--olive { color: var(--olive); }
.roman {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  color: var(--olive);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.wordmark {
  display: flex; flex-direction: column; line-height: 1;
}
.wordmark .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.wordmark .name em { font-style: italic; }
.wordmark .kicker {
  font-family: var(--f-body);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--olive); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--olive); color: var(--paper) !important; }
.nav-cta svg { width: 14px; height: 14px; stroke: var(--paper); }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav-menu-toggle .bar {
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav.menu-open .nav-menu-toggle .bar:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.menu-open .nav-menu-toggle .bar:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile dropdown menu — hidden by default, shown via .menu-open */
.nav-menu-mobile {
  display: none;
  flex-direction: column;
  padding: 4px var(--gutter) 24px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.nav-menu-mobile a:not(.nav-cta) {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-menu-mobile a:not(.nav-cta):hover { color: var(--olive); }
.nav-menu-mobile .nav-cta {
  justify-content: center;
  margin-top: 20px;
}
.nav.menu-open .nav-menu-mobile { display: flex; }

@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-menu-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(72px, 12vh, 140px) 0 clamp(80px, 14vh, 160px);
  position: relative;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; }

.hero-kicker-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(28px, 5vh, 48px);
}
.hero-kicker-row .line {
  flex: 1; height: 1px; background: var(--line);
}
.moment-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  margin-top: clamp(32px, 6vh, 56px);
  transition: border-color .2s ease, background .2s ease;
}
.moment-shortcut:hover { border-color: var(--olive); background: var(--paper-alt); }
.moment-shortcut .ms-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.moment-shortcut .ms-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.moment-shortcut .ms-cta svg { width: 12px; height: 12px; transition: transform .25s ease; }
.moment-shortcut:hover .ms-cta svg { transform: translateX(3px); }
@media (max-width: 640px) {
  .moment-shortcut { flex-wrap: wrap; padding: 8px 8px 8px 16px; gap: 10px; }
  .moment-shortcut .ms-quote { font-size: 13px; }
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8.4vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--olive); font-weight: 400; }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 8vw, 120px);
  margin-top: clamp(48px, 8vh, 96px);
  align-items: end;
}
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  justify-self: end;
}
@media (max-width: 820px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-actions { justify-self: start; }
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--olive); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--olive {
  background: var(--olive);
  color: var(--paper);
}
.btn--olive:hover { background: var(--olive-deep); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover { background: var(--clay); color: var(--paper); }

.hero-footer {
  margin-top: clamp(72px, 14vh, 160px);
  display: flex; justify-content: space-between; align-items: stretch;
  gap: 16px;
}
.hero-footer .cols {
  display: flex; gap: 16px;
  flex: 1;
}
.hero-footer .col {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  max-width: 22ch;
  line-height: 1.55;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--paper);
  flex: 1;
}
.hero-footer .col strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-footer .scroll-hint {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-end;
  padding-bottom: 4px;
}
@media (max-width: 820px) {
  .hero-footer { flex-direction: column; }
  .hero-footer .cols { flex-direction: column; }
}
@media (max-width: 640px) { .hero-footer .col { max-width: none; } .hero-footer .scroll-hint { display: none; } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section {
  padding: clamp(72px, 12vh, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 6vw, 80px);
  margin-bottom: clamp(48px, 8vh, 88px);
  align-items: start;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-head h2 em { font-style: italic; color: var(--olive); }
.section-head .h-sub {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 52ch;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vh, 72px);
}
.manifesto blockquote {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  max-width: 22ch;
  color: var(--ink);
}
.manifesto blockquote em { font-style: italic; color: var(--olive); }
.manifesto-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  padding-top: clamp(32px, 6vh, 56px);
  border-top: 1px solid var(--line-soft);
}
.manifesto-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}
.manifesto-body em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--olive);
}
@media (max-width: 820px) {
  .manifesto-body { grid-template-columns: 1fr; }
}

/* =========================================================
   DOIS TERRITÓRIOS
   ========================================================= */
.territories {
  padding-bottom: clamp(72px, 12vh, 140px);
}
.territories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.territory {
  background: var(--paper);
  padding: clamp(36px, 5vw, 72px);
  display: flex; flex-direction: column;
  min-height: 480px;
  position: relative;
}
.territory .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
  margin-bottom: 32px;
}
.territory h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  max-width: 15ch;
}
.territory h3 em { font-style: italic; color: var(--olive); }
.territory p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 32px;
}
.territory ul {
  list-style: none;
  padding: 0; margin: 0 0 auto 0;
  border-top: 1px solid var(--line-soft);
}
.territory ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 14px;
  letter-spacing: 0.005em;
}
.territory ul li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

/* First territory (Patrimônio & Relacionamentos / matrimonial) — same olive
   as Método section, used to focus attention on this card and separate it
   from the second (light) card. */
.territory--olive {
  background: var(--olive);
  color: var(--paper);
}
.territory--olive .num { color: var(--gold); }
.territory--olive h3 em { color: var(--gold); }
.territory--olive p { color: color-mix(in oklab, var(--paper) 78%, transparent); }
.territory--olive ul { border-top-color: var(--on-dark-line); }
.territory--olive ul li { border-bottom-color: var(--on-dark-line); color: color-mix(in oklab, var(--paper) 82%, transparent); }
.territory--olive ul li::before { background: var(--gold); }

@media (max-width: 820px) {
  .territories-grid { grid-template-columns: 1fr; }
  .territory { min-height: auto; }
}

/* =========================================================
   MOMENTOS DA VIDA
   ========================================================= */
.moments {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(32px, 5vh, 48px);
}
.moment {
  background: var(--paper-alt);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  transition: background .3s ease;
  text-decoration: none;
  color: inherit;
}
.moment:hover { background: var(--paper); }
.moment .m-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.moment .m-tag {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
.moment .m-tag svg { width: 12px; height: 12px; transition: transform .25s ease; }
.moment:hover .m-tag svg { transform: translateX(4px); }
@media (max-width: 820px) { .moments-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .moments-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PRODUTOS — SEÇÃO EDITORIAL
   ========================================================= */
.product {
  border-top: 1px solid var(--line-soft);
}
.product:first-of-type { border-top: 0; }

.product-side .idx { color: var(--olive); }
.product-side .tag-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive-deep);
  background: var(--paper-alt);
}
.product-name em { color: var(--olive); }
.product-impact { border-left-color: var(--sage); }
.product-block h4 { color: var(--olive); }
.product-block .benefit {
  background: var(--paper);
  border-left: 3px solid var(--olive);
}
.product .btn--olive { background: var(--olive); }
.product .btn--olive:hover { background: var(--olive-deep); }

/* Dark "terroso" alternated surface — every other solution card */
.product--dark {
  background: var(--surface-dark);
  color: var(--on-dark);
  border-top-color: transparent;
}
.product--dark .product-side .idx { color: var(--gold); }
.product--dark .product-side .tag-pill {
  color: var(--gold-deep);
  background: var(--surface-dark-alt);
}
.product--dark .product-name em { color: var(--gold); }
.product--dark .product-impact { border-left-color: var(--gold); color: var(--on-dark-soft); }
.product--dark .product-block h4 { color: var(--gold); }
.product--dark .product-block p { color: var(--on-dark-soft); }
.product--dark .product-block ul li { border-bottom-color: var(--on-dark-line); color: var(--on-dark-soft); }
.product--dark .product-block .benefit {
  background: var(--surface-dark-alt);
  border-left: 3px solid var(--gold);
}
.product--dark .product-block .benefit p { color: var(--on-dark); }
.product--dark .product-cta { border-top-color: var(--on-dark-line); }
.product--dark .product-cta .cta-note { color: var(--on-dark-soft); }
.product--dark .btn--olive { background: var(--gold); color: var(--surface-dark); }
.product--dark .btn--olive:hover { background: var(--gold-deep); }
.product-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 6vw, 80px);
  padding: clamp(64px, 10vh, 112px) 0;
}
.product-side {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 96px;
  align-self: start;
  height: fit-content;
}
.product-side .idx {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
}
.product-body { max-width: 780px; }
.product-name {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.product-name em { font-style: italic; }
.product-impact {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.3;
  color: var(--ink-soft);
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--sage);
  max-width: 42ch;
}
.product-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  margin-bottom: 48px;
}
.product-blocks .full { grid-column: 1 / -1; }
.product-block h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-block p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}
.product-block ul {
  list-style: none;
  padding: 0; margin: 0;
  columns: 2;
  column-gap: 40px;
}
.product-block ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-soft);
  break-inside: avoid;
}
.product-block .benefit {
  padding: 32px;
  border-radius: 3px;
}
.product-block .benefit p {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 32ch;
}
.product-cta {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.product-cta .cta-note {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 24ch;
  line-height: 1.4;
}
@media (max-width: 820px) {
  .product-inner { grid-template-columns: 1fr; gap: 28px; padding: clamp(48px, 8vh, 72px) 0; }
  .product-side {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0 2px;
  }
  .product-blocks { grid-template-columns: 1fr; gap: 40px; }
  .product-block ul { columns: 1; }
}
@media (max-width: 480px) {
  .product-inner { padding: clamp(40px, 7vh, 56px) 0; }
  .product-side { gap: 10px; }
  .product-side .idx { font-size: 17px; }
  .product-side .tag-pill { padding: 5px 12px; font-size: 10px; }
}

/* =========================================================
   MÉTODO
   ========================================================= */
.method {
  background: var(--olive);
  color: var(--paper);
}
.method .eyebrow { color: color-mix(in oklab, var(--paper) 65%, transparent); }
.method .roman { color: color-mix(in oklab, var(--paper) 55%, transparent); }
.method h2 { color: var(--paper); }
.method h2 em { color: color-mix(in oklab, var(--paper) 85%, transparent); }
.method .h-sub { color: color-mix(in oklab, var(--paper) 70%, transparent); }
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in oklab, var(--paper) 15%, transparent);
  border-top: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
}
.step {
  background: var(--olive);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 3vw, 40px);
  min-height: 340px;
  display: flex; flex-direction: column;
}
.step .s-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
  margin-bottom: 32px;
}
.step h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--paper) 78%, transparent);
  max-width: 32ch;
}
@media (max-width: 820px) {
  .method-steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
}

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about-photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.about-photo .photo-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 8px 12px;
  background: color-mix(in oklab, var(--ink) 92%, transparent);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  margin: 0;
}
.about-body h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  max-width: 18ch;
}
.about-body h3 em { font-style: italic; color: var(--olive); }
.about-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 20px;
}
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.about-credentials .cred h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.about-credentials .cred p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--olive); }
.faq-q h4 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 40ch;
}
.faq-q .plus {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink-soft);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-q .plus::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 0 32px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  background: var(--clay-deep);
  color: var(--paper);
  padding: clamp(96px, 18vh, 200px) 0;
  text-align: left;
}
.final-cta .wrap { display: grid; gap: clamp(40px, 6vh, 72px); }
.final-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta .row {
  display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
}
.final-cta .row p {
  font-size: 15px;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  max-width: 40ch;
  line-height: 1.55;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg);
  padding: 56px 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-grid h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footer-grid a:hover { color: var(--olive); }
.footer-about p { margin-top: 20px; max-width: 42ch; }
.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
