/* ============================================================
   EMBRULHA PRA VIAGEM | Editorial redesign
   Display: Bricolage Grotesque · Body: Inter (Google Fonts)
   Identity: brand orange #F5A200 on deep near-black
   ============================================================ */

:root {
  /* palette */
  --bg:          #0F0F0F;
  --bg-2:        #151515;
  --surface:     #1B1B1B;
  --surface-2:   #232323;
  --cream:       #F4EFE6;
  --ink:         #141414;
  --orange:      #F5A200;
  --orange-soft: #FFB838;
  --white:       #FFFFFF;
  --muted:       #9A9A9A;
  --muted-d:     #6A6A6A;
  --line:        rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.16);
  --line-dark:   rgba(0,0,0,.12);

  /* type */
  --display: 'Bricolage Grotesque', sans-serif;
  --body:    'Inter', sans-serif;

  /* layout */
  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 64px);

  /* z */
  --z-nav: 100;
  --z-menu: 200;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }
::selection { background: var(--orange); color: #141414; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }

/* ---------- helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.accent { color: var(--orange); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section.tight { padding-block: clamp(52px, 7vw, 104px); }
.band { background: var(--bg-2); }
.band-deep { background: #0B0B0B; }
.on-light { background: var(--cream); color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-weight: 600; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange);
}
.eyebrow .bar { width: 28px; height: 2px; background: var(--orange); display: inline-block; }
.eyebrow.dark { color: #9a7000; }
.eyebrow.ink { color: var(--ink); }
.eyebrow.ink .bar { background: var(--orange); }

/* section header (meta number + title + link) */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 56px); }
.shead .titles { display: flex; flex-direction: column; gap: 14px; }
.snum { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); }
.shead h2 { font-size: clamp(34px, 5vw, 68px); }
.shead.on-ink h2 { color: var(--ink); }
.link-out {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body); font-weight: 600; font-size: 13px;
  letter-spacing: .04em; color: var(--white);
  border-bottom: 1px solid var(--orange); padding-bottom: 5px; transition: gap .2s, color .2s;
}
.link-out.ink { color: var(--ink); }
.link-out:hover { gap: 12px; color: var(--orange); }
.link-out svg { width: 14px; height: 14px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .02em; padding: 15px 26px; border-radius: 999px; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #141414; }
.btn-primary:hover { background: var(--orange-soft); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line-strong); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-ghost.ink { border-color: rgba(0,0,0,.25); color: var(--ink); }
.btn-ghost.ink:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

/* play pill (watch showreel) */
.play-link { display: inline-flex; align-items: center; gap: 14px; font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--white); }
.play-circle { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s; }
.play-circle svg { width: 18px; height: 18px; margin-left: 3px; color: var(--white); }
.play-link:hover .play-circle { background: var(--orange); border-color: var(--orange); transform: scale(1.06); }
.play-link:hover .play-circle svg { color: #141414; }

/* social row */
.social-row { display: flex; align-items: center; gap: 14px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s, background .2s; }
.social-row a svg { width: 17px; height: 17px; }
.social-row a:hover { color: var(--orange); border-color: var(--orange); }

/* ============================================================
   NAV
   ============================================================ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); transition: background .35s ease, border-color .35s, backdrop-filter .35s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(14,14,14,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gut); height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo .logo-dark { display: none; }
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-menu { display: flex; align-items: center; gap: clamp(18px, 2vw, 28px); font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .01em; }
.navlink { color: rgba(255,255,255,.82); padding: 6px 0; position: relative; transition: color .2s; display: inline-flex; align-items: center; gap: 5px; }
.navlink::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--orange); transition: width .25s; }
.navlink:hover { color: var(--white); }
.navlink:hover::after, .navlink.active::after { width: 100%; }
.navlink.active { color: var(--orange); }
.navlink svg { width: 13px; height: 13px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; align-items: flex-end; padding: 8px; }
.nav-burger span { display: block; height: 2px; background: var(--white); transition: background .3s; }
.nav-burger span:nth-child(1), .nav-burger span:nth-child(3) { width: 26px; }
.nav-burger span:nth-child(2) { width: 18px; }

/* mobile menu */
.menu-overlay { position: fixed; inset: 0; z-index: var(--z-menu); background: #111; display: flex; flex-direction: column; padding: 28px var(--gut); transform: translateY(-100%); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.menu-overlay.open { transform: none; }
.menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.menu-top img { height: 42px; }
.menu-close { font-size: 36px; line-height: 1; color: var(--white); }
.menu-links { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.menu-links a, .menu-links button { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 9vw, 52px); line-height: 1.1; color: var(--white); text-align: left; padding: 16px 0; border-bottom: 1px solid var(--line); letter-spacing: -.02em; }
.menu-links .accent { color: var(--orange); }
.menu-social { margin-top: auto; display: flex; gap: 14px; padding-top: 28px; }
.menu-social a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); }
.menu-social a svg { width: 18px; height: 18px; }

/* ============================================================
   SCREENS
   ============================================================ */
.screen { display: none; }
.screen.active { display: block; }
.screen-pad { padding-top: 76px; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* image desat → color on hover */
.gwrap { overflow: hidden; }
.gimg { filter: grayscale(1) contrast(1.03); transition: filter .6s ease, transform .9s cubic-bezier(.16,1,.3,1); width: 100%; height: 100%; object-fit: cover; }
.gwrap:hover .gimg { filter: grayscale(0); transform: scale(1.04); }

/* ============================================================
   HERO (editorial split)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; background: var(--bg); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 120px var(--gut) 64px; max-width: 760px; margin-left: auto; width: 100%; }
.hero-left .wrap-inner { max-width: 620px; margin-left: auto; }
.hero-h1 { font-size: clamp(52px, 7.2vw, 104px); line-height: .94; letter-spacing: -.03em; margin: 22px 0 0; }
.hero-h1 .accent { color: var(--orange); }
.hero-lede { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,.74); max-width: 36ch; margin-top: 24px; line-height: 1.6; }
.hero-lede strong { color: var(--white); font-weight: 600; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats { --stat-number-size: clamp(30px,2.8vw,42px); --stat-label-size: 12px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px 32px; margin-top: 48px; width: 100%; }
.hero-networks { display: contents; }
.hero-networks .reach-item { gap: 14px; min-width: 0; }
.hero-networks .reach-item:nth-child(even) { justify-self: end; }
.hero-networks .reach-ic { flex-shrink: 0; width: 48px; height: 48px; }
.hero-networks .reach-ic svg { width: 24px; height: 24px; }
.hero-networks .reach-txt .v { font-size: var(--stat-number-size); white-space: nowrap; }
.hero-networks .reach-txt .l { font-size: var(--stat-label-size); }
.hero-age { grid-column: 1 / -1; grid-row: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; line-height: 1.05; }
.hero-age .stat-v { font-size: var(--stat-number-size); letter-spacing: normal; }
.hero-age .stat-l { font-size: var(--stat-label-size); letter-spacing: .08em; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-v { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 2.4vw, 34px); color: var(--white); letter-spacing: -.02em; }
.stat-l { font-family: var(--body); font-weight: 500; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-social { margin-top: 40px; }

.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(15,15,15,.2) 22%, rgba(15,15,15,0) 55%), linear-gradient(0deg, rgba(15,15,15,.5), rgba(15,15,15,0) 40%); pointer-events: none; }
.hero-badge { position: absolute; right: clamp(18px, 3vw, 40px); bottom: clamp(18px, 3vw, 40px); z-index: 2; display: flex; align-items: center; gap: 10px; background: rgba(15,15,15,.6); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--white); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(245,162,0,.22); }

/* ============================================================
   GALLERY (videos)
   ============================================================ */
.gallery { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px, 3vw, 44px); align-items: start; }
.vcard { display: block; }
.vthumb-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 14px; background: #000; }
.vthumb { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.85); transition: filter .5s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.vcard:hover .vthumb, .casecard:hover .vthumb { filter: grayscale(0); transform: scale(1.05); }
.vthumb-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 55%); }
.vplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; display: grid; place-items: center; background: rgba(15,15,15,.62); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.25); transition: background .3s, transform .3s, border-color .3s; }
.vplay svg { color: #fff; margin-left: 2px; }
.vplay.big { width: 84px; height: 84px; } .vplay.big svg { width: 30px; height: 30px; }
.vplay.sm { width: 54px; height: 54px; } .vplay.sm svg { width: 20px; height: 20px; }
.vcard:hover .vplay, .casecard:hover .vplay { background: var(--orange); border-color: var(--orange); transform: translate(-50%,-50%) scale(1.08); }
.vcard:hover .vplay svg, .casecard:hover .vplay svg { color: #141414; }
.badge { position: absolute; top: 14px; left: 14px; background: var(--orange); color: #141414; font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.vtitle-over { position: absolute; left: 18px; right: 18px; bottom: 16px; color: #fff; font-size: clamp(22px, 2.4vw, 34px); text-transform: uppercase; line-height: 1; }
.vtitle { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 18px; line-height: 1.05; margin-top: 14px; color: var(--white); transition: color .2s; }
.vcard:hover .vtitle { color: var(--orange); }

/* index list */
.idx-list { display: flex; flex-direction: column; }
.idxrow { display: flex; align-items: center; gap: 16px; padding: 16px 6px; border-top: 1px solid var(--line); transition: padding-left .25s; }
.idxrow:last-child { border-bottom: 1px solid var(--line); }
.idxrow:hover { padding-left: 12px; }
.idxnum { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--muted-d); min-width: 28px; transition: color .25s; }
.idxrow:hover .idxnum { color: var(--orange); }
.idxtitle { flex: 1; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.05; color: var(--white); }
.idxgo { color: var(--muted-d); transition: color .25s, transform .25s; }
.idxgo svg { width: 18px; height: 18px; }
.idxrow:hover .idxgo { color: var(--orange); transform: translate(2px,-2px); }

/* grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 32px); }

/* ============================================================
   LIVE SHOWS
   ============================================================ */
.live { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.live-media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.live-media img { width: 100%; height: 100%; object-fit: cover; }
.live-media .tag { position: absolute; left: 18px; top: 18px; background: var(--orange); color: #141414; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: .02em; padding: 7px 14px; border-radius: 8px; }
.live-media.poster {
  aspect-ratio: 4 / 5.25;
  max-width: 540px;
  margin-inline: auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(245,162,0,.14), transparent 48%),
    linear-gradient(180deg, #1a1307 0%, #0f0f0f 24%, #0f0f0f 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.live-media.poster img {
  object-fit: cover;
  object-position: center top;
}
.live-kicker { display: inline-block; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(22px, 2.4vw, 34px); line-height: 1; color: #141414; background: var(--orange); padding: 8px 16px; border-radius: 8px; margin-top: 18px; box-shadow: 0 6px 22px rgba(245,162,0,.28); }
.live h2 { font-size: clamp(40px, 5.6vw, 88px); line-height: .92; }
.live h2 .accent { color: var(--orange); }
.live-lede { color: rgba(255,255,255,.72); font-size: 17px; max-width: 40ch; margin: 22px 0 28px; }
.agenda { display: flex; flex-direction: column; margin-top: 30px; }
.showrow { display: flex; align-items: center; gap: 18px; padding: 16px 14px; border-top: 1px solid var(--line); transition: background .25s; border-radius: 10px; }
.agenda .showrow:last-child { border-bottom: 1px solid var(--line); }
.showrow:hover { background: var(--surface); }
.show-date { text-align: center; min-width: 64px; }
.show-day { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: .9; color: var(--orange); }
.show-day .show-extra { font-size: 14px; color: var(--muted); }
.show-month { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.show-info { flex: 1; }
.show-city { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 19px; line-height: 1; color: var(--white); }
.show-venue { font-family: var(--body); font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.showcta { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; transition: color .25s, gap .25s; }
.showcta .ic svg { width: 14px; height: 14px; }
.showrow:hover .showcta { color: var(--orange); gap: 10px; }
.note { font-family: var(--body); font-size: 12.5px; color: var(--muted-d); margin-top: 16px; }

/* ============================================================
   EMPRESAS TEASER (home)
   ============================================================ */
.teaser { background: var(--cream); color: var(--ink); border-radius: 22px; padding: clamp(32px, 4vw, 72px); position: relative; overflow: hidden; }
.teaser::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--orange); }
.teaser-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.teaser h2 { font-size: clamp(34px, 4.6vw, 66px); line-height: .94; color: var(--ink); }
.teaser h2 .accent { color: var(--orange); }
.teaser p { color: #4a4540; font-size: clamp(16px, 1.2vw, 18px); margin-top: 18px; max-width: 40ch; }
.teaser-img { aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; }
.teaser-img .gimg { object-position: center top; }

/* ============================================================
   SOBRE
   ============================================================ */
.about-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: end; }
.about-head h1 { font-size: clamp(48px, 7vw, 110px); line-height: .9; color: var(--white); letter-spacing: -.03em; }
.about-head h1 .accent { color: var(--orange); }
.about-head p { color: rgba(255,255,255,.74); font-size: clamp(16px, 1.3vw, 19px); }
.about-head p strong { color: var(--white); font-weight: 600; }
.wide-photo { width: 100%; aspect-ratio: 16/8.2; border-radius: 20px; overflow: hidden; }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.founder-photo { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: var(--surface); margin-bottom: 18px; }
.founder-name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 24px; color: var(--white); }
.founder-role { display: flex; align-items: center; gap: 8px; margin: 8px 0 12px; }
.founder-role .bar { width: 20px; height: 2px; background: var(--orange); }
.founder-role span { font-family: var(--body); font-weight: 600; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.founder-bio { font-family: var(--body); font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); }

.photo-ph { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg,#262626,#161616); }
.photo-ph span { font-family: var(--display); font-weight: 800; font-size: clamp(40px,6vw,72px); color: var(--orange); }

/* platforms strip (sobre) */
.about-stats { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 24px; }
.about-stats .stat { gap: 8px; }
.about-stats .stat-v { font-size: clamp(30px, 4vw, 52px); color: var(--orange); }

/* ============================================================
   EMPRESAS
   ============================================================ */
.biz-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.biz-head h1 { font-size: clamp(44px, 6.2vw, 100px); line-height: .9; color: var(--white); letter-spacing: -.03em; }
.biz-head h1 .accent { color: var(--orange); }
.biz-head p { color: rgba(255,255,255,.74); font-size: clamp(16px, 1.3vw, 19px); max-width: 42ch; margin: 22px 0 30px; }
.biz-img { aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; }
.biz-video { aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0,0,0,.4); background: #000; }
.biz-video-link { position: relative; display: block; color: var(--white); }
.biz-video-link img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.7) contrast(1.05); transition: filter .4s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.biz-video-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.08) 58%); }
.biz-video-link:hover img { filter: grayscale(0); transform: scale(1.04); }
.biz-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #141414;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  transition: transform .25s, background .25s;
}
.biz-video-play svg { width: 28px; height: 28px; margin-left: 3px; }
.biz-video-link:hover .biz-video-play { transform: translate(-50%, -50%) scale(1.06); background: var(--orange-soft); }
.biz-video-copy {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
}

/* reach */
.reach-row { display: flex; align-items: center; gap: clamp(20px,4vw,52px); flex-wrap: wrap; }
.reach-label { display: flex; flex-direction: column; gap: 6px; font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-d); }
.reach-label small { font-size: 10px; letter-spacing: .14em; color: var(--orange); }
.reach-grid { display: flex; align-items: center; gap: clamp(18px,3vw,44px); flex-wrap: wrap; }
.reach-item { display: flex; align-items: center; gap: 12px; }
.reach-ic { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--orange); transition: background .2s, border-color .2s; }
.reach-ic svg { width: 16px; height: 16px; }
.reach-item:hover .reach-ic { border-color: var(--orange); }
.reach-txt { display: flex; flex-direction: column; line-height: 1.05; }
.reach-txt .v { font-family: var(--display); font-weight: 800; font-size: clamp(22px,2.4vw,32px); color: var(--white); }
.reach-txt .l { font-family: var(--body); font-weight: 500; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* services */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px,3vw,42px); transition: transform .3s, border-color .3s, background .3s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(245,162,0,.4); background: var(--surface-2); }
.service-num { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--orange); }
.service-title { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px,2.4vw,30px); color: var(--white); margin: 10px 0 12px; }
.service-desc { font-family: var(--body); font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.62); max-width: 38ch; }

/* cases */
.cases-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,26px); }
.casecard { display: block; }
.casecard .case-result { position: absolute; top: 12px; right: 12px; background: var(--orange); color: #141414; font-family: var(--display); font-weight: 800; font-size: 14px; padding: 4px 10px; border-radius: 999px; }
.case-meta { margin-top: 14px; }
.case-kind { font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.case-brand { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 22px; color: var(--white); margin: 6px 0 4px; transition: color .2s; }
.casecard:hover .case-brand { color: var(--orange); }
.case-title { font-family: var(--body); font-size: 13px; color: var(--muted); }

/* brands strip */
.brands-band { background: var(--cream); color: var(--ink); }
.brands-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(26px,5vw,64px); }
.brands-label { display: block; text-align: center; font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: #9a7000; margin-bottom: 32px; }
.brandlogo { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3vw,38px); color: var(--ink); opacity: .45; transition: opacity .25s, color .25s; }
.brandlogo:hover { opacity: 1; color: var(--orange); }
.brands-suffix { font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: #9a7000; }

/* cta band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(38px,5.4vw,84px); line-height: .92; }
.cta-band h2 .accent { color: var(--orange); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); }
.contact-grid h1 { font-size: clamp(46px,6.4vw,104px); line-height: .9; color: var(--white); }
.contact-grid h1 .accent { color: var(--orange); }
.contact-lede { color: rgba(255,255,255,.72); font-size: 17px; max-width: 32ch; margin: 22px 0 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.slink { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: background .2s, border-color .2s; }
.slink:hover { background: var(--surface); border-color: var(--line-strong); }
.slink-ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--orange); display: grid; place-items: center; }
.slink-ic svg { width: 22px; height: 22px; }
.slink-v { font-family: var(--body); font-weight: 600; font-size: 15.5px; color: var(--white); }
.contact-social { display: flex; gap: 12px; margin-top: 4px; }
.contact-social a { flex: 1; justify-content: center; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px,3vw,40px); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { font-family: var(--body); font-weight: 600; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); display: block; margin-bottom: 7px; }
.form input, .form textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font-size: 15px; color: var(--white); outline: none; transition: border-color .2s; }
.form input:focus, .form textarea:focus { border-color: var(--orange); }
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-content: center; border: none; }
.form-status { color: var(--muted); font-size: 14px; line-height: 1.6; }
.form-status a { color: var(--orange); text-decoration: underline; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 420px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; color: #141414; margin-bottom: 20px; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 32px; color: var(--white); }
.form-success p { color: var(--muted); margin-top: 10px; max-width: 24ch; }

/* ============================================================
   FOOTER (compact)
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.footer-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: clamp(28px,4vw,56px); padding-block: clamp(40px,5vw,72px); border-bottom: 1px solid var(--line); }
.footer-cta > * { min-width: 0; }
.footer-contact-intro p { color: var(--muted); max-width: 36ch; margin: 24px 0; line-height: 1.6; }
.footer-contact-intro .contact-links { margin-top: 32px; }
.footer-contact-intro .slink { min-height: 64px; }
.footer-contact-intro .slink-v { overflow-wrap: anywhere; min-width: 0; font-size: clamp(14px,1.2vw,17px); }
.footer-cta h2 { font-size: clamp(30px,4vw,58px); line-height: .98; color: var(--white); }
.footer-cta h2 .accent { color: var(--orange); }
.footer-cta .go { font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .04em; color: var(--orange); overflow-wrap: anywhere; }
.footer-cta .go svg { width: 18px; height: 18px; transition: transform .25s; }
.footer-cta:hover .go svg { transform: translateX(5px); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: clamp(28px,4vw,56px); padding-block: clamp(40px,4vw,56px); }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 30ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--body); font-weight: 700; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a, .footer-col button { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; text-align: left; transition: color .2s; }
.footer-col a:hover, .footer-col button:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; align-items: flex-start; }
.footer-social a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--orange); border-color: var(--orange); }
.footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid var(--line); }
.footer-legal span { color: var(--muted-d); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { order: -1; height: 56vh; min-height: 360px; }
  .hero-media img { object-position: center 15%; }
  .hero-media::after { background: linear-gradient(0deg, var(--bg) 2%, rgba(15,15,15,0) 45%); }
  .hero-left { padding: 40px var(--gut) 64px; max-width: none; margin-left: 0; }
  .hero-left .wrap-inner { margin-left: 0; }
  .gallery, .live, .teaser-grid, .about-head, .biz-head, .contact-grid, .footer-cta { grid-template-columns: 1fr; }
  .live-media { aspect-ratio: 16/10; max-height: 420px; }
  .live-media.poster { aspect-ratio: 4 / 5.15; max-width: min(100%, 420px); }
  .grid-3, .cases-grid, .about-stats { grid-template-columns: repeat(2,1fr); }
  .founders-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .nav-menu, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .hero-stats { --stat-number-size: 30px; --stat-label-size: 10px; gap: 20px 16px; }
  .hero-networks .reach-item { gap: 10px; }
  .hero-networks .reach-ic { width: 40px; height: 40px; }
  .showrow { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 8px 14px; }
  .show-date { min-width: 0; grid-row: span 2; }
  .showcta { grid-column: 2; font-size: 10px; color: var(--orange); }
  .grid-3, .cases-grid, .about-stats, .founders-grid { grid-template-columns: 1fr; }
  .gallery { gap: 28px; }
  .shead { align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
