:root {
  --ink: #071421;
  --ink-2: #0d2132;
  --petrol: #2c3d51;
  --aqua: #48a9a6;
  --aqua-soft: #8dd4cf;
  --sand: #f4f0e9;
  --sand-2: #e7dfd4;
  --coral: #d85c32;
  --white: #ffffff;
  --black: #111111;
  --line-dark: rgba(255, 255, 255, .16);
  --line-light: rgba(7, 20, 33, .14);
  --font-display: "Scaver", "Bodoni Moda", Didot, "Times New Roman", serif;
  --font-sans: "Poppins", Arial, sans-serif;
  --container: min(calc(100vw - 64px), 1140px);
  --header-h: 92px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/*
  Para publicação, inclua a Scaver licenciada em assets/fonts/ e habilite
  @font-face. O protótipo usa Bodoni Moda como fallback editorial.
*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: #040b12;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--ink); background: var(--aqua); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

/* Campo global de luz */
.global-light-field {
  --pointer-x: 0px;
  --pointer-y: 0px;
  --scroll-y: 0px;
  position: fixed;
  z-index: 5;
  inset: -18vmax;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--scroll-y)), 0);
  will-change: transform;
}
.global-light {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform, opacity;
}
.global-light--aqua {
  width: 82vmax;
  height: 28vmax;
  left: -26vmax;
  top: -2vmax;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(72,169,166,.62) 0%,
    rgba(72,169,166,.34) 25%,
    rgba(72,169,166,.10) 52%,
    transparent 72%);
  filter: blur(38px);
  opacity: .86;
  animation: global-aqua-drift 10s cubic-bezier(.45,.05,.25,1) infinite alternate;
}
.global-light--coral {
  width: 72vmax;
  height: 26vmax;
  right: -30vmax;
  top: 30vmax;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(216,92,50,.58) 0%,
    rgba(216,92,50,.30) 27%,
    rgba(216,92,50,.08) 54%,
    transparent 74%);
  filter: blur(42px);
  opacity: .78;
  animation: global-coral-drift 12s cubic-bezier(.45,.05,.25,1) infinite alternate;
}
.global-light--beam {
  width: 130vmax;
  height: 11vmax;
  left: -44vmax;
  top: 26vmax;
  border-radius: 999px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(72,169,166,0) 8%,
    rgba(72,169,166,.18) 20%,
    rgba(141,212,207,.46) 34%,
    rgba(255,255,255,.26) 43%,
    rgba(216,92,50,.50) 55%,
    rgba(216,92,50,.16) 70%,
    transparent 88%);
  filter: blur(24px);
  opacity: .92;
  animation: global-beam-sweep 8.5s cubic-bezier(.55,.05,.3,1) infinite alternate;
}
.global-light--beam::after {
  content: "";
  position: absolute;
  inset: 31% 4%;
  border-radius: inherit;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.24) 0 1px, transparent 1px 8px);
  opacity: .32;
  filter: blur(1px);
}
.global-light--haze {
  width: 52vmax;
  height: 52vmax;
  left: 30vw;
  top: 3vh;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,.18) 0%,
    rgba(141,212,207,.10) 30%,
    rgba(72,169,166,.04) 52%,
    transparent 74%);
  filter: blur(62px);
  opacity: .72;
  animation: global-haze-breathe 7.5s ease-in-out infinite alternate;
}
.global-light--flare {
  width: 28vmax;
  height: 28vmax;
  left: 58vw;
  top: 18vh;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,.36) 0%,
    rgba(72,169,166,.22) 17%,
    rgba(72,169,166,.05) 46%,
    transparent 70%);
  filter: blur(28px);
  opacity: .62;
  animation: global-flare-orbit 9s ease-in-out infinite alternate;
}
@keyframes global-aqua-drift {
  0% { transform: translate3d(-8vw, -3vh, 0) rotate(-14deg) scale(.88); opacity: .62; }
  48% { transform: translate3d(38vw, 18vh, 0) rotate(4deg) scale(1.16); opacity: 1; }
  100% { transform: translate3d(88vw, 54vh, 0) rotate(-6deg) scale(.82); opacity: .58; }
}
@keyframes global-coral-drift {
  0% { transform: translate3d(22vw, 20vh, 0) rotate(12deg) scale(.84); opacity: .55; }
  52% { transform: translate3d(-36vw, -4vh, 0) rotate(-7deg) scale(1.18); opacity: .96; }
  100% { transform: translate3d(-86vw, 44vh, 0) rotate(5deg) scale(.9); opacity: .62; }
}
@keyframes global-beam-sweep {
  0% { transform: translate3d(-30vw, -16vh, 0) rotate(-13deg) scaleX(.84); opacity: .42; }
  45% { transform: translate3d(30vw, 16vh, 0) rotate(-6deg) scaleX(1.12); opacity: 1; }
  100% { transform: translate3d(84vw, 52vh, 0) rotate(-12deg) scaleX(.9); opacity: .50; }
}
@keyframes global-haze-breathe {
  from { transform: translate3d(-10vw, -6vh, 0) scale(.78); opacity: .30; }
  to { transform: translate3d(18vw, 14vh, 0) scale(1.34); opacity: .82; }
}
@keyframes global-flare-orbit {
  from { transform: translate3d(-22vw, 4vh, 0) scale(.72); opacity: .28; }
  to { transform: translate3d(19vw, 32vh, 0) scale(1.28); opacity: .78; }
}

.page-noise {
  position: fixed;
  z-index: 80;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.cursor-light {
  position: fixed;
  z-index: 6;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,169,166,.18), rgba(216,92,50,.06) 40%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .5s;
}
body:hover .cursor-light { opacity: 1; }

/* Base editorial */
main { position: relative; }
section, footer { position: relative; z-index: 10; }
.section-dark { color: var(--white); background: rgba(4,11,18,.78); }
.section-light { color: var(--ink); background: rgba(244,240,233,.965); }
.section-blue { color: var(--white); background: rgba(35,58,77,.95); }
.section-coral { color: var(--white); background: rgba(177,67,37,.965); }

.eyebrow {
  margin: 0;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.2vw, 9.7rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.055em;
}
.display-title em { font-weight: 400; color: var(--aqua); }
.section-light .display-title em { color: var(--coral); }
.section-number {
  font-size: 0.9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .55;
}
.section-heading {
  width: var(--container);
  margin: 0 auto;
  padding: 13vh 0 7vh;
}
.section-heading .eyebrow { margin-top: 6vh; margin-bottom: 2.2vh; }
.section-heading--wide .display-title { max-width: 1200px; }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) 1.55fr;
  gap: 5vw;
  align-items: end;
}
.section-heading--split .eyebrow { margin-top: 4vh; }
.text-link {
  display: inline-flex;
  gap: .7em;
  align-items: center;
  width: max-content;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  transition: gap .3s var(--ease), opacity .3s;
}
.text-link:hover { gap: 1.1em; opacity: .72; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8em;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--light:hover { background: var(--white); color: var(--ink); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Cabeçalho */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.site-header.is-scrolled {
  background: rgba(7,20,33,.77);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
}
.brand { display: inline-flex; width: min(140px, 24vw); max-width: 140px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.35vw, 44px); }
.desktop-nav a, .header-cta {
  position: relative;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav a::after, .header-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.desktop-nav a:hover::after, .header-cta:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 28px; }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px 0;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
}
.menu-toggle i, .menu-toggle i::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.menu-toggle i { position: relative; }
.menu-toggle i::after { content: ""; position: absolute; top: 6px; }
.menu-open .menu-toggle i { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle i::after { transform: translateY(-6px) rotate(-90deg); }

.menu-overlay {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(260px, 35vw) 1fr;
  align-items: center;
  padding: calc(var(--header-h) + 4vh) 7vw 5vh;
  background: var(--sand);
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, visibility .35s;
}
.menu-overlay.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.menu-film { position: relative; height: min(69vh, 760px); overflow: hidden; background: var(--ink); }
.menu-film figure { position: absolute; inset: 0; margin: 0; transform: translateY(105%); transition: transform .45s var(--ease); }
.menu-overlay.is-open .menu-film figure:first-child { transform: translateY(0); }
.menu-film img { width: 100%; height: 100%; object-fit: cover; }
.overlay-nav { display: grid; padding-left: 7vw; }
.overlay-nav a {
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 5rem);
  line-height: .94;
  transition: color .25s, padding-left .35s var(--ease);
}
.overlay-nav a span { font-family: var(--font-sans); font-size: .62rem; letter-spacing: .16em; opacity: .45; }
.overlay-nav a:hover { color: var(--coral); padding-left: 16px; }
.overlay-note {
  position: absolute;
  right: 7vw;
  bottom: 3.2vh;
  margin: 0;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: calc(var(--header-h) + 7.5vh) 4.5vw 4.5vh;
  overflow: visible;
  display: grid;
  grid-template-rows: auto auto;
  align-items: start;
  background: linear-gradient(180deg, #06121d 0%, #071421 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(72,169,166,.12) 0%, transparent 42%),
    linear-gradient(90deg, rgba(3,15,25,.90) 0%, rgba(3,15,25,.62) 48%, rgba(3,15,25,.32) 100%);
  pointer-events: none;
  z-index: -1;
}
.hero-media {
  position: absolute;
  inset: -1%;
  z-index: -2;
  overflow: hidden;
  background: #030a12;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .44;
  filter: saturate(1.06) contrast(1.08) brightness(.98);
  transform: scale(1.04);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,15,25,.90) 0%, rgba(3,15,25,.60) 48%, rgba(3,15,25,.30) 100%);
}
.hero-lights {
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  pointer-events: none;
}
.hero-light {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.hero-light--aqua {
  left: -12%;
  bottom: 8%;
  width: 56vw;
  height: 32vw;
  max-width: 760px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(76,190,184,.94) 0%, rgba(76,190,184,.66) 24%, rgba(76,190,184,.18) 52%, transparent 72%);
  filter: blur(72px) brightness(1.35) saturate(1.25);
  opacity: .72;
  animation: hero-aqua-drift 12s ease-in-out infinite alternate;
}
.hero-light--coral {
  top: 2%;
  right: -8%;
  width: 42vw;
  height: 28vw;
  max-width: 640px;
  max-height: 420px;
  background: radial-gradient(circle, rgba(232,106,60,.96) 0%, rgba(232,106,60,.62) 24%, rgba(232,106,60,.16) 52%, transparent 72%);
  filter: blur(66px) brightness(1.25) saturate(1.2);
  opacity: .72;
  animation: hero-coral-drift 13s ease-in-out infinite alternate;
}
.hero-light--halo {
  top: 18%;
  right: 24%;
  width: 24vw;
  height: 24vw;
  max-width: 320px;
  max-height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.72) 0%, rgba(141,212,207,.16) 22%, rgba(72,169,166,.05) 46%, transparent 70%);
  filter: blur(58px) brightness(1.2);
  opacity: .68;
  animation: hero-halo-breathe 10s ease-in-out infinite alternate;
}
.hero-light--glow {
  top: 22%;
  left: 22%;
  width: 20vw;
  height: 20vw;
  max-width: 280px;
  max-height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.64) 0%, rgba(216,92,50,.16) 24%, rgba(72,169,166,.04) 48%, transparent 70%);
  filter: blur(50px) brightness(1.2);
  opacity: .6;
  animation: hero-glow-sway 9s ease-in-out infinite alternate;
}
@keyframes hero-aqua-drift {
  0% { transform: translate3d(-2vw, 0, 0) scale(.94); opacity: .56; }
  50% { transform: translate3d(10vw, -3vh, 0) scale(1.08); opacity: .74; }
  100% { transform: translate3d(18vw, 4vh, 0) scale(.98); opacity: .66; }
}
@keyframes hero-coral-drift {
  0% { transform: translate3d(0, -2vh, 0) scale(.95); opacity: .56; }
  50% { transform: translate3d(-7vw, 4vh, 0) scale(1.08); opacity: .77; }
  100% { transform: translate3d(-12vw, 8vh, 0) scale(.96); opacity: .66; }
}
@keyframes hero-halo-breathe {
  from { transform: translate3d(-2vw, -1.5vh, 0) scale(.86); } 
  to { transform: translate3d(2vw, 2vh, 0) scale(1.12); }
}
@keyframes hero-glow-sway {
  from { transform: translate3d(-1vw, 0, 0) scale(.88); }
  to { transform: translate3d(3vw, 2vh, 0) scale(1.08); }
}
.hero-index {
  position: absolute;
  right: 1vw;
  top: 12vh;
  font-family: var(--font-display);
  font-size: clamp(9rem, 22vw, 27rem);
  line-height: .7;
  opacity: .038;
  letter-spacing: -.1em;
  white-space: nowrap;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: min(92vw, 1140px);
  padding-right: 2vw;
  padding-bottom: .8rem;
}
.hero-copy .eyebrow {
  margin-left: 0;
  margin-bottom: .85rem;
  color: var(--aqua-soft);
}
.hero h1 {
  margin: 0;
  max-width: min(62vw, 980px);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .84;
}
.hero-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}
.hero-line--top { font-size: clamp(3.1rem, 5.2vw, 6.6rem); margin-left: 1.4vw; }
.hero-line--middle { font-size: clamp(3.9rem, 12.5vw, 8rem); margin-left: 14vw; color: var(--sand); }
.hero-line--bottom { font-size: clamp(3.2rem, 5.3vw, 6.8rem); margin-left: -.3vw; color: var(--aqua); }
.hero-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) 1fr;
  gap: .45rem 5vw;
  align-items: flex-start;
  padding: .08rem 0 0;
  margin-top: .35rem;
}
.hero-intro { max-width: 760px; }
.hero-intro > p:first-child { margin: 0 0 .9rem; max-width: 720px; font-size: clamp(.94rem, 1.1vw, 1.1rem); color: rgba(255,255,255,.76); }
.hero-services { margin: .9rem 0 0; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--aqua-soft); }
.hero-services i { font-style: normal; opacity: .55; margin: 0 .35em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: flex-end; }

.hero-problem-transition {
  position: relative;
  height: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}
.hero-problem-transition::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  top: -80px;
  height: 160px;
  opacity: .92;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 22% 48%,
      rgba(72, 169, 166, .58) 0%,
      rgba(72, 169, 166, .24) 34%,
      transparent 62%
    ),
    radial-gradient(
      ellipse at 72% 46%,
      rgba(231, 126, 80, .24) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(3, 15, 25, 0) 0%,
      rgba(3, 15, 25, .72) 48%,
      rgba(3, 15, 25, 0) 100%
    );
  filter: blur(24px) brightness(1.15) saturate(1.1);
  mix-blend-mode: screen;
  transform: translateZ(0);
  mask-image: linear-gradient(180deg, transparent 0%, black 24%, black 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 24%, black 76%, transparent 100%);
  animation: transitionSmoke 14s ease-in-out infinite;
}

@keyframes transitionSmoke {
  0%, 100% {
    transform: translate3d(-1.5%, 0, 0) scale(1);
    opacity: .78;
  }
  50% {
    transform: translate3d(1.5%, -6px, 0) scale(1.04);
    opacity: .95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-problem-transition::before {
    animation: none;
  }
}

/* Problema */
.problem {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(10vh, 12vh, 14vh) 4.5vw clamp(8vh, 10vh, 12vh);
  overflow: visible;
  color: var(--white);
  background: rgba(3,15,25,.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem::before {
  content: "";
  position: absolute;
  inset: -3%;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.1) 0%, transparent 20%),
    linear-gradient(180deg, rgba(3,15,25,.85) 0%, rgba(3,15,25,.46) 30%, rgba(3,15,25,.78) 55%, rgba(3,15,25,.9) 100%),
    url("../images/site/problem-desktop.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: .5;
  transform: scale(1.03);
  filter: blur(2px);
  z-index: 0;
}
.problem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,15,25,.12) 0%, rgba(3,15,25,.42) 100%);
  z-index: 0;
}
.problem-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1140px);
  max-width: 1140px;
  min-height: min(100vh, 920px);
  margin: 0 auto;
  padding: clamp(110px, 12vh, 170px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 4vw, 5rem);
  text-align: center;
}
.problem-section__header {
  width: 100%;
  text-align: center;
  margin-bottom: clamp(64px, 8vh, 110px);
}
.problem-intro {
  max-width: 760px;
  padding-top: 0;
  text-align: center;
  margin: 0 auto;
}
.problem-intro .section-number {
  display: block;
  margin-bottom: clamp(1.75rem, 2.5vw, 2.8rem);
  opacity: .78;
  letter-spacing: .18em;
}
.problem-intro .eyebrow {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  letter-spacing: .12em;
}
.problem-section__main {
  width: min(88vw, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(56px, 5vw, 92px);
  align-items: stretch;
}
.problem-hero {
  width: 100%;
  display: grid;
}
.problem-section__title-column {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}
.problem-heading {
  width: 100%;
  max-width: 650px;
  margin: 0;
  text-align: right;
}
.problem-heading .display-title {
  font-size: clamp(5rem, 6.9vw, 8.5rem);
  line-height: .87;
  letter-spacing: -.055em;
  max-width: 650px;
  margin: 0;
  text-align: right;
}
.problem-heading .display-title em { color: var(--coral); }
.problem-details {
  width: 100%;
  max-width: 560px;
  justify-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.problem-lead {
  width: 100%;
  margin: 0;
  padding-bottom: clamp(1.75rem, 2.5vw, 2.8rem);
  margin-bottom: clamp(1.5rem, 2vw, 2.6rem);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: clamp(0.25rem, 1.15vw, 1.7rem);
  line-height: 1.5;
  color: rgba(255,255,255,.84);
}
.problem-checklist {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vh, 28px);
  width: 100%;
}
.symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.12);
}
.symptom-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: clamp(18px, 2vh, 24px) 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  text-align: left;
}
.symptom-list li:last-child {
  border-bottom: none;
}
.symptom-list span {
  font-size: .7rem;
  letter-spacing: .22em;
  opacity: .75;
  color: var(--aqua-soft);
  padding-top: 0;
}

.parallax-image {
  min-height: clamp(28rem, 44vh, 56rem);
  background-image: url("../images/site/problema-central-parallax.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.parallax-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,15,25,.12), rgba(3,15,25,.72));
}

/* Jornadas */
.journeys { padding-bottom: 13vh; }
.journey-grid { width: var(--container); margin: 0 auto; display: grid; gap: 8vh; }
.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  min-height: 67vh;
  border-top: 1px solid var(--line-dark);
}
.journey-card--reverse { grid-template-columns: minmax(320px, .65fr) minmax(0, 1.35fr); }
.journey-card--reverse figure { order: 2; }
.journey-card figure { position: relative; margin: 0; overflow: hidden; min-height: 560px; background: var(--ink-2); }
.journey-card picture, .journey-card img { width: 100%; height: 100%; }
.journey-card img { object-fit: cover; transition: transform 1.2s var(--ease); }
.journey-card:hover img { transform: scale(1.025); }
.card-index {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(7,20,33,.5);
  backdrop-filter: blur(8px);
  font-size: .63rem;
  letter-spacing: .12em;
}
.journey-content { padding: 7vh 4vw; display: flex; flex-direction: column; justify-content: center; }
.journey-content .eyebrow { color: var(--aqua-soft); }
.journey-content h3 { margin: 2vh 0 2.5vh; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 5rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.journey-content p:not(.eyebrow) { margin: 0 0 4vh; color: rgba(255,255,255,.68); }

/* Como ajudamos */
.services { padding-bottom: 13vh; }
.service-stack { width: var(--container); margin: 0 auto; display: grid; gap: 7vh; }
.service-panel {
  display: grid;
  grid-template-columns: minmax(330px, .62fr) minmax(0, 1.38fr);
  min-height: 69vh;
  border-top: 1px solid var(--line-light);
}
.service-panel--reverse { grid-template-columns: minmax(0, 1.38fr) minmax(330px, .62fr); }
.service-panel--reverse .service-copy { order: 2; }
.service-copy { padding: 7vh 4vw 6vh 0; display: flex; flex-direction: column; justify-content: center; }
.service-panel--reverse .service-copy { padding: 7vh 0 6vh 4vw; }
.service-index { display: block; margin-bottom: 4vh; font-family: var(--font-display); font-size: clamp(4rem, 6vw, 7rem); color: var(--coral); line-height: .75; }
.service-copy h3 { margin: 2vh 0; font-family: var(--font-display); font-size: clamp(2.5rem, 4.6vw, 5.6rem); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.service-copy > p:not(.eyebrow) { max-width: 620px; margin: 0 0 3vh; }
.service-copy ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-light); }
.service-copy li { padding: 13px 0; border-bottom: 1px solid var(--line-light); font-size: .88rem; }
.service-panel figure { margin: 0; min-height: 630px; overflow: hidden; background: var(--ink); }
.service-panel picture, .service-panel img { width: 100%; height: 100%; }
.service-panel img { object-fit: cover; transition: transform 1.1s var(--ease); }
.service-panel:hover img { transform: scale(1.02); }

/* Metodologia */
.method { padding-bottom: 12vh; }
.pillars { width: var(--container); margin: 0 auto; border-top: 1px solid var(--line-dark); }
.pillar { border-bottom: 1px solid var(--line-dark); }
.pillar > button {
  width: 100%;
  min-height: 122px;
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.pillar-number { font-size: .68rem; letter-spacing: .16em; opacity: .5; }
.pillar-name { font-family: var(--font-display); font-size: clamp(3rem, 6.2vw, 7rem); line-height: .8; }
.pillar-arrow { justify-self: end; font-size: 1.4rem; transition: transform .35s var(--ease); }
.pillar.is-active .pillar-arrow { transform: rotate(90deg); }
.pillar-panel {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr);
  gap: 6vw;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .8s var(--ease), opacity .45s, padding .8s var(--ease);
}
.pillar.is-active .pillar-panel { max-height: 980px; opacity: 1; padding: 0 0 7vh 100px; }
.pillar-copy { align-self: center; }
.pillar-lead { margin: 0 0 2.5vh; font-family: var(--font-display); font-size: clamp(2rem, 3.3vw, 4rem); line-height: 1; }
.pillar-copy > p:not(.pillar-lead):not(.business-impact) { color: rgba(255,255,255,.67); }
.business-impact { margin: 4vh 0 0; padding: 2.6vh 0 0; border-top: 1px solid var(--line-dark); }
.business-impact span { display: block; margin-bottom: 1vh; color: var(--aqua-soft); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; }
.pillar-panel figure { margin: 0; height: 500px; overflow: hidden; background: var(--ink-2); }
.pillar-panel picture, .pillar-panel img { width: 100%; height: 100%; }
.pillar-panel img { object-fit: cover; }
.cycle-note { width: min(76vw, 1060px); margin: 8vh auto 0; text-align: center; font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 3.1rem); line-height: 1.1; color: rgba(255,255,255,.72); }

/* Resultados */
.outcomes { padding: 12vh 4.5vw 14vh; }
.outcomes > .section-number, .outcomes-head, .outcome-grid { width: var(--container); margin-left: auto; margin-right: auto; }
.outcomes-head { display: grid; grid-template-columns: .6fr 1.4fr; gap: 5vw; align-items: start; margin-top: 7vh; }
.outcomes-head .display-title { font-size: clamp(4rem, 7.5vw, 8.9rem); }
.outcome-grid { margin-top: 9vh; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.outcome-card { min-height: 330px; padding: 30px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; }
.outcome-card > span { font-size: .66rem; letter-spacing: .15em; opacity: .42; }
.outcome-card h3 { margin: auto 0 2.2vh; font-family: var(--font-display); font-size: clamp(2rem, 2.7vw, 3.4rem); font-weight: 400; line-height: .98; }
.outcome-card p { margin: 0; font-size: .9rem; }

/* Projetos */
.projects { padding: 12vh 4.5vw 11vh; overflow: hidden; }
.projects-header { width: var(--container); margin: 0 auto 7vh; }
.projects-header .eyebrow { margin: 5vh 0 2vh; color: var(--aqua-soft); }
.projects-header .display-title { max-width: 1270px; font-size: clamp(4rem, 7.7vw, 9rem); }
.project-film { width: var(--container); height: min(76vh, 830px); min-height: 660px; margin: 0 auto; position: relative; overflow: hidden; background: rgba(7,20,33,.35); }
.project-frame {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform .68s var(--ease), opacity .45s;
}
.project-frame.is-current { opacity: 1; transform: translateY(0); pointer-events: auto; }
.project-copy { padding: 6vh 4vw; overflow: auto; }
.project-copy > span { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-soft); }
.project-copy h3 { margin: 2vh 0 4vh; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 8rem); font-weight: 400; line-height: .8; }
.project-copy dl { margin: 0; }
.project-copy dl div { display: grid; grid-template-columns: 88px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.project-copy dl div:last-child { border-bottom: 1px solid var(--line-dark); }
.project-copy dt { font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-soft); }
.project-copy dd { margin: 0; font-size: .9rem; color: rgba(255,255,255,.72); }
.project-frame figure { margin: 0; overflow: hidden; }
.project-frame img { width: 100%; height: 100%; object-fit: cover; }
.project-controls { width: var(--container); margin: 3vh auto 0; display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.project-controls button { width: 44px; height: 44px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; transition: background .25s, color .25s; }
.project-controls button:hover { background: var(--white); color: var(--ink); }
.project-controls span { font-size: .67rem; letter-spacing: .14em; }

/* Origem */
.origin { min-height: 100svh; display: grid; grid-template-columns: 1.18fr .82fr; overflow: hidden; }
.origin-image { min-height: 100%; margin: 0; overflow: hidden; }
.origin-image picture, .origin-image img { width: 100%; height: 100%; }
.origin-image img { object-fit: cover; }
.origin-copy { padding: 14vh 5vw 10vh; display: flex; flex-direction: column; justify-content: center; }
.origin-copy .eyebrow { margin: 6vh 0 2vh; color: var(--aqua-soft); }
.origin-copy .display-title { font-size: clamp(3.5rem, 5.5vw, 7rem); }
.origin-copy > p:not(.eyebrow) { margin: 4vh 0; max-width: 690px; color: rgba(255,255,255,.7); }
.origin-values { display: grid; gap: 12px; padding-top: 3vh; border-top: 1px solid var(--line-dark); }
.origin-values span { font-family: var(--font-display); font-size: clamp(1.5rem, 2.2vw, 2.6rem); }
.origin-symbol { position: absolute; right: -7vw; bottom: -8vw; width: 28vw; opacity: .055; }

/* Diagnóstico */
.diagnostic { min-height: 96svh; padding: 12vh 5vw 9vh; overflow: hidden; }
.diagnostic-head { width: var(--container); margin: 0 auto; }
.diagnostic .eyebrow { margin-bottom: 2.5vh; }
.diagnostic .display-title { max-width: 1400px; font-size: clamp(4.5rem, 9vw, 11rem); }
.diagnostic-intro { max-width: 700px; margin: 4vh 0 0; font-size: clamp(1rem, 1.35vw, 1.25rem); }
.diagnostic-steps { width: var(--container); margin: 8vh auto 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.32); border-left: 1px solid rgba(255,255,255,.32); }
.diagnostic-steps li { min-height: 260px; padding: 26px; border-right: 1px solid rgba(255,255,255,.32); border-bottom: 1px solid rgba(255,255,255,.32); }
.diagnostic-steps li > span { display: block; margin-bottom: 7vh; font-size: .65rem; letter-spacing: .15em; opacity: .62; }
.diagnostic-steps strong { display: block; margin-bottom: 1.6vh; font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.6rem); font-weight: 400; line-height: .95; }
.diagnostic-steps p { margin: 0; color: rgba(255,255,255,.78); }
.diagnostic-bottom { width: var(--container); margin: 6vh auto 0; display: grid; grid-template-columns: 1fr auto; gap: 6vw; align-items: center; }
.diagnostic-bottom > p { margin: 0; max-width: 760px; color: rgba(255,255,255,.78); }
.diagnostic-button {
  min-width: 290px;
  min-height: 68px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.diagnostic-button:hover { background: var(--white); color: var(--coral); transform: translateY(-2px); }
.diagnostic-orbit {
  position: absolute;
  right: -22vw;
  top: -20vw;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.diagnostic-orbit::after { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; }

/* Footer */
.site-footer {
  padding: 9vh 5vw 4vh;
  background: #03090e;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 5vw; }
.footer-brand img { width: min(360px, 76vw); }
.footer-brand p { margin: 0; justify-self: end; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 3.6rem); max-width: 520px; text-align: right; }
.footer-columns { margin-top: 8vh; display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 6vw; border-top: 1px solid var(--line-dark); padding-top: 4vh; }
.footer-columns div { display: grid; gap: 7px; }
.footer-columns span { margin-bottom: 10px; font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-soft); }
.footer-columns a { width: max-content; color: rgba(255,255,255,.72); }
.footer-columns a:hover { color: var(--white); }
.footer-meta { margin-top: 8vh; display: flex; justify-content: space-between; gap: 30px; font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; opacity: .55; }

/* Responsividade */
@media (max-width: 1180px) {
  :root { --header-h: 82px; --container: min(91vw, 1180px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .header-actions { gap: 18px; }
  .hero h1 { max-width: min(74vw, 900px); }
  .hero-line--top { margin-left: 0; }
  .hero-line--middle { margin-left: 10vw; }
  .hero-footer { padding-left: 0; padding-right: 0; }
  .section-heading--split { grid-template-columns: 1fr; }
  .problem-content { /* flex layout retained */ }
  .problem-intro { max-width: none; }
  .problem-hero { justify-items: center; }
  .problem-section__title-column { justify-content: center; }
  .problem-heading { max-width: none; text-align: center; margin: 0 auto; }
  .problem-heading .display-title { max-width: none; }
  .problem-lead { margin: 1.2rem auto 0; }
  .journey-card, .journey-card--reverse { grid-template-columns: 1fr 1fr; }
  .service-panel, .service-panel--reverse { grid-template-columns: .8fr 1.2fr; }
  .outcomes-head { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .project-frame { grid-template-columns: .9fr 1.1fr; }
  .origin { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .problem-hero { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; }
  .problem-section__title-column { justify-content: center; }
  .problem-heading { text-align: center; }
  .problem-heading .display-title { max-width: none; }
  .problem-lead { margin: 1.4rem auto 0; }
  .symptom-list { width: 100%; }
}

@media (min-width: 1200px) {
  .problem-section__main {
    transform: translateX(-2.5vw);
  }
}

@media (min-width: 1600px) {
  .problem-section__main {
    transform: translateX(-48px);
  }
}

@media (max-width: 1200px) {
  .problem-section__main {
    transform: none;
  }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  .site-header { padding: 0 5vw; }
  .brand { width: 160px; }
  .header-cta { display: none; }
  .menu-overlay { grid-template-columns: 1fr; padding: calc(var(--header-h) + 2vh) 6vw 5vh; }
  .menu-film { display: none; }
  .overlay-nav { padding-left: 0; }
  .overlay-nav a { font-size: clamp(2.6rem, 8vw, 4.7rem); }
  .overlay-note { left: 6vw; right: auto; }

  .hero { padding: calc(var(--header-h) + 9vh) 5vw 6vh; min-height: 100svh; }
  .hero-media img { object-position: center 20%; opacity: .38; }
  .hero-media::after { background: linear-gradient(90deg, rgba(3,15,25,.92) 0%, rgba(3,15,25,.66) 55%, rgba(3,15,25,.42) 100%); }
  .hero-copy .eyebrow { margin-left: 0; }
  .hero h1 { max-width: min(88vw, 780px); }
  .hero-line { white-space: normal; }
  .hero-line--top { font-size: clamp(3.1rem, 11.5vw, 5.8rem); margin-left: 0; }
  .hero-line--middle { font-size: clamp(3.7rem, 13vw, 7rem); margin-left: 5vw; }
  .hero-line--bottom { font-size: clamp(3rem, 10.8vw, 5.6rem); margin-left: 0; }
  .hero-footer { grid-template-columns: 1fr; gap: 3.2vh; padding: 2.8vh 0 0; }
  .hero-actions { justify-content: flex-start; }
  .scroll-mark { display: none; }

  .problem { padding: 10vh 5vw 11vh; }
  .problem::before { background-attachment: scroll; }
  .problem-content { min-height: auto; }
  .problem-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .problem-heading { max-width: none; }
  .problem-heading .display-title { font-size: clamp(3.7rem, 9.5vw, 6.8rem); }
  .symptom-list { width: 100%; }

  .journeys { padding-bottom: 10vh; }
  .journey-card, .journey-card--reverse { grid-template-columns: 1fr; }
  .journey-card--reverse figure { order: 0; }
  .journey-card figure { min-height: 58vh; }
  .journey-content { padding: 5vh 0 7vh; }

  .services { padding-bottom: 10vh; }
  .service-panel, .service-panel--reverse { grid-template-columns: 1fr; }
  .service-panel--reverse .service-copy { order: 0; }
  .service-copy, .service-panel--reverse .service-copy { padding: 5vh 0; }
  .service-panel figure { min-height: 60vh; }

  .pillar > button { grid-template-columns: 52px 1fr 35px; min-height: 98px; }
  .pillar.is-active .pillar-panel { padding: 0 0 6vh; }
  .pillar-panel { grid-template-columns: 1fr; gap: 4vh; }
  .pillar-panel figure { height: 58vh; }

  .outcomes { padding: 10vh 5vw 11vh; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }

  .projects { padding: 10vh 5vw; }
  .project-film { height: auto; min-height: 920px; }
  .project-frame { grid-template-columns: 1fr; grid-template-rows: auto 48vh; }
  .project-copy { padding: 5vh 4vw; }
  .project-frame figure { min-height: 48vh; }

  .origin { grid-template-columns: 1fr; }
  .origin-image { min-height: 72vh; }
  .origin-copy { padding: 9vh 5vw 11vh; }

  .diagnostic { padding: 10vh 5vw 8vh; }
  .diagnostic-steps { grid-template-columns: 1fr; }
  .diagnostic-steps li { min-height: auto; }
  .diagnostic-steps li > span { margin-bottom: 4vh; }
  .diagnostic-bottom { grid-template-columns: 1fr; }
  .diagnostic-button { width: 100%; }

  .footer-brand { grid-template-columns: 1fr; }
  .footer-brand p { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  .parallax-image { background-attachment: scroll; }
  :root { --container: 90vw; }
  .site-header { padding: 0 5vw; }
  .brand { width: 142px; }
  .menu-toggle span { display: none; }

  .problem-content { padding-left: 24px; padding-right: 24px; }
  .problem-section__header { margin-bottom: 3rem; }
  .symptom-list { width: 100%; }
  .symptom-list li { gap: 16px; padding: 18px 0; }

  .display-title { font-size: clamp(3.5rem, 16vw, 5.6rem); }
  .section-heading { padding-top: 10vh; padding-bottom: 5vh; }
  .section-heading .eyebrow { margin-top: 4vh; }
  .section-heading--split { gap: 4vh; }

  .hero { padding-top: calc(var(--header-h) + 7vh); }
  .hero-index { top: 16vh; right: -24vw; }
  .hero-media img { opacity: .34; object-position: center 24%; }
  .hero-line--top { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .hero-line--middle { font-size: clamp(3.2rem, 16vw, 5.6rem); margin-left: 2vw; }
  .hero-line--bottom { font-size: clamp(2.6rem, 13.8vw, 4.6rem); }
  .hero-services { line-height: 1.9; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }

  .problem { padding: 9vh 5vw 10vh; }
  .problem-content { gap: 1.6rem; }
  .problem-intro .section-number { margin-bottom: 1rem; }
  .problem-heading .display-title { font-size: clamp(2.9rem, 11vw, 4.7rem); line-height: .9; }
  .problem-lead { font-size: 1rem; }

  .problem-visual { min-height: 70vh; }
  .symptom-list li { grid-template-columns: 34px 1fr; }

  .journey-card figure, .service-panel figure, .pillar-panel figure { min-height: 68vh; height: 68vh; }
  .journey-content h3, .service-copy h3 { font-size: clamp(2.5rem, 12vw, 4rem); }

  .pillar-name { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .pillar-lead { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .cycle-note { width: 88vw; }

  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 270px; }

  .project-film { min-height: 980px; }
  .project-copy { padding: 4vh 5vw; }
  .project-copy h3 { font-size: clamp(4rem, 18vw, 6.4rem); }
  .project-copy dl div { grid-template-columns: 1fr; gap: 5px; }
  .project-frame { grid-template-rows: auto 43vh; }

  .origin-image { min-height: 78vh; }
  .origin-copy .display-title { font-size: clamp(3.3rem, 15vw, 5.2rem); }

  .diagnostic .display-title { font-size: clamp(4rem, 18vw, 6.5rem); }
  .diagnostic-orbit { width: 110vw; right: -58vw; }

  .footer-columns { grid-template-columns: 1fr; }
  .footer-meta { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *:not(.global-light), *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .global-light-field { transform: none !important; }
  .global-light--aqua { animation: reduced-aqua 24s ease-in-out infinite alternate !important; }
  .global-light--coral { animation: reduced-coral 28s ease-in-out infinite alternate !important; }
  .global-light--beam { animation: reduced-beam 22s ease-in-out infinite alternate !important; }
  .global-light--haze, .global-light--flare { animation: none !important; }
  @keyframes reduced-aqua { from { transform: translate3d(10vw, 8vh, 0); } to { transform: translate3d(42vw, 20vh, 0); } }
  @keyframes reduced-coral { from { transform: translate3d(-8vw, 24vh, 0); } to { transform: translate3d(-42vw, 8vh, 0); } }
  @keyframes reduced-beam { from { transform: translate3d(-10vw, 5vh, 0) rotate(-10deg); } to { transform: translate3d(32vw, 24vh, 0) rotate(-7deg); } }
}


/* =========================================================
   Refinamento editorial V5 — conteúdo 1140px e hierarquia
   ========================================================= */

/* Container editorial consistente em todas as seções. Os fundos continuam full bleed. */
:root {
  --container: min(calc(100vw - 64px), 1140px);
}

/* Títulos de seção: Poppins conduz a frase; Scaver/Bodoni destaca a ideia-chave. */
.display-title {
  font-family: var(--font-sans);
  font-size: clamp(3.25rem, 5.6vw, 6.35rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.display-title em {
  font-family: var(--font-display);
  font-size: 1.12em;
  font-style: italic;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}
.section-heading--wide .display-title,
.projects-header .display-title,
.diagnostic .display-title,
.origin-copy .display-title,
.outcomes-head .display-title {
  max-width: 100%;
  font-size: clamp(3.25rem, 5.4vw, 6.2rem);
}

/* HERO — conteúdo contido, frase compacta e rodapé ancorado. */
.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 5.5vh) 0 3.5vh;
  grid-template-rows: 1fr auto;
  align-items: stretch;
}
.hero-copy,
.hero-footer {
  width: var(--container);
  max-width: 1140px;
  margin-inline: auto;
}
.hero-copy {
  align-self: center;
  padding: 1vh 0 2vh;
}
.hero-copy .eyebrow {
  margin: 0 0 clamp(1rem, 2vh, 1.6rem);
}
.hero-lockup {
  display: grid;
  width: min(100%, 920px);
  max-width: none !important;
  gap: clamp(.1rem, .5vh, .45rem);
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}
.hero-phrase {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(.7rem, 1.2vw, 1.2rem);
  white-space: normal;
}
.hero-phrase strong {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.055em;
}
.hero-phrase small {
  font-family: var(--font-sans);
  font-size: clamp(.9rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .02em;
}
.hero-phrase--top strong {
  font-size: clamp(4rem, 7.5vw, 7.25rem);
}
.hero-phrase--middle {
  padding-left: clamp(5.5rem, 10vw, 10.5rem);
}
.hero-phrase--middle strong {
  font-size: clamp(4.75rem, 9.1vw, 8.8rem);
  color: var(--sand);
}
.hero-phrase--bottom {
  align-items: center;
  color: var(--aqua);
}
.hero-phrase--bottom small {
  max-width: 9.5rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.45;
}
.hero-phrase--bottom strong {
  font-size: clamp(4rem, 7.6vw, 7.35rem);
  color: var(--aqua);
}
.hero-summary {
  max-width: 670px;
  margin: clamp(1.5rem, 3vh, 2.4rem) 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(.94rem, 1vw, 1.06rem);
  line-height: 1.7;
}
.hero-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 4rem;
  align-items: end;
  padding: 1.5rem 0 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-services {
  margin: 0;
  align-self: end;
  line-height: 1.7;
}
.hero-actions {
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

/* PROBLEMA — escala responsiva, eixo central e fumaça nas quatro bordas. */
.problem {
  min-height: 100svh;
  padding: clamp(7rem, 11vh, 9rem) 0;
  isolation: isolate;
}
.problem-content {
  width: var(--container);
  max-width: 1140px;
  min-height: auto;
  padding: 0;
  gap: clamp(3.5rem, 6vh, 5.5rem);
}
.problem-section__header {
  margin: 0;
}
.problem-section__main {
  width: 100%;
  transform: none !important;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  column-gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.problem-section__title-column {
  min-height: 0;
  align-items: center;
}
.problem-heading {
  max-width: 520px;
}
.problem-heading .display-title {
  max-width: 520px;
  font-size: clamp(3.15rem, 4.7vw, 5.35rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.problem-heading .display-title em {
  display: inline-block;
  margin-top: .18em;
  font-size: 1.12em;
  line-height: .88;
}
.problem-details {
  max-width: 520px;
}
.problem-lead {
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.55;
  padding-bottom: 1.6rem;
  margin-bottom: 1.35rem;
}
.symptom-list li {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(.9rem, 1.55vh, 1.3rem) 0;
  font-size: clamp(.95rem, 1.05vw, 1.08rem);
  line-height: 1.45;
}
/* Nuvens de borda acima do fundo e abaixo do conteúdo. */
.problem::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 18% at 50% 0%, rgba(72,169,166,.28), rgba(3,15,25,.55) 48%, transparent 76%),
    radial-gradient(ellipse 72% 18% at 50% 100%, rgba(216,92,50,.22), rgba(3,15,25,.65) 50%, transparent 78%),
    radial-gradient(ellipse 16% 72% at 0% 50%, rgba(3,15,25,.82), transparent 76%),
    radial-gradient(ellipse 16% 72% at 100% 50%, rgba(3,15,25,.82), transparent 76%);
  filter: blur(25px) saturate(1.08);
  opacity: .94;
}
.problem-content { z-index: 2; }

/* Componentes que já usam --container passam a respeitar 1140px. */
.section-heading,
.journey-grid,
.service-stack,
.pillars,
.outcomes > .section-number,
.outcomes-head,
.outcome-grid,
.projects-header,
.project-film,
.project-controls,
.diagnostic-head,
.diagnostic-steps,
.diagnostic-bottom {
  width: var(--container);
  max-width: 1140px;
}

/* Origem: fundo full bleed, conteúdo contido em 1140px. */
.origin {
  display: block;
  min-height: auto;
  padding: clamp(6rem, 10vh, 9rem) 0;
}
.origin-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  min-height: min(78vh, 780px);
  overflow: hidden;
}
.origin-copy {
  padding: clamp(3rem, 6vw, 5rem);
}
.origin-copy .eyebrow {
  margin-top: 2rem;
}
.origin-image { min-height: 100%; }

/* Footer também compartilha o mesmo eixo editorial. */
.site-footer > * {
  width: var(--container);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  :root { --container: min(calc(100vw - 48px), 1140px); }
  .hero-phrase--middle { padding-left: clamp(2rem, 7vw, 6rem); }
  .hero-footer { grid-template-columns: 1fr; }
  .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
  .problem-section__main { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
}

@media (max-width: 900px) {
  :root { --container: min(calc(100vw - 40px), 1140px); }
  .display-title,
  .section-heading--wide .display-title,
  .projects-header .display-title,
  .diagnostic .display-title,
  .origin-copy .display-title,
  .outcomes-head .display-title {
    font-size: clamp(2.8rem, 9vw, 5rem);
  }
  .hero {
    padding: calc(var(--header-h) + 4vh) 0 3vh;
  }
  .hero-copy { align-self: center; }
  .hero-phrase--middle { padding-left: 7vw; }
  .hero-phrase--bottom small { max-width: 7.5rem; }
  .hero-footer { gap: 1.4rem; }
  .problem { padding: 7rem 0; }
  .problem-section__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .problem-heading,
  .problem-heading .display-title,
  .problem-details {
    max-width: 680px;
    text-align: left;
    justify-self: start;
  }
  .problem-section__title-column { justify-content: flex-start; }
  .problem-heading .display-title { font-size: clamp(3rem, 9vw, 5.1rem); }
  .origin-inner { grid-template-columns: 1fr; }
  .origin-image { min-height: 62vh; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 36px); }
  .hero-lockup { gap: .35rem; }
  .hero-phrase { gap: .55rem; }
  .hero-phrase--top strong { font-size: clamp(3.45rem, 17vw, 5rem); }
  .hero-phrase--middle { padding-left: 0; }
  .hero-phrase--middle strong { font-size: clamp(4rem, 20vw, 5.8rem); }
  .hero-phrase--bottom { align-items: flex-end; }
  .hero-phrase--bottom small { max-width: 6.5rem; font-size: .7rem; }
  .hero-phrase--bottom strong { font-size: clamp(3.25rem, 15vw, 4.6rem); }
  .hero-summary { margin-top: 1.35rem; }
  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-actions .text-link { align-self: flex-start; }
  .problem-content { padding: 0; }
  .problem-section__header { margin-bottom: 0; }
  .problem-heading .display-title { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .problem::after { filter: blur(18px); opacity: .86; }
  .origin { padding: 5rem 0; }
  .origin-copy { padding: 3rem 1.25rem; }
}


/* =========================================================
   Refinamento V6 — ajustes aprovados diretamente na base V5
   ========================================================= */

/* HERO: palavras auxiliares mais presentes e assinatura com respiro. */
.hero-copy .eyebrow {
  position: relative;
  transform: translateY(-14px);
  margin-bottom: clamp(1.7rem, 3.2vh, 2.5rem);
}
.hero-phrase small {
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.hero-phrase--bottom small {
  max-width: 16rem;
  color: rgba(255,255,255,.82);
  text-transform: none;
  letter-spacing: -.025em;
  line-height: 1.08;
}

/* O cabeçalho editorial da seção Problema passa a seguir o eixo esquerdo. */
.problem-section__header {
  width: 100%;
  text-align: left;
  align-items: flex-start;
  justify-self: stretch;
}
.problem-intro .section-number,
.problem-intro .eyebrow {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* PARA SUA MARCA: apoio menor, Marca como ideia central. */
.journeys-title {
  display: grid;
  justify-items: start;
  width: min(100%, 850px);
  margin: 0;
  line-height: 1;
}
.journeys-title__support {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -.045em;
  color: var(--white);
}
.journeys-title__focus {
  display: block;
  margin: -.08em 0 0;
  font-family: var(--font-display);
  font-size: clamp(5.1rem, 8.4vw, 8.75rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
  color: var(--aqua);
}
.journeys-title__continuation {
  display: block;
  margin-top: .35em;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  font-style: italic;
  line-height: .92;
  letter-spacing: -.045em;
  color: rgba(255,255,255,.78);
}

/* Quadros de imagem + texto: menos imagem, mais espaço para argumentação. */
.journey-card {
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  min-height: auto;
  align-items: center;
}
.journey-card--reverse {
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
}
.journey-card figure {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.journey-content {
  padding: clamp(3rem, 5vw, 5rem);
}
.journey-content h3 {
  font-size: clamp(2.35rem, 3.55vw, 4.25rem);
}

.service-panel {
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  min-height: auto;
  align-items: center;
}
.service-panel--reverse {
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
}
.service-panel figure {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.service-copy {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem) clamp(3.5rem, 6vw, 6rem) 0;
}
.service-panel--reverse .service-copy {
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(3.5rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
}
.service-copy h3 {
  font-size: clamp(2.4rem, 3.65vw, 4.5rem);
}

/* Projetos também recebem mais área textual sem perder a força da imagem. */
.project-frame {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

/* METODOLOGIA: manifesto à esquerda, sanfona contida à direita. */
.method {
  padding: clamp(7rem, 12vh, 10rem) 0 clamp(7rem, 12vh, 10rem);
}
.method-intro,
.method-layout,
.method .cycle-note {
  width: var(--container);
  max-width: 1140px;
  margin-inline: auto;
}
.method-intro {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1.58fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vh, 7rem);
}
.method-intro .eyebrow {
  max-width: 760px;
  color: rgba(255,255,255,.72);
}
.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 6vw, 6.5rem);
  align-items: start;
}
.method-title-column {
  position: sticky;
  top: calc(var(--header-h) + 5vh);
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.method-title {
  width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 6.35vw, 6.75rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
  text-align: right;
}
.method-title span {
  display: block;
}
.method-title__attraction { color: var(--sand); }
.method-title__confirmation { color: var(--aqua); }
.method-title__permanence { color: var(--coral); }
.method .pillars {
  width: 100%;
  max-width: none;
  margin: 0;
}
.method .pillar > button {
  min-height: 86px;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 1rem;
}
.method .pillar-name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
  line-height: 1;
  letter-spacing: -.025em;
}
.method .pillar-arrow {
  font-size: 1rem;
}
.method .pillar-panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(150px, .88fr);
  gap: 1.6rem;
}
.method .pillar.is-active .pillar-panel {
  max-height: 760px;
  padding: 0 0 2.5rem 44px;
}
.method .pillar-lead {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--aqua-soft);
}
.method .pillar-copy > p:not(.pillar-lead):not(.business-impact),
.method .business-impact {
  font-size: clamp(.86rem, .94vw, .98rem);
  line-height: 1.65;
}
.method .business-impact {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
}
.method .pillar-panel figure {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.method .cycle-note {
  margin-top: clamp(4rem, 8vh, 7rem);
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}
.cycle-word {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.28em;
  font-weight: 400;
  line-height: 1;
}
.cycle-word--attraction { color: var(--sand); }
.cycle-word--confirmation { color: var(--aqua); }
.cycle-word--permanence { color: var(--coral); }

/* ORIGEM: narrativa de scroll em tela cheia, seguida do conteúdo editorial. */
.origin-story {
  --origin-progress: 0;
  position: relative;
  min-height: 430vh;
  background:
    radial-gradient(circle at 78% 28%, rgba(72,169,166,.15), transparent 34%),
    radial-gradient(circle at 20% 74%, rgba(216,92,50,.13), transparent 36%),
    #030c14;
}
.origin-story__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.origin-story__meta {
  position: absolute;
  z-index: 8;
  top: calc(var(--header-h) + 2rem);
  left: 50%;
  width: var(--container);
  max-width: 1140px;
  transform: translateX(-50%);
  pointer-events: none;
}
.origin-story__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.origin-story__stage::before,
.origin-story__stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .58;
}
.origin-story__stage::before {
  width: 58vw;
  height: 22vw;
  left: -18vw;
  top: 18vh;
  background: radial-gradient(ellipse, rgba(72,169,166,.48), transparent 68%);
  animation: originAmbientAqua 12s ease-in-out infinite alternate;
}
.origin-story__stage::after {
  width: 50vw;
  height: 20vw;
  right: -15vw;
  bottom: 14vh;
  background: radial-gradient(ellipse, rgba(216,92,50,.35), transparent 70%);
  animation: originAmbientCoral 14s ease-in-out infinite alternate;
}
@keyframes originAmbientAqua {
  from { transform: translate3d(-3vw, -1vh, 0) scale(.95); }
  to { transform: translate3d(7vw, 5vh, 0) scale(1.08); }
}
@keyframes originAmbientCoral {
  from { transform: translate3d(4vw, 2vh, 0) scale(.94); }
  to { transform: translate3d(-7vw, -4vh, 0) scale(1.1); }
}
.origin-story__word,
.origin-story__question,
.origin-story__value {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  width: min(calc(100vw - 48px), 1200px);
  height: 100%;
  margin: auto;
  text-align: center;
  pointer-events: none;
  will-change: opacity, transform;
}
.origin-story__word {
  font-family: var(--font-display);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.07em;
  color: var(--sand);
  text-shadow: 0 0 60px rgba(72,169,166,.18);
  opacity: 0;
}
.origin-story__question {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.2vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.05em;
  color: var(--white);
  opacity: 0;
}
.origin-story__question strong {
  margin-inline: .16em;
  font-family: var(--font-display);
  font-size: 1.25em;
  font-weight: 400;
  color: var(--aqua);
}
.origin-story__value {
  grid-template-columns: 1fr;
  align-content: center;
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 5.1vw, 5.8rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.055em;
  opacity: 0;
}
.origin-story__value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.42em;
  font-weight: 400;
  line-height: .8;
}
.origin-story__value span { display: block; }
.origin-story__value--trust strong { color: var(--sand); }
.origin-story__value--freedom strong { color: var(--aqua); }
.origin-story__value--hope strong { color: var(--coral); }
.origin-story__image {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: min(72vh, 760px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.12) translateY(8vh);
  clip-path: inset(18% 14% 0 14% round 2px);
  will-change: opacity, transform, clip-path;
}
.origin-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,12,20,.45), transparent 34%, rgba(3,12,20,.18));
  pointer-events: none;
}
.origin-story__image picture,
.origin-story__image img {
  width: 100%;
  height: 100%;
}
.origin-story__image img {
  object-fit: cover;
  object-position: center 48%;
}
.origin-content {
  position: relative;
  padding: clamp(7rem, 12vh, 11rem) 0;
  overflow: hidden;
}
.origin-content__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: start;
}
.origin-content__heading .eyebrow {
  margin: 0 0 2rem;
  color: var(--aqua-soft);
}
.origin-content__heading .display-title {
  font-size: clamp(3.25rem, 5vw, 5.8rem);
}
.origin-content__copy {
  padding-top: clamp(3rem, 8vh, 7rem);
}
.origin-content__copy > p:first-child {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.2vw, 1.17rem);
  line-height: 1.8;
}
.origin-content__signature {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.65vw, 3rem);
  line-height: 1.06;
  color: var(--sand);
}
.origin-content .origin-symbol {
  position: absolute;
  z-index: 1;
  right: -7vw;
  bottom: -8vw;
  width: 28vw;
  opacity: .055;
}

@media (max-width: 1180px) {
  .hero-phrase small { font-size: clamp(1.35rem, 2.6vw, 2.1rem); }
  .journey-card,
  .journey-card--reverse { grid-template-columns: minmax(0, 43%) minmax(0, 57%); }
  .journey-card--reverse { grid-template-columns: minmax(0, 57%) minmax(0, 43%); }
  .service-panel { grid-template-columns: minmax(0, 57%) minmax(0, 43%); }
  .service-panel--reverse { grid-template-columns: minmax(0, 43%) minmax(0, 57%); }
  .method-layout { gap: 3.25rem; }
  .method-title { font-size: clamp(3.8rem, 6.5vw, 5.6rem); }
}

@media (max-width: 900px) {
  .hero-copy .eyebrow { transform: translateY(-8px); }
  .hero-phrase small { font-size: clamp(1.2rem, 4.7vw, 1.75rem); }
  .hero-phrase--bottom small { max-width: 12rem; }

  .journey-card,
  .journey-card--reverse,
  .service-panel,
  .service-panel--reverse {
    grid-template-columns: 1fr;
  }
  .journey-card--reverse figure,
  .service-panel--reverse .service-copy { order: 0; }
  .journey-card figure,
  .service-panel figure {
    aspect-ratio: 16 / 10;
    min-height: 0;
    height: auto;
  }
  .journey-content,
  .service-copy,
  .service-panel--reverse .service-copy {
    padding: 3rem 0 5rem;
  }
  .project-frame { grid-template-columns: 1fr; }

  .method-intro {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .method-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .method-title-column {
    position: static;
    justify-content: flex-start;
  }
  .method-title {
    max-width: 100%;
    font-size: clamp(4rem, 13vw, 6rem);
    text-align: left;
  }
  .method .pillar-panel {
    grid-template-columns: 1fr;
  }
  .method .pillar-panel figure {
    aspect-ratio: 16 / 10;
  }
  .method .cycle-note {
    font-size: clamp(1.1rem, 3.6vw, 1.45rem);
  }

  .origin-story { min-height: 330vh; }
  .origin-story__meta { top: calc(var(--header-h) + 1.25rem); }
  .origin-story__image {
    height: 66vh;
    clip-path: inset(16% 6% 0 6% round 2px);
  }
  .origin-story__image img { object-position: center; }
  .origin-content__inner { grid-template-columns: 1fr; gap: 2rem; }
  .origin-content__copy { padding-top: 0; }
}

@media (max-width: 560px) {
  .hero-copy .eyebrow {
    transform: translateY(-5px);
    margin-bottom: 1.5rem;
  }
  .hero-phrase small {
    font-size: clamp(1.05rem, 5.4vw, 1.4rem);
  }
  .hero-phrase--bottom small { max-width: 9.5rem; }

  .problem-section__header { margin-bottom: 0; }
  .journeys-title__support { font-size: clamp(1.35rem, 7vw, 1.8rem); }
  .journeys-title__focus { font-size: clamp(4.6rem, 21vw, 6.3rem); }
  .journeys-title__continuation { font-size: clamp(2.4rem, 11vw, 3.5rem); }

  .journey-card figure,
  .service-panel figure,
  .method .pillar-panel figure {
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
  }

  .method { padding: 6rem 0; }
  .method-title { font-size: clamp(3.25rem, 17vw, 4.7rem); }
  .method .pillar > button { min-height: 76px; }
  .method .pillar-name { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .method .pillar.is-active .pillar-panel { padding-left: 0; }
  .method .cycle-note { line-height: 1.65; }

  .origin-story { min-height: 285vh; }
  .origin-story__word { font-size: clamp(6rem, 34vw, 10rem); }
  .origin-story__question { font-size: clamp(2rem, 10vw, 3.2rem); }
  .origin-story__value { font-size: clamp(1.85rem, 9vw, 3rem); }
  .origin-story__image {
    height: 58vh;
    clip-path: inset(12% 0 0 0);
  }
  .origin-content { padding: 6rem 0; }
  .origin-content__heading .display-title { font-size: clamp(2.8rem, 13vw, 4.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .method-title-column { position: static; }
  .origin-story {
    min-height: auto;
    padding: calc(var(--header-h) + 4rem) 0 0;
  }
  .origin-story__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .origin-story__meta {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 3rem;
  }
  .origin-story__stage {
    position: relative;
    display: grid;
    gap: 3rem;
    inset: auto;
    overflow: visible;
  }
  .origin-story__word,
  .origin-story__question,
  .origin-story__value {
    position: relative;
    inset: auto;
    width: var(--container);
    height: auto;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
  }
  .origin-story__image {
    position: relative;
    inset: auto;
    width: 100vw;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ===== V7 AJUSTES — painéis com imagem de fundo + origem refinada ===== */

/* Sessão 02 e demais quadros de imagem lateral: imagem como background + painel esfumaçado */
.journey-card,
.journey-card--reverse,
.service-panel,
.service-panel--reverse {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(34rem, 58vh, 46rem);
  align-items: stretch;
}

.journey-card figure,
.service-panel figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100% !important;
  margin: 0;
  overflow: hidden;
  aspect-ratio: auto !important;
  align-self: stretch;
}

.journey-card picture,
.journey-card img,
.service-panel picture,
.service-panel img {
  width: 100%;
  height: 100%;
}

.journey-card img,
.service-panel img {
  object-fit: cover;
}

.journey-card::before,
.service-panel::before,
.journey-card::after,
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-card::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 12, 20, .18) 0%, rgba(3, 12, 20, .52) 100%);
}
.journey-card::after {
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(3, 12, 20, .06) 0%,
    rgba(3, 12, 20, .10) 34%,
    rgba(3, 12, 20, .48) 58%,
    rgba(3, 12, 20, .84) 76%,
    rgba(3, 12, 20, .94) 100%);
}
.journey-card--reverse::after {
  background: linear-gradient(90deg,
    rgba(3, 12, 20, .94) 0%,
    rgba(3, 12, 20, .84) 24%,
    rgba(3, 12, 20, .48) 42%,
    rgba(3, 12, 20, .10) 66%,
    rgba(3, 12, 20, .06) 100%);
}

.service-panel::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(244, 240, 233, .12) 0%, rgba(7, 20, 33, .26) 100%);
}
.service-panel::after {
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(244, 240, 233, .96) 0%,
    rgba(244, 240, 233, .86) 26%,
    rgba(244, 240, 233, .54) 45%,
    rgba(244, 240, 233, .12) 64%,
    rgba(244, 240, 233, 0) 100%);
}
.service-panel--reverse::after {
  background: linear-gradient(90deg,
    rgba(244, 240, 233, 0) 0%,
    rgba(244, 240, 233, .12) 36%,
    rgba(244, 240, 233, .54) 55%,
    rgba(244, 240, 233, .86) 74%,
    rgba(244, 240, 233, .96) 100%);
}

.journey-content,
.service-copy {
  position: relative;
  z-index: 3;
  width: min(48%, 560px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.75rem, 5vw, 4.5rem);

}

.journey-content {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(7,20,33,.44) 0%, rgba(7,20,33,.62) 100%);
}
.journey-card--reverse .journey-content {
  margin-left: 0;  
}

.service-copy {
  margin-right: auto;
  
}
.service-panel--reverse .service-copy {
  margin-right: 0;
  margin-left: auto;
}

.journey-content .eyebrow,
.service-copy .eyebrow { margin-bottom: .8rem; }
.journey-content h3,
.service-copy h3 { max-width: 12ch; }
.journey-content p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.service-copy > p:not(.eyebrow) { color: rgba(7,20,33,.82); }
.service-copy ul { border-top-color: rgba(7,20,33,.12); }
.service-copy li { border-bottom-color: rgba(7,20,33,.12); }
.service-index,
.card-index { z-index: 4; }

/* Origem: pergunta em uma linha e frases em pontos diferentes da tela */
.origin-story__question {
  width: auto;
  max-width: min(calc(100vw - 64px), 1120px);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.origin-story__question strong {
  margin-inline: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.origin-story__value {
  inset: auto;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  text-align: left;
}
.origin-story__value--trust {
  top: 24vh;
  left: clamp(28px, 8vw, 120px);
}
.origin-story__value--freedom {
  top: 52vh;
  right: clamp(28px, 8vw, 120px);
  text-align: right;
}
.origin-story__value--hope {
  bottom: 15vh;
  left: 36vw;
}

@media (max-width: 900px) {
  .journey-card,
  .journey-card--reverse,
  .service-panel,
  .service-panel--reverse {
    display: grid;
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .journey-card::before,
  .journey-card::after,
  .service-panel::before,
  .service-panel::after { display: none; }

  .journey-card figure,
  .service-panel figure {
    position: relative;
    min-height: 0 !important;
    height: auto;
    aspect-ratio: 16 / 10 !important;
  }

  .journey-card--reverse figure,
  .service-panel--reverse .service-copy { order: 0; }

  .journey-content,
  .service-copy,
  .service-panel--reverse .service-copy {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 3rem 0 4rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .origin-story__question {
    max-width: min(calc(100vw - 48px), 720px);
    white-space: normal;
    text-align: center;
  }
  .origin-story__value--trust {
    top: 26vh;
    left: 1.5rem;
  }
  .origin-story__value--freedom {
    top: 52vh;
    right: 1.5rem;
  }
  .origin-story__value--hope {
    bottom: 14vh;
    left: auto;
    right: 12vw;
    text-align: right;
  }
}

@media (max-width: 560px) {
  .journey-content h3,
  .service-copy h3 { max-width: 100%; }

  .origin-story__question {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }
  .origin-story__value--trust,
  .origin-story__value--freedom,
  .origin-story__value--hope {
    left: 1rem;
    right: 1rem;
    text-align: left;
  }
  .origin-story__value--trust { top: 24vh; }
  .origin-story__value--freedom { top: 48vh; }
  .origin-story__value--hope {
    top: auto;
    bottom: 12vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .origin-story__question {
    max-width: none;
    white-space: normal;
    text-align: center;
  }
  .origin-story__value,
  .origin-story__value--trust,
  .origin-story__value--freedom,
  .origin-story__value--hope {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    text-align: center;
    display: grid;
  }
