/* ============================================================
   João B. · Corretor de Imóveis
   Cinematic edition — dark, immersive, teal/amber grade
   ============================================================ */

:root {
  --bg:      #0a0b0c;
  --bg-2:    #0d0f11;
  --panel:   #131619;
  --panel-2: #171b1f;
  --cream:   #f1ebdf;
  --white:   #fcf9f3;
  --muted:   #98a1a5;
  --muted-2: #8b9498;
  --gold:    #d7a24e;
  --gold-2:  #edc784;
  --ember:   #c96a34;
  --line:    rgba(241,235,223,.13);
  --line-2:  rgba(241,235,223,.06);

  --serif: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --sans:  "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:  "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --spring: cubic-bezier(.34,1.56,.64,1);

  --t-xs: clamp(.72rem,.7rem+.1vw,.78rem);
  --t-lead: clamp(1.05rem,1rem+.35vw,1.3rem);
  --t-h: clamp(2.1rem,1.5rem+2.8vw,4rem);
  --t-hero: clamp(3rem,1.6rem+7vw,8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  font-size: clamp(1rem,.97rem+.15vw,1.08rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #12100b; }

/* visible focus (dark theme safe) */
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline-offset: 2px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.form__error { display: none; margin-top: 8px; color: #e9a06a; font-size: .74rem; letter-spacing: .04em; }
.form__error.show { display: block; }
.field.invalid input, .field.invalid select { box-shadow: inset 0 0 0 1.5px #d5764a; }

.mono { font-family: var(--mono); }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Fixed overlays ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(5) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-4%)} 60%{transform:translate(-3%,2%)} 80%{transform:translate(4%,-2%)} 100%{transform:translate(0,0)} }
.vignette { position: fixed; inset: 0; z-index: 199; pointer-events: none; box-shadow: inset 0 0 200px 60px rgba(0,0,0,.55), inset 0 0 60px rgba(0,0,0,.4); }

/* progress bar */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 210; background: transparent; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--ember), var(--gold-2)); transition: width .1s linear; }

/* custom cursor */
.cursor { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; mix-blend-mode: difference; display: none; }
.cursor__dot { position: absolute; width: 34px; height: 34px; border: 1px solid #fff; border-radius: 999px; transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease); }
.cursor.is-hover .cursor__dot { width: 62px; height: 62px; background: rgba(255,255,255,.1); }
.cursor__label { position: absolute; transform: translate(-50%,-50%); color: #fff; font-family: var(--mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; opacity: 0; transition: opacity .3s; }
.cursor.is-lg .cursor__label { opacity: 1; }
.cursor.is-lg .cursor__dot { width: 78px; height: 78px; background: rgba(255,255,255,.08); }
@media (hover:hover) and (pointer:fine) and (min-width: 900px) {
  body.cursor-on { cursor: none; }
  body.cursor-on a, body.cursor-on button { cursor: none; }
  .cursor { display: block; }
}

/* ---------- Kicker / display heading ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .28em;
  color: var(--gold);
}
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6; }
.h-display { font-family: var(--serif); font-weight: 500; font-size: var(--t-h); line-height: 1.04; letter-spacing: -.01em; color: var(--white); }
.h-display em, .hero__title em, .finale__title em { font-style: italic; font-weight: 500; color: var(--gold-2); }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: .7em; padding: 15px 22px; border-radius: 2px; font-weight: 600; font-size: .95rem; letter-spacing: -.01em; transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease); will-change: transform; }
.btn.sm { padding: 11px 16px; font-size: .86rem; }
.btn.full { width: 100%; justify-content: center; padding-block: 17px; }
.btn .ico { display: grid; place-items: center; width: 22px; height: 22px; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn .ico svg { transition: transform .5s var(--spring); }
.btn:active { transform: scale(.97); }

.btn--gold { background: var(--gold); color: #14110a; box-shadow: 0 0 0 0 rgba(215,162,78,.5); }
.btn--gold:hover { background: var(--gold-2); box-shadow: 0 14px 40px -12px rgba(215,162,78,.7); }
.btn--gold:hover .ico svg { transform: translateX(4px); }

.btn--line { color: var(--cream); box-shadow: inset 0 0 0 1px var(--line); }
.btn--line:hover { box-shadow: inset 0 0 0 1px var(--cream); background: rgba(241,235,223,.04); }

/* ---------- Intro ---------- */
.intro { position: fixed; inset: 0; z-index: 400; background: #060708; display: grid; place-items: center; transition: transform 1.1s var(--ease-out), opacity .6s; }
.intro.done { transform: translateY(-100%); pointer-events: none; }
.intro__inner { text-align: center; padding: 0 24px; }
.intro__meta { display: block; color: var(--muted-2); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; opacity: 0; animation: fadeIn .8s .1s forwards; }
.intro__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem,7vw,5rem); color: var(--white); line-height: 1; margin: 22px 0 10px; opacity: 0; transform: translateY(20px); animation: riseIn 1s .25s var(--ease-out) forwards; }
.intro__title em { font-style: italic; color: var(--gold-2); }
.intro__sub { color: var(--gold); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; opacity: 0; animation: fadeIn .8s .5s forwards; }
.intro__bar { width: min(280px, 60vw); height: 2px; margin: 34px auto 0; background: rgba(255,255,255,.1); overflow: hidden; }
.intro__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--ember), var(--gold-2)); }
.intro__count { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: var(--muted-2); font-size: .78rem; letter-spacing: .2em; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 150; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px var(--gutter); transition: padding .5s var(--ease), background .5s var(--ease), backdrop-filter .5s; }
.nav.is-scrolled { padding-block: 13px; background: rgba(10,11,12,.72); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-2); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 3px; background: var(--white); color: #14110a; font-family: var(--serif); font-weight: 600; font-size: 1rem; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.brand__txt { font-family: var(--serif); font-weight: 500; font-size: 1.14rem; line-height: 1; color: var(--white); }
.brand__txt small { display: block; font-family: var(--mono); font-size: .56rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.nav__links { display: flex; gap: 4px; }
.nav__links a { padding: 8px 14px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--white); box-shadow: inset 0 0 0 1px var(--line); border-radius: 2px; transition: box-shadow .4s, background .4s; }
.nav__cta .dot { width: 7px; height: 7px; border-radius: 999px; background: #46c07f; box-shadow: 0 0 0 0 rgba(70,192,127,.6); animation: pulse 2.4s infinite; }
.nav__cta:hover { background: rgba(241,235,223,.05); box-shadow: inset 0 0 0 1px var(--cream); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(70,192,127,.5)} 70%{box-shadow:0 0 0 8px rgba(70,192,127,0)} 100%{box-shadow:0 0 0 0 rgba(70,192,127,0)} }
.burger { display: none; width: 46px; height: 46px; position: relative; box-shadow: inset 0 0 0 1px var(--line); border-radius: 2px; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 26px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 145; background: rgba(6,7,8,.9); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; padding: 0 var(--gutter); opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a { position: relative; font-family: var(--serif); font-size: clamp(2.2rem,10vw,3.6rem); color: var(--white); padding: 10px 0; border-bottom: 1px solid var(--line-2); opacity: 0; transform: translateY(24px); transition: transform .6s var(--ease), opacity .6s var(--ease), color .3s; }
.menu__links a::before { content: attr(data-i); font-family: var(--mono); font-size: .8rem; color: var(--gold); margin-right: 18px; vertical-align: super; }
.menu__links a:hover { color: var(--gold-2); }
body.menu-open .menu__links a { opacity: 1; transform: none; }
body.menu-open .menu__links a:nth-child(1){transition-delay:.1s} body.menu-open .menu__links a:nth-child(2){transition-delay:.16s} body.menu-open .menu__links a:nth-child(3){transition-delay:.22s} body.menu-open .menu__links a:nth-child(4){transition-delay:.28s} body.menu-open .menu__links a:nth-child(5){transition-delay:.34s}
.menu__foot { margin-top: 40px; color: var(--muted-2); letter-spacing: .18em; font-size: .74rem; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 34s ease-out infinite alternate; filter: saturate(1.02) contrast(1.03); }
@keyframes kenburns { from { transform: scale(1.08) translate(0,0); } to { transform: scale(1.2) translate(-2%,-2%); } }
.hero__grade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,9,10,.55) 0%, rgba(8,9,10,.15) 30%, rgba(8,9,10,.5) 62%, rgba(8,9,10,.94) 100%), radial-gradient(120% 80% at 15% 90%, rgba(201,106,52,.22), transparent 55%); }

.frameline { position: absolute; left: var(--gutter); right: var(--gutter); z-index: 3; display: flex; justify-content: space-between; color: rgba(241,235,223,.65); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.frameline.top { top: 92px; }
.frameline.bottom { bottom: 26px; }
.frameline::before, .frameline::after { content: ""; position: absolute; top: 50%; width: clamp(20px,6vw,80px); height: 1px; background: rgba(241,235,223,.3); }
.frameline::before { left: -0; transform: translateX(-140%); }
.frameline::after { right: 0; transform: translateX(140%); }

.hero__content { position: relative; z-index: 3; padding-bottom: clamp(70px, 12vh, 130px); }
.hero .kicker { color: var(--gold-2); margin-bottom: 22px; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: var(--t-hero); line-height: .96; letter-spacing: -.02em; color: var(--white); text-shadow: 0 2px 40px rgba(0,0,0,.4); }
.ln { display: block; overflow: hidden; padding-bottom: .04em; }
.ln > span { display: inline-block; transform: translateY(115%); transition: transform 1.1s var(--ease-out); }
.hero__sub { max-width: 40ch; margin-top: 26px; color: rgba(241,235,223,.8); font-size: var(--t-lead); }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn--line { box-shadow: inset 0 0 0 1px rgba(241,235,223,.42); background: rgba(10,11,12,.22); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.hero .btn--line:hover { box-shadow: inset 0 0 0 1px var(--cream); background: rgba(10,11,12,.34); }

/* hero staged reveal (after intro) */
[data-hero] { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.hero.in [data-hero] { opacity: 1; transform: none; }
.hero.in .ln > span { transform: none; }
.hero.in [data-hero="1"]{transition-delay:.1s} .hero.in .ln:nth-child(1)>span{transition-delay:.2s} .hero.in .ln:nth-child(2)>span{transition-delay:.32s} .hero.in .ln:nth-child(3)>span{transition-delay:.44s}
.hero.in [data-hero="5"]{transition-delay:.6s} .hero.in [data-hero="6"]{transition-delay:.72s}

.scrollcue { position: absolute; right: var(--gutter); bottom: 26px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(241,235,223,.6); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scrollcue i { display: block; width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scrollcue i::after { content: ""; position: absolute; inset: 0; background: var(--gold-2); animation: cueLine 2s var(--ease) infinite; }
@keyframes cueLine { 0%{transform:translateY(-100%)} 100%{transform:translateY(100%)} }

/* ---------- Manifesto ---------- */
.manifesto { padding-block: clamp(90px, 16vh, 200px); border-bottom: 1px solid var(--line-2); }
.manifesto .kicker { margin-bottom: 40px; }
.manifesto__text { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 1rem+3.4vw, 4rem); line-height: 1.18; letter-spacing: -.01em; color: var(--white); max-width: 20ch; }
.manifesto__text .word { display: inline-block; overflow: hidden; }
.manifesto__text .word > span { display: inline-block; transform: translateY(105%); opacity: 0; transition: transform .8s var(--ease-out), opacity .8s; transition-delay: calc(var(--wi,0) * 28ms); }
.manifesto__text.in .word > span { transform: none; opacity: 1; }
.manifesto__by { margin-top: 46px; color: var(--muted); letter-spacing: .16em; }

/* ---------- Reel (horizontal cinematic) ---------- */
.reel { position: relative; height: calc(var(--frames,4) * 100vh); background: var(--bg); }
.reel__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.reel__ui { position: absolute; top: 92px; left: 0; right: 0; z-index: 5; display: flex; justify-content: space-between; color: rgba(241,235,223,.7); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.reel__counter b { color: var(--gold-2); }
.reel__track { display: flex; height: 100%; width: calc(var(--frames,4) * 100vw); will-change: transform; }
.frame { position: relative; width: 100vw; height: 100%; flex: none; display: flex; align-items: flex-end; overflow: hidden; }
.frame__media { position: absolute; inset: 0; z-index: 0; }
.frame__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.2s var(--ease); }
.frame::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,9,10,.5) 0%, transparent 30%, rgba(8,9,10,.35) 55%, rgba(8,9,10,.92) 100%); }
.frame__index { position: absolute; top: 130px; left: var(--gutter); z-index: 2; font-size: clamp(3rem,10vw,9rem); font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(241,235,223,.28); line-height: 1; }
.frame__info { position: relative; z-index: 2; padding: var(--gutter); padding-bottom: clamp(60px,10vh,110px); max-width: 640px; }
.tag { display: inline-block; padding: 6px 12px; font-size: .64rem; text-transform: uppercase; letter-spacing: .18em; color: #14110a; background: var(--gold); border-radius: 2px; }
.frame__loc { display: block; margin-top: 18px; color: var(--gold-2); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.frame__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem,1.2rem+2.8vw,3.4rem); line-height: 1.02; letter-spacing: -.01em; color: var(--white); margin-top: 12px; }
.frame__specs { display: flex; gap: 22px; margin-top: 18px; color: rgba(241,235,223,.75); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.frame__specs span { position: relative; }
.frame__specs span + span::before { content: ""; position: absolute; left: -12px; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.frame__foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.frame__price { font-family: var(--serif); font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--white); }

.frame--cta { align-items: center; justify-content: center; background: radial-gradient(90% 90% at 50% 40%, #14181c, var(--bg)); }
.frame--cta::after { display: none; }
.frame__cta { position: relative; z-index: 2; max-width: 640px; text-align: center; padding: var(--gutter); }
.frame__cta .mono { color: var(--gold); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; }
.frame__cta .frame__title { margin: 20px 0 18px; }
.frame__cta p { color: var(--muted); max-width: 46ch; margin: 0 auto 30px; }

.reel__hint { position: absolute; bottom: 26px; right: var(--gutter); z-index: 5; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
.reel__hint i { width: 44px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.reel__hint i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: hintLine 2s var(--ease) infinite; }
@keyframes hintLine { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ---------- Método (why) ---------- */
.why { padding-block: clamp(90px,14vh,180px); border-top: 1px solid var(--line-2); position: relative; }
.why__head { max-width: 760px; margin-bottom: 60px; }
.why__head .h-display { margin-top: 20px; }
.why__list { list-style: none; padding: 0; position: relative; z-index: 2; }
.wrow { display: grid; grid-template-columns: 64px 1fr 40px; gap: 24px; align-items: center; padding: 34px 0; border-top: 1px solid var(--line); transition: padding .5s var(--ease); }
.wrow:last-child { border-bottom: 1px solid var(--line); }
.wrow__n { color: var(--muted-2); font-size: .82rem; letter-spacing: .1em; transition: color .4s; }
.wrow__body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem,1rem+1.6vw,2.3rem); color: var(--white); letter-spacing: -.01em; transition: transform .5s var(--ease), color .4s; }
.wrow__body p { color: var(--muted); max-width: 60ch; margin-top: 8px; transition: color .4s; }
.wrow__go { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); transition: transform .5s var(--spring), background .4s, color .4s, box-shadow .4s; }
.wrow__go svg { width: 18px; height: 18px; }
@media (hover:hover) and (pointer:fine) {
  .wrow:hover { padding-left: 22px; }
  .wrow:hover .wrow__n { color: var(--gold); }
  .wrow:hover .wrow__body h3 { color: var(--gold-2); }
  .wrow:hover .wrow__go { background: var(--gold); color: #14110a; box-shadow: none; transform: rotate(0) scale(1.05); }
}
.why__thumb { position: fixed; top: 0; left: 0; z-index: 90; width: 260px; height: 320px; border-radius: 4px; overflow: hidden; pointer-events: none; opacity: 0; transform: translate(-50%,-50%) scale(.9); transition: opacity .4s var(--ease), transform .5s var(--ease); box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.why__thumb img { width: 100%; height: 100%; object-fit: cover; }
.why__thumb.show { opacity: 1; }

/* ---------- Atos ---------- */
.acts { padding-block: clamp(90px,14vh,180px); border-top: 1px solid var(--line-2); }
.acts__head { max-width: 760px; margin-bottom: 60px; }
.acts__head .h-display { margin-top: 20px; }
.acts__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.act { padding-top: 30px; border-top: 1px solid var(--line); }
.act__n { color: var(--gold); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; }
.act h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem,1.1rem+1.6vw,2.4rem); color: var(--white); margin: 14px 0 12px; }
.act p { color: var(--muted); max-width: 34ch; }

/* ---------- Bastidores (filmstrip) ---------- */
.strip { padding-block: clamp(90px,14vh,180px) 0; border-top: 1px solid var(--line-2); overflow: hidden; }
.strip__head { margin-bottom: 46px; }
.strip__head .h-display { margin-top: 20px; }
.strip__scroll { display: flex; gap: 18px; overflow-x: auto; padding: 0 var(--gutter) clamp(60px,10vh,110px); scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.strip__scroll::-webkit-scrollbar { display: none; }
.strip__scroll figure { position: relative; flex: none; width: clamp(280px, 42vw, 560px); aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; scroll-snap-align: center; cursor: pointer; }
.strip__scroll img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.strip__scroll figure:hover img { transform: scale(1.06); }
.strip__scroll figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,9,10,.8)); }
.strip__scroll figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--cream); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.strip__hint { text-align: center; padding-bottom: clamp(70px,12vh,130px); color: var(--muted-2); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- Sobre ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; border-top: 1px solid var(--line-2); }
.about__media { position: relative; min-height: 520px; overflow: hidden; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.05); }
.about__grade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.2), rgba(8,9,10,.6)), linear-gradient(0deg, rgba(201,106,52,.18), transparent 50%); }
.about__panel { padding: clamp(60px,9vw,120px) var(--gutter); display: flex; flex-direction: column; justify-content: center; max-width: 720px; }
.about__panel .h-display { margin-top: 20px; }
.about__text { margin-top: 24px; color: var(--muted); font-size: var(--t-lead); }
.about__text p + p { margin-top: 16px; }
.about__stats { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.about__stats b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--gold-2); }
.about__stats span { color: var(--muted-2); font-size: .8rem; letter-spacing: .06em; }
.about__sign { display: flex; align-items: baseline; gap: 20px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.about__sign .sig { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--white); }
.about__sign .mono { color: var(--muted-2); font-size: .74rem; letter-spacing: .1em; }

/* ---------- Vozes ---------- */
.voices { padding-block: clamp(90px,14vh,180px); border-top: 1px solid var(--line-2); }
.voices__head { margin-bottom: 50px; }
.voices__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.voice { padding: 34px; border-radius: 4px; background: var(--panel); box-shadow: inset 0 0 0 1px var(--line-2); display: flex; flex-direction: column; }
.voice:nth-child(2) { background: linear-gradient(180deg, #1a1e17, var(--panel)); }
.voice__stars { color: var(--gold); letter-spacing: .18em; margin-bottom: 18px; font-size: .82rem; }
.voice blockquote { font-family: var(--serif); font-weight: 500; font-size: 1.28rem; line-height: 1.4; color: var(--cream); }
.voice figcaption { margin-top: auto; padding-top: 24px; }
.voice figcaption b { display: block; color: var(--white); font-weight: 600; font-size: .96rem; }
.voice figcaption span { color: var(--muted-2); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Finale / contato ---------- */
.finale { position: relative; padding-block: clamp(90px,15vh,190px); border-top: 1px solid var(--line-2); overflow: hidden; }
.finale__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(90% 70% at 20% 100%, rgba(201,106,52,.22), transparent 55%), radial-gradient(70% 60% at 90% 0%, rgba(215,162,78,.12), transparent 55%); }
.finale__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,6vw,90px); align-items: center; }
.finale__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem,1.4rem+3.4vw,4.4rem); line-height: 1.02; letter-spacing: -.015em; color: var(--white); margin-top: 22px; }
.finale__lead { margin-top: 24px; color: var(--muted); font-size: var(--t-lead); max-width: 42ch; }
.finale__ways { margin-top: 34px; display: flex; flex-direction: column; gap: 10px; }
.finale__ways a { display: inline-flex; width: max-content; color: var(--cream); font-size: .9rem; letter-spacing: .06em; padding-bottom: 6px; border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.finale__ways a:hover { color: var(--gold-2); border-color: var(--gold); }

.form { background: rgba(19,22,25,.7); backdrop-filter: blur(8px); border-radius: 6px; padding: clamp(26px,3.4vw,42px); box-shadow: inset 0 0 0 1px var(--line); }
.form__head { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.form__head .dot { width: 8px; height: 8px; border-radius: 999px; background: #46c07f; box-shadow: 0 0 0 4px rgba(70,192,127,.14); }
.field { margin-bottom: 16px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; background: rgba(10,11,12,.6); border-radius: 3px; box-shadow: inset 0 0 0 1px var(--line); color: var(--cream); transition: box-shadow .3s, background .3s; }
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--gold); background: rgba(10,11,12,.85); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2398a1a5' stroke-width='1.6'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.form .btn { margin-top: 6px; }
.form__note { margin-top: 14px; text-align: center; color: var(--muted-2); font-size: .68rem; letter-spacing: .08em; }

/* ---------- Footer ---------- */
.footer { padding-block: clamp(50px,8vh,90px) 34px; border-top: 1px solid var(--line-2); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 34px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 3px; box-shadow: inset 0 0 0 1px var(--line); color: var(--cream); transition: background .3s, color .3s, transform .4s var(--spring); }
.footer__social a:hover { background: var(--gold); color: #14110a; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; padding: 30px 0; border-block: 1px solid var(--line-2); }
.footer__nav a { color: var(--muted); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; transition: color .3s; }
.footer__nav a:hover { color: var(--gold-2); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; color: var(--muted-2); font-size: .7rem; letter-spacing: .08em; }

/* ---------- Floating WA + mobile bar + lightbox ---------- */
.wa-float { position: fixed; right: 22px; bottom: 24px; z-index: 130; width: 58px; height: 58px; border-radius: 999px; background: #1f8f5f; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 34px -10px rgba(31,143,95,.7); transform: translateY(120px); transition: transform .5s var(--spring); }
.wa-float.show { transform: translateY(0); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
.wa-float .ping { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(31,143,95,.5); animation: pulse 2.6s infinite; }
.mobilebar { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 320; display: grid; place-items: center; padding: 24px; background: rgba(6,7,8,.94); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw,1100px); max-height: 84vh; border-radius: 4px; transform: scale(.96); transition: transform .5s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; transition: background .3s; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav svg { width: 20px; height: 20px; }
.lightbox__nav.prev { left: 20px; }
.lightbox__nav.next { right: 20px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d,0ms); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .about { grid-template-columns: 1fr; }
  .about__media { min-height: 60vh; }
  .finale__grid { grid-template-columns: 1fr; }
  .acts__grid { grid-template-columns: 1fr; gap: 0; }
  .act { padding-block: 26px; }
  .voices__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .frameline.top { display: none; }
  .frameline::before, .frameline::after { display: none; }
  .scrollcue { display: none; }
  .hero__content { padding-bottom: clamp(90px, 14vh, 140px); }
  /* reel becomes vertical stack */
  .reel { height: auto !important; }
  .reel__sticky { position: static; height: auto; }
  .reel__track { flex-direction: column; width: 100%; transform: none !important; }
  .frame { width: 100%; height: auto; min-height: 82vh; }
  .frame--cta { min-height: 70vh; }
  .reel__ui, .reel__hint { display: none; }
  .frame__index { top: 88px; bottom: auto; font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .wa-float { display: none; }
  .mobilebar { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(10,11,12,.9); backdrop-filter: blur(14px); box-shadow: 0 -1px 0 var(--line); transform: translateY(120%); transition: transform .5s var(--ease); }
  .mobilebar.show { transform: none; }
  .mobilebar .btn { justify-content: center; }
}
@media (max-width: 560px) {
  .field.row { grid-template-columns: 1fr; }
  .footer__top { justify-content: flex-start; }
  .hero__title { font-size: clamp(2.6rem,13vw,4rem); }
  .about__stats { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-hero], .ln > span, .manifesto__text .word > span { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__media img { animation: none; transform: scale(1.05); }
  .intro { display: none; }
}
