:root {
  color-scheme: dark;
  --black: #020202;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.085);
  --white: #f7f7f2;
  --muted: #aaa9a5;
  --accent: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 30px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.07), transparent 22rem),
    radial-gradient(circle at 82% 38%, rgba(255,255,255,.04), transparent 26rem),
    var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 999;
  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='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #777, #fff);
  z-index: 1001;
  box-shadow: 0 0 18px rgba(255,255,255,.8);
}

.cursor-light {
  position: fixed;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.09), rgba(255,255,255,.025) 35%, transparent 67%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
  transition: opacity .3s ease;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  min-height: 62px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 100;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 16px 60px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.08);
}

.nav-mark {
  display: flex;
  align-items: center;
  width: 154px;
  min-width: 154px;
}
.nav-mark img { width: 100%; height: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #bcbcb7; font-size: .86rem; transition: color .2s ease; }
.nav-links a:hover { color: #fff; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 18px;
  color: #050505;
  background: #fff;
  font-weight: 750;
  font-size: .87rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(255,255,255,.16); }
.button.ghost { color: #fff; background: rgba(255,255,255,.06); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 24px 44px;
}
.hero-media {
  position: absolute;
  inset: -4%;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,.075), transparent 22rem),
    radial-gradient(circle at 14% 72%, rgba(255,255,255,.045), transparent 20rem),
    linear-gradient(145deg, #020202 0%, #090909 48%, #010101 100%);
  transform: scale(1.07);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.3) 55%, #020202 100%),
    radial-gradient(circle at center, transparent 12%, rgba(0,0,0,.72) 88%);
}
.depth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  background: rgba(255,255,255,.12);
  box-shadow: inset -24px -28px 50px rgba(0,0,0,.9), 0 25px 80px rgba(0,0,0,.7);
  z-index: -1;
  animation: drift 9s ease-in-out infinite alternate;
}
.orb-one { width: 130px; height: 130px; left: 7%; top: 24%; filter: blur(9px); opacity: .45; }
.orb-two { width: 46px; height: 46px; right: 14%; top: 32%; animation-delay: -2s; }
.orb-three { width: 84px; height: 84px; right: 8%; bottom: 18%; filter: blur(15px); opacity: .45; animation-delay: -4s; }

.hero-content { width: min(1120px, 100%); text-align: center; position: relative; }
.proposal-kicker {
  display: none;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  color: #d7d7d2;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.proposal-mode .proposal-kicker { display: block; }
.brand-lockup {
  width: min(310px, 68vw);
  min-height: 64px;
  margin: 0 auto 46px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 26px rgba(255,255,255,.11));
}
.brand-lockup img { width: 100%; height: auto; object-fit: contain; }
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #c9c9c4;
  font-size: .75rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 34px; height: 1px; background: rgba(255,255,255,.42); }
.hero h1 {
  max-width: 920px;
  margin: 0 auto 28px;
  font: 500 clamp(3.2rem, 7.8vw, 7.4rem)/.92 var(--serif);
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 14px 60px rgba(0,0,0,.65);
}
.hero h1 em { font-style: italic; color: #b8b8b3; }
.hero-copy { max-width: 650px; margin: 0 auto; color: #c7c7c2; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { margin-top: 40px; display: flex; justify-content: center; }
.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #a4a49f; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue::after { content: ""; display: block; width: 1px; height: 30px; margin: 10px auto 0; background: linear-gradient(#fff, transparent); animation: cue 1.8s ease-in-out infinite; }

.section { position: relative; padding: 150px 24px; }
.shell { width: min(1180px, 100%); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: .5fr 1.5fr; gap: 56px; align-items: end; margin-bottom: 72px; }
.section-index { color: #777773; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.section h2 { margin: 0; font: 500 clamp(2.8rem, 6vw, 6rem)/.98 var(--serif); letter-spacing: -.045em; text-wrap: balance; }
.section-lead { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }

.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: inset 0 1px rgba(255,255,255,.1), 0 30px 90px rgba(0,0,0,.36);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.07) 48%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s ease;
}
.glass:hover::before { transform: translateX(100%); }

.truth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.truth-card { min-height: 160px; padding: 28px 0; border-top: 1px solid var(--line); }
.truth-card h3 { max-width: 300px; margin: 0; font: 500 1.65rem/1.18 var(--serif); }

.method-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2.7vw, 38px);
  align-items: end;
  padding-top: 38px;
  overflow: hidden;
  perspective: 1300px;
  perspective-origin: 50% 38%;
}
.method-card {
  min-width: 0;
  text-align: center;
  transform-style: preserve-3d;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pillar-scale: 1;
  --pillar-lift: 0px;
}
.method-copy {
  min-height: 92px;
  padding: 0 4px 12px;
  position: relative;
  z-index: 4;
  transition: transform .45s ease, color .45s ease;
}
.method-card h3 { margin: 0 0 8px; font: 500 clamp(1.35rem, 2.1vw, 1.85rem)/1 var(--serif); }
.method-card p { margin: 0 auto; max-width: 210px; color: var(--muted); font-size: .88rem; }
.pillar-scene {
  height: 275px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-style: preserve-3d;
}
.method-card:nth-child(2) .pillar-scene, .method-card:nth-child(3) .pillar-scene { height: 410px; }
.pillar-rise {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(145px) rotateY(-38deg) scale(.74);
  transform-origin: 50% 100%;
}
.pillar img { width: min(185px, 84%); max-width: none; height: auto; flex: none; object-fit: contain; }
.method-stage.in-view .pillar-rise {
  animation: pillar-rise 1.65s var(--pillar-delay) cubic-bezier(.16,.85,.18,1) forwards;
}
.pillar {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  transform: translateY(var(--pillar-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--pillar-scale));
  filter: drop-shadow(22px 30px 24px rgba(0,0,0,.68));
  transition: transform .3s cubic-bezier(.2,.75,.2,1), filter .45s ease;
  will-change: transform;
}
.method-card:hover .method-copy { transform: translateY(-5px); color: #fff; }
.method-card:hover .pillar { filter: drop-shadow(28px 38px 30px rgba(0,0,0,.74)) drop-shadow(0 0 22px rgba(255,255,255,.08)); }
.pillar-shadow {
  position: absolute;
  z-index: 1;
  bottom: -5px;
  width: 84%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.78), transparent 70%);
  filter: blur(7px);
  transform: translateX(18px) rotate(-3deg);
  transition: transform .4s ease, opacity .4s ease;
}

.portrait-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.visual-frame { position: relative; min-height: 620px; overflow: hidden; }
.visual-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.03); transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.visual-frame:hover img { transform: scale(1.035); filter: saturate(1.14) contrast(1.02); }
.visual-frame.wesley { margin: 0; min-height: 0; display: grid; place-items: center; padding: 28px; background: #030303; }
.visual-frame.wesley img { height: auto; object-fit: contain; object-position: center; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; }
.team-member { margin: 0; min-width: 0; }
.team-member img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; background: #050505; border-radius: 18px; }
.team-member figcaption { padding-top: 24px; }
.team-member h3 { margin: 0 0 10px; font: 500 2.1rem/1.1 var(--serif); }
.team-member p { margin: 0; color: var(--muted); font-size: 1rem; }
.bio-card { position: relative; padding: clamp(28px, 5vw, 62px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.bio-card .signature { font: italic 500 1.2rem var(--serif); color: #b7b7b2; margin-bottom: 26px; }
.bio-card h3 { margin: 0 0 26px; font: 500 clamp(2.6rem, 5vw, 5.4rem)/.95 var(--serif); letter-spacing: -.04em; }
.bio-card p { color: #b6b6b2; max-width: 540px; }
.bio-card strong { color: #fff; }

.team-showcase { position: relative; overflow: hidden; min-height: 610px; }
.team-showcase img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; filter: saturate(1.06) contrast(1.04); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72)); pointer-events: none; }
.team-chip { position: absolute; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.52); backdrop-filter: blur(18px); font-size: .82rem; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.chip-wesley { left: 11%; bottom: 8%; }
.chip-eduarda { left: 44%; bottom: 13%; }
.chip-joao { right: 9%; bottom: 8%; }

.gear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gear-card { position: relative; margin: 0; min-height: 0; overflow: hidden; }
.gear-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; filter: saturate(1.08) brightness(.9) contrast(1.04); transition: transform 1s ease, filter .5s ease; }
.gear-card:hover img { transform: scale(1.035); }
.gear-info { position: relative; padding: 26px 28px 30px; overflow: hidden; border-top: 1px solid var(--line-soft); }
.gear-info small { color: #aaa; letter-spacing: .15em; text-transform: uppercase; }
.gear-info h3 { margin: 9px 0 4px; font: 500 clamp(2rem, 3vw, 3rem)/1 var(--serif); }
.gear-info p { margin: 10px 0 0; color: #c0c0bc; }

.client-panel { position: relative; min-height: 0; overflow: hidden; background: #080808; }
.client-panel img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; filter: saturate(1.08) contrast(1.04); opacity: .96; }
.client-panel::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px #000; pointer-events: none; }

.offer-section { overflow: hidden; }
.offer-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: rgba(255,255,255,.055); filter: blur(75px); right: -220px; top: 12%; pointer-events: none; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.offer-card { position: relative; display: flex; flex-direction: column; padding: 30px; overflow: hidden; min-height: 660px; transition: transform .4s ease, border-color .4s ease; }
.offer-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,.35); }
.offer-card.featured { background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.045)); box-shadow: inset 0 1px rgba(255,255,255,.18), 0 45px 110px rgba(255,255,255,.06); }
.offer-badge { align-self: flex-start; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--line); color: #c8c8c3; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.offer-card h3 { min-height: 76px; margin: 24px 0 10px; font: 500 2rem/1.08 var(--serif); }
.offer-card .offer-desc { min-height: 72px; color: var(--muted); margin: 0 0 24px; }
.offer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; color: #d1d1cc; }
.offer-list li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; font-size: .9rem; }
.offer-list li::before { content: "✦"; color: #fff; font-size: .72rem; margin-top: 3px; }
.price-wrap { margin-top: auto; padding-top: 32px; }
.price { font: 500 clamp(2.6rem, 4.5vw, 4rem)/1 var(--serif); letter-spacing: -.045em; }
.price-note { margin: 8px 0 0; color: #aaa; font-size: .82rem; }
.offer-button { margin-top: 22px; width: 100%; }
.validity { text-align: center; color: #8d8d88; margin-top: 25px; display: none; }
.proposal-mode .validity { display: block; }

.closing { padding-bottom: 70px; }
.closing-card { position: relative; padding: clamp(36px, 7vw, 90px); overflow: hidden; text-align: center; }
.closing-card h2 { max-width: 850px; margin: 0 auto 22px; }
.closing-card p { max-width: 620px; margin: 0 auto 32px; color: var(--muted); }

footer { padding: 28px 24px 48px; color: #767672; font-size: .8rem; }
.footer-row { width: min(1180px, 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-soft); padding-top: 25px; }

.reveal { opacity: 0; transform: translateY(40px) scale(.985); filter: blur(7px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.65,.2,1), filter .9s ease; }
.reveal.in-view { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@keyframes hero-breathe { to { transform: scale(1.13) translate3d(1.2%, -.8%, 0); } }
@keyframes drift { to { transform: translate3d(22px, -32px, 0) scale(1.12); } }
@keyframes cue { 0%,100% { opacity: .25; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes pillar-rise {
  0% { opacity: 0; transform: translateY(145px) rotateY(-38deg) rotateX(8deg) scale(.74); }
  68% { opacity: 1; transform: translateY(-12px) rotateY(11deg) rotateX(-2deg) scale(1.025); }
  100% { opacity: 1; transform: translateY(0) rotateY(0) rotateX(0) scale(1); }
}

@media (max-width: 960px) {
  .section-head { grid-template-columns: 1fr; gap: 15px; }
  .truth-grid, .offer-grid { grid-template-columns: 1fr; }
  .method-stage { gap: 12px; }
  .portrait-layout, .gear-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: auto; }
  .offer-card h3, .offer-card .offer-desc { min-height: auto; }
  .visual-frame { min-height: 520px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 86px 18px; }
  .nav { top: 10px; width: calc(100% - 18px); min-height: 56px; padding-left: 16px; }
  .nav-mark { width: 116px; min-width: 116px; }
  .nav-cta { padding: 10px 13px; }
  .hero { padding-inline: 18px; }
  .brand-lockup { width: min(250px, 66vw); min-height: 54px; margin-bottom: 36px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .method-stage { grid-template-columns: 1fr 1fr; gap: 38px 16px; }
  .pillar-scene { height: 240px; overflow: hidden; }
  .method-card:nth-child(2) .pillar-scene, .method-card:nth-child(3) .pillar-scene { height: 320px; }
  .method-card h3 { font-size: 1.45rem; }
  .team-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-member { width: min(360px, 100%); margin-inline: auto; }
  .visual-frame.wesley { padding: 14px; }
  .team-showcase, .team-showcase img { min-height: 460px; }
  .team-showcase img { object-position: center; }
  .team-chip { display: none; }
  .footer-row { flex-direction: column; }
  .cursor-light { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-light { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .pillar-rise { opacity: 1; transform: none; }
  .pillar { transform: none; }
}
