/* Grafo Audiovisual — folha de estilos do site.
   Valores copiados dos estilos inline do template do canvas; os nomes de
   classe são novos. Ordem: base, tipografia, cabeçalho, blocos, páginas,
   rodapé, responsivo. */

/* ---------- fontes (só latim e latin-ext; o navegador baixa apenas o
   subset que a página usa) ---------- */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400 900; font-display: swap; src: url("/assets/fonts/montserrat-normal-latin-ext.woff2") format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400 900; font-display: swap; src: url("/assets/fonts/montserrat-normal-latin.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Newsreader'; font-style: italic; font-weight: 300 400; font-display: swap; src: url("/assets/fonts/newsreader-italic-latin-ext.woff2") format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Newsreader'; font-style: italic; font-weight: 300 400; font-display: swap; src: url("/assets/fonts/newsreader-italic-latin.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Newsreader'; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/newsreader-normal-latin-ext.woff2") format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Newsreader'; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/newsreader-normal-latin.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---------- base ---------- */
:root {
  --ink: #141210; --paper: #f7f5f0; --sand: #f5f2ec; --gold: #f2c80f; --ochre: #9c7a08;
  --mute: #6f6a61; --mute2: #8a857c; --text: #57524a; --dark: #0e0d0b; --line: #e8e4dc;
  --gx: clamp(20px, 4vw, 52px);
  --serif: 'Newsreader', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', system-ui, sans-serif; color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ochre); }
img { display: block; max-width: 100%; }
button { font-family: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: rgba(20, 18, 16, 0.08); }
::selection { background: var(--ink); color: var(--paper); }
@keyframes gfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gfadeimg { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes gmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.grafo-reveal { animation: gfade .7s cubic-bezier(.2, .7, .2, 1) both; }
[hidden] { display: none !important; }

.shell { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
.main { flex: 1; padding-top: 96px; }

/* ---------- tipografia e utilitários ---------- */
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.serif-i.lg { font-size: clamp(18px, 1.8vw, 22px); }
.arial { font-family: Arial, Helvetica, sans-serif; }
.b700 { font-weight: 700; }
.label { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.label.gold { color: var(--gold); }
.label.ochre { color: var(--ochre); }
.label.sm { letter-spacing: 0.12em; }
.gold-label { display: flex; align-items: center; gap: 14px; margin-bottom: 44px; }
.gold-label .bar { width: 38px; height: 4px; background: var(--gold); }
.gold-label span:last-child { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ochre); }
.gold-label.dark { margin-bottom: 20px; }
.gold-label.dark span:last-child { color: var(--gold); }
.h1 { font-size: clamp(40px, 6vw, 84px); font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; margin-bottom: 20px; }
.h1.tight { line-height: 0.94; letter-spacing: -0.04em; margin-bottom: 0; }
.h1.md { font-size: clamp(30px, 4.5vw, 56px); margin-bottom: 16px; }
.h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 26px; }
.h2.lh11 { line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0; }
.h3-label { font-size: 14.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute2); margin-bottom: 28px; }
.sub { font-size: 16px; color: var(--mute2); }
.sub.serif-i { font-size: clamp(18px, 1.8vw, 22px); }
.p { font-size: 16px; line-height: 1.72; color: var(--text); margin-bottom: 18px; }
.p-strong { font-size: 16px; line-height: 1.7; color: #3a352e; margin-bottom: 20px; }
.mb0 { margin-bottom: 0; } .mb10 { margin-bottom: 10px; } .mb12 { margin-bottom: 12px; } .mb14 { margin-bottom: 14px; }
.mb16 { margin-bottom: 16px; } .mb20 { margin-bottom: 20px; } .mb22 { margin-bottom: 22px; } .mb24 { margin-bottom: 24px; }
.mb26 { margin-bottom: 26px; } .mb30 { margin-bottom: 30px; } .mb44 { margin-bottom: 44px; }
.mt16 { margin-top: 16px; } .mt26 { margin-top: 26px; }
.mw800 { max-width: 800px; margin-left: auto; margin-right: auto; } .mw820 { max-width: 820px; } .mw1100 { max-width: 1100px; }

.btn { display: inline-block; padding: 14px 26px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; border: none; cursor: pointer; line-height: 1.2; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { color: var(--ink); }
.btn-line { background: none; border: 1px solid var(--ink); color: var(--ink); padding: 13px 26px; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { color: var(--paper); }

.thumb { overflow: hidden; border-radius: 3px; background: var(--dark); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.thumb img:hover { transform: scale(1.05); }
.r43 { aspect-ratio: 4 / 3; } .r32 { aspect-ratio: 3 / 2; } .r169 { aspect-ratio: 16 / 9; } .r1610 { aspect-ratio: 16 / 10; }
img[data-zoom] { cursor: zoom-in; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.grid3.gap12 { gap: 12px; }
.grid3.gap-lg { gap: clamp(22px, 2.6vw, 40px); }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.video-box { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 3px; background: var(--dark); }
.video-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.page-head { padding: clamp(26px, 3vw, 46px) var(--gx) clamp(30px, 4vw, 56px); }
.page-head.pb-sm { padding-bottom: clamp(24px, 3vw, 40px); }
.page-head.pb-md { padding-bottom: clamp(24px, 3vw, 44px); }
.rule-label { border-top: 2px solid var(--gold); padding-top: 14px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-bottom: 26px; }
.dt { font-size: 12px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.dd { font-size: 14.5px; font-weight: 600; color: #26221c; }

/* ---------- cabeçalho ---------- */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 16px var(--gx); background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid #ebe7df; }
.hdr-logo { display: flex; align-items: baseline; gap: 9px; }
.hdr-logo img { height: 76px; width: auto; }
.hdr-nav { display: flex; align-items: center; gap: clamp(9px, 1.2vw, 18px); }
.hdr-nav > a { position: relative; font-size: 13.5px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; padding: 6px 0; color: #5c574e; }
.hdr-nav > a.on { color: var(--ink); }
.hdr-nav > a.on::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); }
.hdr-sep { width: 1px; height: 16px; background: #d8d3ca; }
.lang { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--mute); }
.lang a { color: #a49e94; padding: 4px 0; }
.lang a.on { color: var(--ink); }
#g-burger { display: none; position: fixed; top: 14px; right: 14px; z-index: 250; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
#g-burger i { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
#g-burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#g-burger.open i:nth-child(2) { opacity: 0; }
#g-burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#g-menu { position: fixed; inset: 0; z-index: 240; background: #faf9f5; display: flex; flex-direction: column; justify-content: center; padding: 88px clamp(24px, 7vw, 40px) 44px; transform: translateY(-100%); transition: transform .4s cubic-bezier(.2, .7, .2, 1); visibility: hidden; }
#g-menu.open { transform: translateY(0); visibility: visible; }
#g-menu .g-item { font-size: clamp(26px, 7vw, 34px); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid #e6e2da; text-align: left; width: 100%; padding: 16px 2px; display: block; }
#g-menu .g-item.g-active { color: var(--ochre); }
#g-lang { margin-top: 32px; }
#g-lang .lang { font-size: 15px; letter-spacing: 0.1em; gap: 10px; }

/* ---------- home ---------- */
.hero { padding: clamp(26px, 3vw, 46px) var(--gx) clamp(40px, 5vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.9fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: end; }
.hero-media { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--dark); border-radius: 3px; overflow: hidden; cursor: pointer; color: var(--paper); }
.hero-media:hover { color: var(--paper); }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: gfadeimg 1s ease both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.05) 45%, transparent 70%); }
.hero-text { position: absolute; left: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 36px); right: 24px; }
.hero-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 12px; }
.hero-title { font-size: clamp(40px, 6vw, 80px); font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 12px; }
.hero-meta { font-size: 14.5px; opacity: 0.9; }
.hero-meta .serif-i { font-size: 16px; }
.hero-list { display: flex; flex-direction: column; }
.hero-item { display: flex; gap: 16px; align-items: baseline; text-align: left; border-top: 1px solid var(--line); padding: 18px 4px; opacity: 0.42; transition: opacity .3s, padding .3s; color: var(--ink); }
.hero-item[aria-current="true"], .hero-item:hover { opacity: 1; color: var(--ink); }
.hero-item-t { display: block; font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.hero-item-m { display: block; font-size: 13.5px; color: var(--mute2); margin-top: 4px; }

.about { padding: clamp(56px, 7vw, 110px) var(--gx); display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.about-p { font-size: 16px; line-height: 1.65; color: var(--text); max-width: 42ch; margin-bottom: 30px; }

.band { background: var(--ink); color: var(--paper); padding: clamp(50px, 6vw, 84px) var(--gx); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { border-left: 1px solid rgba(247, 245, 240, 0.18); padding-left: 22px; }
.stat-n { font-size: clamp(28px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-l { font-size: 13.5px; letter-spacing: 0.06em; color: #b7b1a6; margin-top: 10px; text-transform: uppercase; }

.awards { padding: clamp(56px, 7vw, 100px) var(--gx) clamp(24px, 3vw, 40px); }
.awards-head { max-width: 720px; margin-bottom: 44px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee-run { display: inline-flex; gap: clamp(38px, 5vw, 76px); align-items: center; animation: gmarquee 34s linear infinite; will-change: transform; }
.partners .marquee-run { gap: clamp(42px, 5vw, 84px); }
.logo-fest { height: clamp(78px, 8vw, 118px); width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.82; }
.logo-partner { width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.72; height: clamp(54px, 5.4vw, 86px); }
.logo-partner.logo-b { height: clamp(58px, 5.8vw, 92px); }
.partners { padding: 0 var(--gx) clamp(30px, 4vw, 56px); }
.partners .marquee { margin-bottom: 60px; }
.partners .marquee:last-child { margin-bottom: 0; }

.gallery { padding: 0 0 clamp(56px, 7vw, 100px); }
.gallery-head { padding: 0 var(--gx) 30px; }
.gallery .grid4 { padding: 0 var(--gx); }

.press { background: var(--sand); padding: clamp(56px, 7vw, 100px) var(--gx); }
.quote { border-top: 2px solid var(--gold); padding-top: 24px; }
.quote blockquote { font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.35; letter-spacing: -0.01em; color: #26221c; }
.quote figcaption { margin-top: 18px; font-size: 13.5px; color: var(--mute2); }
.quote figcaption strong { color: var(--ink); }

/* ---------- sobre ---------- */
.acao { margin-top: 34px; font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; letter-spacing: -0.01em; }
.acao span { color: var(--ochre); }
.sobre-text { padding: 0 var(--gx) clamp(50px, 6vw, 90px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: start; max-width: 1300px; }
.timeline { padding: clamp(56px, 7vw, 100px) var(--gx); }
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); gap: clamp(14px, 1.6vw, 24px); }
.tl-card { position: relative; border-radius: 4px; overflow: hidden; background: var(--dark); aspect-ratio: 4 / 5; }
.tl-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: transform .7s cubic-bezier(.2, .7, .2, 1), opacity .5s; }
.tl-card:hover .tl-img { transform: scale(1.06); opacity: 0.82; }
.tl-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 6%, rgba(10, 9, 8, 0.3) 54%, rgba(10, 9, 8, 0.08)); }
.tl-year { position: absolute; top: 14px; left: 18px; font-family: var(--serif); font-size: clamp(26px, 3.2vw, 42px); font-weight: 400; color: var(--gold); line-height: 1; }
.tl-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
.tl-body h3 { color: var(--paper); font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.12; }
.tl-body p { color: #c4bdb1; font-size: 13.5px; line-height: 1.5; }
.reach { padding: clamp(56px, 7vw, 100px) var(--gx); overflow: hidden; }
.reach-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: clamp(36px, 4vw, 56px); }
.reach-intro { max-width: 640px; }
.reach-intro .h2 { margin-bottom: 0; }
.reach-nums { display: flex; gap: clamp(24px, 3vw, 48px); }
.reach-n { font-size: clamp(30px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.reach-n.gold { color: var(--gold); }
.reach-l { font-size: 13.5px; color: #b7b1a6; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.map-box { position: relative; max-width: 900px; margin: 0 auto; border-radius: 6px; overflow: hidden; background: #100f0d; border: 1px solid rgba(247, 245, 240, 0.12); }
.map { width: 100%; height: auto; display: block; aspect-ratio: 16 / 8.5; }
.map-legend { position: absolute; left: 16px; bottom: 14px; display: flex; align-items: center; gap: 8px; color: #b7b1a6; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.map-legend .sw { width: 12px; height: 12px; border-radius: 2px; background: var(--gold); }
.reach-cap { margin-top: 28px; font-size: 14.5px; color: #8f897e; }
.team { background: var(--sand); padding: clamp(56px, 7vw, 100px) var(--gx); }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 280px)); gap: clamp(24px, 3vw, 44px); justify-content: center; }
.member-photo { aspect-ratio: 1; overflow: hidden; border-radius: 3px; background: #e2ddd3; margin-bottom: 18px; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .5s; }
.member-photo img:hover { filter: grayscale(0); }
.member h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.01em; }
.member-role { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ochre); margin: 4px 0 12px; }
.member-bio { font-size: 14.5px; line-height: 1.62; color: #6b665e; display: -webkit-box; -webkit-line-clamp: 9; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.62em * 9); }
.backstage { padding: clamp(56px, 7vw, 100px) var(--gx); }

/* ---------- produções ---------- */
.filters { display: flex; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.filter { background: transparent; color: var(--ink); border: 1px solid var(--ink); padding: 10px 22px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 100px; transition: all .25s; }
.filter.on { background: var(--ink); color: var(--paper); }
.cards-wrap { padding: 0 var(--gx) clamp(56px, 7vw, 100px); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr)); gap: clamp(14px, 1.6vw, 24px); }
.card { display: block; color: inherit; }
.card:hover { color: inherit; }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 3px; background: #161310; }
.card-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, opacity .4s; }
.card:hover .card-media > img { transform: scale(1.06); }
.card-badge { position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); background: rgba(20, 18, 16, 0.6); padding: 4px 9px; border-radius: 100px; backdrop-filter: blur(4px); }
.card-fin { position: absolute; top: 12px; right: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 4px 9px; border-radius: 100px; }
.card-text { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 10, 9, 0.85), transparent 42%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.card-text h3 { color: var(--paper); font-size: 16px; font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
.card-text div { color: #c9c3b8; font-size: 12px; margin-top: 4px; }

/* ---------- festival ---------- */
.fest { padding: clamp(30px, 4vw, 56px) var(--gx); border-top: 1px solid var(--line); }
.fest-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.fest-name { font-size: clamp(30px, 4.5vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px; font-family: Arial, Helvetica, sans-serif; }
.fest-sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.8vw, 22px); color: var(--mute2); margin-bottom: 24px; }
.fest-desc { font-size: 16px; line-height: 1.7; color: var(--text); max-width: 52ch; margin-bottom: 26px; }
.fest-stats { display: flex; gap: clamp(20px, 3vw, 44px); margin-bottom: 28px; }
.fest-n { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; letter-spacing: -0.02em; }
.fest-l { font-size: 13.5px; color: var(--mute2); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.fest .btn-ink { padding: 13px 26px; }
.fest-quotes { margin-top: clamp(30px, 4vw, 50px); border-top: 1px solid var(--line); padding-top: clamp(28px, 3vw, 40px); }
.fest-quotes .gold-label { margin-bottom: 30px; }
.fest-quotes .grid3 { gap: clamp(22px, 3vw, 40px); }
.fest-quotes .quote { padding-top: 22px; }
.fest-quotes .quote blockquote { line-height: 1.36; letter-spacing: 0; }
.fest-quotes .quote figcaption { margin-top: 16px; }
.fest-video { padding: clamp(24px, 3vw, 44px) var(--gx) clamp(44px, 5vw, 72px); border-top: 1px solid var(--line); }
.fest-video .gold-label { margin-bottom: 22px; }
.fest-video .video-box { border-radius: 4px; }

/* ---------- momentos ---------- */
.moments { padding: 0 var(--gx) clamp(56px, 7vw, 100px); }
.moment .thumb { margin-bottom: 18px; }
.moment-date { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin-bottom: 10px; }
.moment h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 10px; }
.moment p { font-size: 14.5px; line-height: 1.55; color: #77726a; }

/* ---------- produção (detalhe) ---------- */
.work-hero { position: relative; min-height: 78vh; background: var(--dark); overflow: hidden; }
.work-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.12) 44%, transparent 72%); }
.work-hero-in { position: relative; padding: clamp(88px, 10vw, 150px) var(--gx) clamp(38px, 4vw, 60px); color: var(--paper); display: flex; flex-direction: column; min-height: 78vh; }
.work-hero-text { margin-top: auto; flex: 1; min-width: 280px; }
.work-title { line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 16px; }
.work-meta { font-size: 16px; color: #cfc9be; margin-bottom: 22px; }
.work-hero .btn-gold { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; letter-spacing: 0.1em; }
.work-body { padding: clamp(44px, 5vw, 80px) var(--gx); display: grid; grid-template-columns: 270px 1fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
.work-side { display: flex; flex-direction: column; gap: 18px; }
.work-poster { width: 100%; border-radius: 4px; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); padding: 8px 13px; border-radius: 4px; display: inline-flex; align-items: center; }
.chip:hover { color: var(--paper); }
.chip.imdb { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.chip.imdb:hover { color: var(--ink); }
.work-facts { border-top: 2px solid var(--gold); padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.work-facts dt { font-size: 12px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.work-facts dd { font-size: 16px; font-weight: 600; }
.watch { border-top: 1px solid var(--line); padding-top: 16px; }
.watch .dt { margin-bottom: 12px; }
.watch-list { display: flex; flex-wrap: wrap; gap: 8px; }
.watch-item { height: 46px; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s; opacity: 0.85; }
.watch-item:hover { transform: translateY(-2px); opacity: 1; }
.watch-logo { height: 32px; width: auto; object-fit: contain; }
.watch-name { font-size: 14.5px; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
.synopsis { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.34; color: #26221c; margin-bottom: 8px; }
.awards-box { margin-top: 28px; background: var(--sand); border-left: 3px solid var(--gold); padding: 22px 26px; border-radius: 2px; }
.awards-text { font-size: 16px; line-height: 1.6; color: #3a352e; }
.statement { margin-top: 34px; display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.dir-photo { width: clamp(96px, 11vw, 150px); border-radius: 3px; flex: 0 0 auto; filter: grayscale(1); }
.statement-text { flex: 1; min-width: 240px; }
.statement-text p { font-size: 16px; line-height: 1.72; color: #3a352e; }
.more { margin-top: 14px; background: none; border: none; padding: 4px 0; color: var(--ochre); font-weight: 700; font-size: 14.5px; cursor: pointer; text-decoration: underline; }
.credits { padding: 0 var(--gx) clamp(44px, 5vw, 72px); }
.credits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 22px 40px; }
.stills { padding: 0 var(--gx) clamp(50px, 6vw, 84px); }
.work-back { padding: 0 var(--gx) clamp(56px, 7vw, 90px); }
.work-back .btn-ink { padding: 14px 28px; }
.modal { position: fixed; inset: 0; z-index: 400; background: rgba(10, 9, 8, 0.74); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: clamp(18px, 4vw, 60px); }
.modal-box { background: #fff; max-width: 760px; width: 100%; max-height: 82vh; overflow: auto; border-radius: 5px; padding: clamp(28px, 4vw, 52px); }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.modal-head .gold-label { margin-bottom: 0; gap: 12px; }
.modal-head .gold-label .bar { width: 32px; }
.modal-head .gold-label span:last-child { letter-spacing: 0.14em; }
.modal-close { background: none; border: none; font-size: clamp(26px, 3.2vw, 42px); line-height: 1; cursor: pointer; color: var(--mute2); }
.modal-box p { font-size: 16px; line-height: 1.78; color: #3a352e; margin-bottom: 16px; }

/* ---------- privacidade ---------- */
.privacy { padding: 0 var(--gx) clamp(56px, 7vw, 100px); }
.priv-block { margin-bottom: 34px; }
.priv-block h2 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; color: #26221c; }
.priv-block p { font-size: 16px; line-height: 1.72; color: var(--text); }
.priv-contact { border-top: 2px solid var(--gold); padding-top: 22px; margin-top: 8px; }
.priv-contact p { font-size: 16px; line-height: 1.7; color: #3a352e; }
.priv-contact a { color: var(--ochre); font-weight: 600; }

/* ---------- lightbox ---------- */
.zoom { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(10, 9, 8, 0.92); cursor: zoom-out; padding: 24px; }
.zoom.open { display: flex; }
.zoom img { max-width: 95vw; max-height: 92vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6); }

/* ---------- rodapé ---------- */
.ftr { background: var(--ink); color: var(--line); padding: clamp(50px, 6vw, 80px) var(--gx) 32px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 44px; border-bottom: 1px solid rgba(247, 245, 240, 0.14); }
.ftr-logo { height: 72px; width: auto; margin-bottom: 20px; }
.ftr-addr { font-size: 14.5px; line-height: 1.6; color: #8f897e; max-width: 34ch; }
.ftr-mail { display: inline-block; margin-top: 12px; font-size: 14.5px; color: var(--line); padding: 4px 0; }
.ftr-label { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #8f897e; margin-bottom: 18px; }
.ftr-links { display: flex; flex-direction: column; gap: 11px; }
.ftr-links a, .ftr-social a { font-size: 14.5px; color: #cfc9be; padding: 5px 0; }
.ftr-nlp { font-size: 14.5px; color: #8f897e; margin-bottom: 16px; }
.nl { display: flex; gap: 8px; flex-wrap: wrap; }
.nl input { flex: 1; min-width: 160px; background: rgba(247, 245, 240, 0.06); border: 1px solid rgba(247, 245, 240, 0.2); color: var(--paper); padding: 12px 14px; font-size: 14.5px; font-family: inherit; border-radius: 2px; }
.nl button { background: var(--paper); color: var(--ink); border: none; padding: 0 20px; min-height: 44px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; }
.nl-msg { flex-basis: 100%; font-size: 14.5px; line-height: 1.4; color: #8f897e; }
.ftr-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 16px; font-size: 13.5px; color: #8f897e; }
.ftr-bottom a { color: #8f897e; text-decoration: underline; padding: 5px 0; }
.ftr-social { display: flex; gap: 22px; letter-spacing: 0.04em; }
.ftr-social a { font-size: 13.5px; text-decoration: none; }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .hero-grid, .about, .sobre-text, .fest-grid, .ftr-grid, .work-body { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: repeat(2, 1fr); }
  .hdr-logo img { height: 60px; }
  .hdr-nav { gap: 12px; }
  .hdr-nav > a { font-size: 12px; letter-spacing: 0.06em; }
}
@media (max-width: 600px) {
  .grid3, .stats-grid, .grid4, .team-grid, .work-facts, .credits-grid, .timeline-grid, .cards { grid-template-columns: 1fr; gap: 26px; }
  .stats-grid, .grid4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 760px) {
  .hdr-nav { display: none; }
  .hdr-logo img { height: 46px; }
  .hdr { padding: 12px clamp(16px, 4vw, 24px); }
  .main { padding-top: 78px; }
  #g-burger { display: flex; }
}
