/* ============================================================
   WE MAP IT — LANDING PAGE
   Estilo convertido do Claude Design para HTML/CSS estático
   ============================================================ */

/* ---------- FONTES ---------- */
@font-face {
  font-family: 'Stack Sans Notch';
  src: url('../assets/fonts/StackSansNotch-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Stack Sans Notch';
  src: url('../assets/fonts/StackSansNotch-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Stack Sans Notch';
  src: url('../assets/fonts/StackSansNotch-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Stack Sans Notch';
  src: url('../assets/fonts/StackSansNotch-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../assets/fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../assets/fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Kapakana';
  src: url('../assets/fonts/Kapakana-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  --font-sans: 'Stack Sans Notch', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-script: 'Kapakana', cursive;

  --black: #111111;
  --off-white: #F7F7F5;
  --gray: #909D9D;
  --green: #697861;
  --green-dark: #3D4A38;
  --lime: #9FFF6B;
  --orange: #F2924A;
  --peach: #FFD9C1;
  --gold: #DDBA37;
  --card-hover: #181815;

  --line-light: rgba(247,247,245,0.15);
  --line-light-soft: rgba(247,247,245,0.12);
  --line-dark: rgba(17,17,17,0.15);

  --page-x: 48px;
  --ease: cubic-bezier(0.25,0.1,0.25,1);
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes wm-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap { max-width: 1240px; margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }

/* eyebrow / microtipografia */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.eyebrow.on-dark { color: rgba(247,247,245,0.45); }
.eyebrow.on-light { color: var(--gray); }

.script { font-family: var(--font-script); }
.serif { font-family: var(--font-serif); }

/* Instrument Serif sempre em maiúsculas */
.serif,
.hero-tagline,
.pain h2,
.pain-note,
.method-step .num,
.method-note,
.trust h2,
.proof-headline,
.process-row .num,
.process-note,
.faq h2,
.faq-q .q-mark,
.footer-tagline {
  text-transform: uppercase;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  transition: opacity 300ms var(--ease);
}
.btn:hover { opacity: 0.8; }

.btn-sm { font-size: 10.5px; padding: 12px 24px; }
.btn-md { font-size: 11px; padding: 18px 36px; }
.btn-lg { font-size: 12px; padding: 22px 52px; }

.link-underline {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.7);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 11px;
  transition: color 300ms var(--ease);
}
.link-underline:hover { color: var(--off-white); }

/* ---------- 1. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--page-x);
  height: 68px;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  justify-self: start;
}
.brand img { height: 34px; width: auto; display: block; }
.brand span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
}
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.7);
  text-decoration: none;
  transition: color 300ms var(--ease);
}
.main-nav a:hover { color: var(--off-white); }
.site-header .btn { justify-self: end; }

/* ---------- 2. HERO ---------- */
.hero {
  background:
    linear-gradient(rgba(17,17,17,0.8), rgba(17,17,17,0.8)),
    url('../assets/images/hero.jpg') center / cover no-repeat;
  padding: 0 var(--page-x);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 0 100px;
  animation: wm-fade-up 600ms var(--ease) both;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 18px;
  margin-bottom: 72px;
  font-size: 10px;
}
.hero-meta .code {
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.5);
}
.hero-meta .coords {
  letter-spacing: 0.25em;
  color: rgba(247,247,245,0.4);
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 88px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 78px;
  max-width: 1050px;
  text-wrap: balance;
}
.hero h1 .script {
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--lime);
  font-size: 104px;
  line-height: 0.5;
  vertical-align: -8px;
}
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}
.hero-lead {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.75);
  max-width: 520px;
  margin: 0 0 14px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--lime);
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: end;
  flex-wrap: wrap;
}
.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.45);
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
  margin-top: 88px;
}

/* ---------- 3. VALIDAÇÃO DA DOR ---------- */
.pain {
  background: var(--off-white);
  padding: 110px var(--page-x);
  color: var(--black);
}
.pain h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 62px;
  line-height: 1.08;
  color: var(--black);
  margin: 0 0 56px;
  text-wrap: balance;
}
.pain h2 em { color: var(--green); }
.pain-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.pain-cols p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(17,17,17,0.75);
  margin: 0 0 18px;
}
.pain-cols p:last-child { margin-bottom: 0; }
.pain-list-col { margin-top: 56px; }
.pain-list { border-top: 1px solid var(--line-dark); }
.pain-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line-dark);
}
.pain-item .mark { font-size: 16px; color: var(--gray); }
.pain-item span:last-child {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(17,17,17,0.8);
}
.pain-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--black);
  margin: 32px 4px 0;
}

/* ---------- 4. POSICIONAMENTO ---------- */
.position {
  background: var(--black);
  padding: 120px var(--page-x);
}
.position h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 28px;
  max-width: 800px;
  text-wrap: balance;
}
.position h2 .serif {
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--lime);
}
.position .intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247,247,245,0.7);
  max-width: 620px;
  margin: 0 0 64px;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-light);
}
.compare-col { padding: 30px 36px 14px; }
.compare-col.is-not { border-right: 1px solid var(--line-light); }
.compare-col.is-yes { background: rgba(247,247,245,0.04); }
.compare-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}
.compare-col.is-not .compare-title { color: rgba(247,247,245,0.45); }
.compare-col.is-yes .compare-title { color: #FFFFFF; }
.compare-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light-soft);
  font-size: 14.5px;
}
.compare-col.is-not .compare-row { color: rgba(247,247,245,0.55); }
.compare-col.is-not .compare-row .mark { color: var(--green-dark); }
.compare-col.is-yes .compare-row { color: var(--off-white); }
.compare-col.is-yes .compare-row .mark { color: var(--lime); }

/* ---------- 5. MÉTODO MAPA ---------- */
.method {
  background: var(--off-white);
  padding: 120px var(--page-x);
  color: var(--black);
}
.method-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 26px;
}
.method-head .eyebrow { margin-bottom: 0; }
.method-head .grid-note {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gray);
}
.method h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 24px;
}
.method h2 .serif {
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--green);
  font-size: 1.1em;
}
.method .intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(17,17,17,0.75);
  max-width: 600px;
  margin: 0 0 72px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
}
.method-step {
  padding: 36px 32px 44px;
  border-right: 1px solid var(--line-dark);
  transition: background 300ms var(--ease);
}
.method-step:last-child { border-right: none; }
.method-step:hover { background: rgba(17,17,17,0.03); }
.method-step .num {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1;
  color: var(--green-dark);
  margin-bottom: 30px;
}
.method-step .rule {
  width: 28px;
  border-top: 1px solid rgba(17,17,17,0.3);
  margin-bottom: 26px;
}
.method-step h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 14px;
}
.method-step p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(17,17,17,0.7);
  margin: 0;
}
.method-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--black);
  margin: 64px 0 0;
  text-align: center;
}
.method-note span { color: var(--green); }

/* ---------- 6. SERVIÇOS ---------- */
.services {
  background: var(--black);
  padding: 120px var(--page-x);
}
.services h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 24px;
  max-width: 900px;
}
.services h2 .serif {
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--lime);
}
.services .intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247,247,245,0.7);
  max-width: 600px;
  margin: 0 0 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.service-card {
  background: var(--black);
  padding: 44px 40px 48px;
  transition: background 300ms var(--ease);
}
.service-card:hover { background: var(--card-hover); }
.service-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 26px;
}
.service-card .code {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--lime);
}
.service-card .plus { font-size: 14px; color: rgba(247,247,245,0.35); }
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 30px;
  color: var(--off-white);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,247,245,0.65);
  margin: 0;
}
.services-cta {
  margin-top: 52px;
  text-align: center;
}
.services-cta a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.75);
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: color 300ms var(--ease);
}
.services-cta a:hover { color: var(--gold); }

/* ---------- 7. POR QUE CONFIAR ---------- */
.trust {
  background: var(--black);
  padding: 0 var(--page-x) 120px;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 88px;
  align-items: start;
}
.trust h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.12;
  color: var(--off-white);
  margin: 0 0 48px;
  text-wrap: pretty;
}
.trust h2 em { color: var(--lime); }
.trust-list { border-top: 1px solid var(--line-light); }
.trust-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light-soft);
}
.trust-item .mark { color: var(--lime); font-size: 15px; }
.trust-item span:last-child {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247,247,245,0.85);
}
.proof {
  padding: 52px 48px;
  margin-top: 80px;
  background: var(--peach);
  color: var(--black);
}
.proof .eyebrow { color: rgba(17,17,17,0.5); margin-bottom: 28px; }
.proof-headline {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 22px;
}
.proof .rule {
  width: 28px;
  border-top: 1px solid rgba(17,17,17,0.35);
  margin-bottom: 22px;
}
.proof p:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17,17,17,0.75);
  margin: 0;
}

/* ---------- 8. PROCESSO ---------- */
.process {
  background: var(--off-white);
  padding: 120px var(--page-x);
  color: var(--black);
}
.process h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 80px;
  max-width: 820px;
}
.process h2 .serif {
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--green);
}
.process-row {
  display: grid;
  grid-template-columns: 110px 300px 1fr;
  gap: 40px;
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
}
.process-row .num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--green);
  line-height: 1;
}
.process-row h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}
.process-row p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17,17,17,0.75);
  margin: 0;
}
.process-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--black);
  margin: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 44px;
}
.process-note span { color: var(--green); }

/* ---------- 9. FAQ ---------- */
.faq {
  background: var(--off-white);
  padding: 0 var(--page-x) 120px;
  color: var(--black);
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  padding-top: 100px;
}
.faq h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: var(--black);
  margin: 0 0 56px;
  text-wrap: pretty;
}
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 300ms var(--ease);
}
.faq-q:hover { opacity: 0.7; }
.faq-q .q-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--black);
}
.faq-q .q-mark {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--green);
  line-height: 1;
  flex: none;
}
.faq-a { display: none; }
.faq-item.is-open .faq-a { display: block; }
.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(17,17,17,0.75);
  margin: 0;
  padding: 0 44px 28px 4px;
}

/* ---------- 10. OFERTA FINAL ---------- */
.final {
  position: relative;
  background: var(--black);
  padding: 140px var(--page-x);
  overflow: hidden;
}
.final-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: 90%;
  opacity: 0.07;
  pointer-events: none;
  filter: grayscale(1) brightness(1.6);
}
.final-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.final .eyebrow { margin-bottom: 32px; }
.final h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 30px;
  text-wrap: balance;
}
.final h2 .serif {
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--lime);
}
.final .intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(247,247,245,0.75);
  max-width: 620px;
  margin: 0 auto 52px;
}
.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.whats-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(247,247,245,0.75);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 300ms var(--ease);
}
.whats-link:hover { color: var(--gold); }
.final-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(247,247,245,0.45);
  margin: 10px 0 0;
}

/* ---------- 11. RODAPÉ ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-light-soft);
  padding: 80px var(--page-x) 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-light-soft);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand img:first-child { height: 40px; width: auto; display: block; }
.footer-brand img:last-child { height: 24px; width: auto; display: block; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(247,247,245,0.7);
  margin: 0;
}
.footer-navs { display: flex; gap: 72px; }
.footer-navs nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-navs .nav-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.4);
  margin-bottom: 4px;
}
.footer-navs a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(247,247,245,0.75);
  text-decoration: none;
  transition: color 300ms var(--ease);
}
.footer-navs a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0 28px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.45);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1100px) {
  :root { --page-x: 32px; }
  .hero h1 { font-size: 66px; }
  .hero h1 .script { font-size: 78px; }
  .pain h2 { font-size: 48px; }
  .position h2, .final h2 { font-size: 44px; }
  .method h2, .services h2 { font-size: 54px; }
  .process h2 { font-size: 42px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2n) { border-right: none; }
  .method-step:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .trust-inner { grid-template-columns: 1fr; gap: 56px; }
  .proof { margin-top: 0; }
  .hero-cols, .pain-cols { gap: 48px; }
}

@media (max-width: 860px) {
  :root { --page-x: 24px; }

  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 14px var(--page-x);
    gap: 12px;
  }
  .main-nav { display: none; }
  .site-header .btn { justify-self: end; }

  .hero-inner { padding: 64px 0 72px; }
  .hero-meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
  }
  .hero h1 { font-size: 44px; line-height: 1.14; margin-bottom: 40px; }
  .hero h1 .script { font-size: 52px; line-height: 0.7; vertical-align: -2px; }
  .hero-cols { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero-actions { justify-self: start; gap: 20px; }
  .hero-pillars { margin-top: 56px; gap: 10px; }

  .pain { padding: 72px var(--page-x); }
  .pain h2 { font-size: 34px; margin-bottom: 40px; }
  .pain-cols { grid-template-columns: 1fr; gap: 40px; }
  .pain-list-col { margin-top: 0; }

  .position, .services, .method { padding: 72px var(--page-x); }
  .position h2, .final h2, .method h2, .services h2 { font-size: 32px; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.is-not { border-right: none; border-bottom: 1px solid var(--line-light); }

  .method-grid { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .method-step:last-child { border-bottom: none; }
  .method-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .method-note { font-size: 19px; margin-top: 44px; text-align: left; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 26px 36px; }
  .service-card h3 { font-size: 24px; }

  .trust { padding: 0 var(--page-x) 72px; }
  .trust-inner { padding-top: 64px; gap: 44px; }
  .trust h2 { font-size: 30px; margin-bottom: 32px; }
  .proof { padding: 36px 28px; }
  .proof-headline { font-size: 26px; }

  .process { padding: 72px var(--page-x); }
  .process h2 { font-size: 30px; margin-bottom: 48px; }
  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .process-row .num { font-size: 34px; }
  .process-note { font-size: 18px; padding-top: 32px; }

  .faq { padding: 0 var(--page-x) 72px; }
  .faq-inner { padding-top: 64px; }
  .faq h2 { font-size: 28px; margin-bottom: 36px; }
  .faq-q .q-text { font-size: 15px; }
  .faq-a p { padding-right: 24px; }

  .final { padding: 84px var(--page-x); }
  .final-watermark { width: 380px; }
  .final .intro { margin-bottom: 40px; }
  .btn-lg { font-size: 11px; padding: 18px 32px; }

  .site-footer { padding: 56px var(--page-x) 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-navs { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 36px; }
  .hero h1 .script { font-size: 42px; line-height: 0.7; }
  .brand span { display: none; }
}

/* ============================================================
   MOTION — cursor customizado + revelação de palavras
   ============================================================ */

/* ---- Efeito 1: cursor circular com LERP + inversão de cor ---- */
/* cursor:none no body e também nos clicáveis (herdam 'pointer' da UA stylesheet) */
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor [data-cursor] { cursor: none; }

/* CRÍTICO: mix-blend-mode e position:fixed no MESMO elemento (a raiz .cursor),
   sem filho e sem will-change — assim o difference mistura com o fundo da
   página e o círculo mostra sempre o negativo exato da cor atrás dele. */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  transition: width .35s cubic-bezier(.2,.8,.2,1),
              height .35s cubic-bezier(.2,.8,.2,1),
              margin .35s cubic-bezier(.2,.8,.2,1);
}
.cursor.is-hover {
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
}

/* ---- Efeito 2: revelação de palavras no scroll ---- */
/* padding/margem verticais dão espaço p/ acentos maiúsculos (É, Á, Ã)
   e descenders sem cortar, e sem alterar o entrelinhamento */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.18em 0 0.2em;
  margin: -0.18em 0 -0.2em;
}
.word__inner {
  display: inline-block;
  transform: translateY(130%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
[data-reveal].is-in .word__inner { transform: translateY(0); }

/* ---- Toque: restaura cursor nativo, sem ring ---- */
@media (hover: none) {
  .cursor { display: none; }
  body.has-cursor { cursor: auto; }
}

/* ---- Movimento reduzido: sem cursor, textos já na posição final ---- */
@media (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
  body.has-cursor { cursor: auto; }
  .word { overflow: visible; padding: 0; margin: 0; }
  .word__inner { transform: none; transition: none; }
}
