/* Fight for the Troop — landing page
   Paleta: azul #2E7DF0 (Time Azul) · verde #35C15E (Time Verde) · ouro #D4A537 (final) */

:root {
  --bg: #0A0A0B;
  --bg-2: #0d0d10;
  --card: #131316;
  --card-2: #0f0f12;
  --line: #26262b;
  --line-soft: #1e1e22;
  --ink: #F3F3F4;
  --ink-2: #c8c8cf;
  --ink-3: #97979E;
  --blue: #2E7DF0;
  --green: #35C15E;
  --gold: #D4A537;
  --grad: linear-gradient(90deg, #2E7DF0, #35C15E);
  --r: 14px;
  --head: Oswald, "Arial Narrow", system-ui, sans-serif;
  --body: Barlow, system-ui, -apple-system, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--green); }
::selection { background: var(--gold); color: var(--bg); }

@keyframes ftUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes ftWide { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 22px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, padding .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.is-stuck {
  padding: 8px 22px;
  background: rgba(10, 10, 11, .88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
}
.nav__logo {
  display: flex; align-items: center; flex: none;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav.is-stuck .nav__logo { opacity: 1; pointer-events: auto; }
.nav__logo img { width: 78px; height: auto; object-fit: contain; display: block; transition: width .3s ease; }
.nav__spacer { flex: 1; }
.nav__links { display: flex; gap: 22px; align-items: center; font-family: var(--head); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.nav__links a { color: var(--ink-3); }
.nav__links a:hover { color: var(--ink); }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--head); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bg); background: linear-gradient(100deg, #2E7DF0, #35C15E);
  padding: 16px 30px; border-radius: 8px; font-size: 15px;
  transition: filter .18s ease;
}
.btn:hover { filter: brightness(1.12); color: var(--bg); }
.btn--sm { padding: 11px 20px; font-size: 13px; letter-spacing: .14em; white-space: nowrap; }
.btn--lg { font-size: clamp(14px, 1.8vw, 17px); padding: 18px 34px; }
.btn--ghost { background: var(--card); color: var(--ink); border: 1px solid #3a3a42; }
.btn--ghost:hover { border-color: var(--ink-3); color: var(--ink); filter: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 130px 22px 84px; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .24; filter: grayscale(.5) contrast(1.1); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(46, 125, 240, .16), transparent 60%),
    radial-gradient(90% 70% at 90% 100%, rgba(53, 193, 94, .12), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 11, .72), rgba(10, 10, 11, .94) 70%, var(--bg));
}
.cut { position: absolute; opacity: .9; }
.cut--tl { top: 0; left: 0; width: 180px; height: 180px; background: linear-gradient(135deg, var(--card), transparent 52%); clip-path: polygon(0 0, 100% 0, 0 100%); }
.cut--br { bottom: 0; right: 0; width: 220px; height: 220px; background: linear-gradient(315deg, var(--card), transparent 52%); clip-path: polygon(100% 100%, 100% 0, 0 100%); }
.hero__inner {
  position: relative; max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  animation: ftUp .8s cubic-bezier(.2, .7, .2, 1) both;
}
.hero__emblem { width: min(230px, 52vw); height: auto; margin-bottom: 26px; filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .7)); }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px; }
.tags span { padding: 5px 12px; border-radius: 4px; border: 1px solid currentColor; }
.t-blue { color: var(--blue); }
.t-green { color: var(--green); }
.t-gold { color: var(--gold); }
.hero h1 { font-family: var(--head); font-weight: 700; font-size: clamp(46px, 11vw, 140px); line-height: .86; letter-spacing: -.01em; margin: 0; text-transform: uppercase; text-wrap: balance; }
.hero__rule { width: 180px; height: 5px; margin: 26px 0 22px; background: var(--grad); animation: ftWide .9s .2s cubic-bezier(.2, .7, .2, 1) both; }
.hero__sub { font-family: var(--head); font-weight: 500; font-size: clamp(17px, 2.4vw, 26px); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px; }
.hero__lead { max-width: 760px; font-size: clamp(15px, 1.7vw, 19px); line-height: 1.65; color: var(--ink-3); margin: 0 0 30px; text-wrap: pretty; }
.hero__date {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(212, 165, 55, .55); background: rgba(212, 165, 55, .08); color: var(--gold);
  font-family: var(--head); font-size: clamp(12px, 1.5vw, 15px); letter-spacing: .16em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 8px; margin-bottom: 34px;
}
.hero__date i { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: none; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero__note { max-width: 700px; font-size: 12.5px; line-height: 1.6; color: var(--ink-3); margin: 32px 0 0; }

/* ---------- Seções ---------- */
.sec { max-width: 1180px; margin: 0 auto; padding: 78px 22px 0; scroll-margin-top: 90px; }
.sec--first { padding-top: 88px; }
.sec--narrow { max-width: 900px; }
.eyebrow { font-family: var(--head); font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.title { font-family: var(--head); font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); line-height: 1; text-transform: uppercase; margin: 12px 0 0; }
.title--wide { font-size: clamp(30px, 4.4vw, 54px); max-width: 900px; text-wrap: balance; }
.rule { width: 96px; height: 4px; margin: 20px 0 34px; background: var(--grad); }
.rule--tight { margin-bottom: 26px; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 34px; align-items: stretch; }
.split--top { align-items: stretch; }
.split > .img-r { aspect-ratio: auto; height: 100%; min-height: 280px; max-height: 560px; }
.prose { display: flex; flex-direction: column; gap: 18px; font-size: 16.5px; line-height: 1.72; color: var(--ink-2); }
.prose p { margin: 0; }
.b-blue { color: var(--blue); }
.b-green { color: var(--green); }
.b-gold { color: var(--gold); }

.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 12px; height: 100%; min-height: 340px; }
.photo-grid .span2 { grid-column: span 2; }
.photo-grid .img-r { aspect-ratio: auto; height: 100%; }
.img-r { width: 100%; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); display: block; }
.ar-1 { aspect-ratio: 1; }
.ar-43 { aspect-ratio: 4 / 3; }
.gray { filter: grayscale(.25); }

.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
  margin: 46px 0 0; padding: 20px;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  font-family: var(--head); font-size: clamp(12px, 1.5vw, 16px); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
}

/* ---------- Grids e cards ---------- */
.grid { display: grid; gap: 16px; }
.grid--req { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--people { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.grid--gallery { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.mt { margin-top: 16px; }
.mt-lg { margin-top: 26px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.card--flat { background: var(--card-2); }
.card--blue { border-color: rgba(46, 125, 240, .45); }
.card--green { border-color: rgba(53, 193, 94, .45); }
.card--gold { border: 1px solid rgba(212, 165, 55, .55); background: linear-gradient(180deg, rgba(212, 165, 55, .16), rgba(212, 165, 55, .04)); }
.card__label { font-family: var(--head); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); }
.card__text { font-size: 16px; line-height: 1.65; color: #e3e3e8; margin-top: 10px; }

.req { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; transition: border-color .18s ease; }
.req:hover { border-color: var(--blue); }
.req__n { font-family: var(--head); font-size: 13px; font-weight: 600; letter-spacing: .2em; color: var(--ink-3); }
.req__t { font-size: 16px; line-height: 1.5; color: #e3e3e8; margin-top: 10px; }

.weights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.weights span { font-family: var(--head); font-size: 22px; color: var(--ink); border: 1px solid #2f2f36; border-radius: 8px; padding: 8px 16px; }

/* ---------- Etapas ---------- */
.steps { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: grid; grid-template-columns: minmax(86px, 120px) 1fr; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
  transition: border-color .18s ease;
}
.step:hover { border-color: #3a3a42; }
.step__date { border-right: 1px solid var(--line); padding-right: 14px; }
.step__day { font-family: var(--head); font-weight: 700; font-size: clamp(20px, 2.6vw, 30px); line-height: 1; }
.step__month { font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.step__title { font-family: var(--head); font-weight: 600; font-size: clamp(17px, 2.2vw, 23px); letter-spacing: .03em; text-transform: uppercase; }
.step__desc { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin-top: 6px; }
.step--final { border: 1px solid rgba(212, 165, 55, .55); background: linear-gradient(180deg, rgba(212, 165, 55, .14), rgba(212, 165, 55, .04)); padding: 26px 22px; }
.step--final .step__date { border-right-color: rgba(212, 165, 55, .35); }
.step--final .step__day { font-size: clamp(26px, 3.4vw, 44px); color: var(--gold); }
.step--final .step__month { color: var(--gold); }
.step--final .step__title { font-weight: 700; font-size: clamp(22px, 3.2vw, 38px); line-height: 1.02; margin-top: 8px; }
.step--final .step__desc { font-size: 15.5px; color: var(--ink-2); margin-top: 10px; }

/* ---------- Times ---------- */
.vs { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--bg-2); }
.vs__split { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(46, 125, 240, .28) 0 48%, rgba(10, 10, 11, .9) 48% 52%, rgba(53, 193, 94, .26) 52% 100%); }
.vs__row { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px; align-items: center; padding: 44px 26px; }
.vs__team { text-align: center; }
.vs__name { font-family: var(--head); font-weight: 700; font-size: clamp(26px, 4vw, 46px); line-height: 1; text-transform: uppercase; }
.vs__meta { font-family: var(--head); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; margin-top: 10px; }
.vs__meta--blue { color: #8fc0ff; }
.vs__meta--green { color: #8ee3aa; }
.vs__x { display: flex; justify-content: center; align-items: center; font-family: var(--head); font-weight: 700; font-size: clamp(44px, 7vw, 88px); line-height: 1; color: var(--gold); text-shadow: 0 6px 30px rgba(212, 165, 55, .4); }

/* ---------- Chaveamento ---------- */
.bracket { border: 1px solid var(--line); border-radius: var(--r); background: var(--card-2); padding: 28px 22px; }
.bracket__lead { margin: 0 0 26px; font-size: 16px; line-height: 1.6; color: var(--ink-3); max-width: 720px; }
.bracket__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; align-items: center; }
.bracket__col { display: flex; flex-direction: column; gap: 12px; }
.sf { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.sf--blue { border-color: rgba(46, 125, 240, .4); }
.sf--green { border-color: rgba(53, 193, 94, .4); }
.sf__label { font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sf__match { font-family: var(--head); font-size: clamp(17px, 2.2vw, 22px); text-transform: uppercase; margin-top: 8px; }
.arrow { display: flex; align-items: center; justify-content: center; gap: 8px; }
.arrow i { height: 1px; flex: 1; }
.arrow i:first-child { background: linear-gradient(90deg, var(--blue), var(--gold)); }
.arrow i:last-child { background: linear-gradient(90deg, var(--gold), var(--green)); }
.arrow span { font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.final { text-align: center; padding: 24px; }
.final__label { font-family: var(--head); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.final__match { font-family: var(--head); font-weight: 600; font-size: clamp(18px, 2.4vw, 24px); text-transform: uppercase; margin-top: 10px; }
.bracket__foot {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--head); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}

/* ---------- Números ---------- */
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; text-align: center; }
.stat__v { font-family: var(--head); font-weight: 700; font-size: clamp(34px, 4.6vw, 54px); line-height: 1; }
.stat__l { font-family: var(--head); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 10px; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { font-size: 15px; color: #e3e3e8; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; transition: border-color .18s ease; }
.chips span:hover { border-color: var(--green); }

/* ---------- Staff ---------- */
.roster { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.roster b { font-family: var(--head); font-weight: 400; font-size: clamp(19px, 2.4vw, 26px); text-transform: uppercase; }
.roster small { font-size: 14.5px; color: var(--ink-3); }
.note { font-size: 13px; color: var(--ink-3); margin: 14px 0 0; }
.person { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.person img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; filter: grayscale(.15); display: block; }
.person img.person__img--mid { object-position: center 30%; }
.person__body { padding: 18px; }
.person__name { font-family: var(--head); font-size: 19px; text-transform: uppercase; }
.person__role { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin-top: 6px; }

/* ---------- Em jogo ---------- */
.warn {
  border: 1px solid rgba(212, 165, 55, .5); background: rgba(212, 165, 55, .07); border-radius: var(--r); padding: 20px;
  color: var(--gold); font-family: var(--head); font-size: 14.5px; letter-spacing: .06em; line-height: 1.55; text-transform: uppercase;
}
.p-lead { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); margin: 0 0 16px; }

/* ---------- Locais ---------- */
.place { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.place--gold { border-color: rgba(212, 165, 55, .4); }
.place img { width: 100%; height: 260px; object-fit: cover; display: block; flex: none; }
.place__body { padding: 24px; flex: 1; }
.place__kind { font-family: var(--head); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.place__name { font-family: var(--head); font-weight: 700; font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; margin-top: 10px; }
.place__addr { font-size: 15.5px; line-height: 1.6; color: var(--ink-3); margin-top: 8px; }

/* ---------- Gringo Super Fight ---------- */
.gsf { position: relative; border: 1px solid rgba(212, 165, 55, .4); border-radius: var(--r); overflow: hidden; }
.gsf__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.gsf__veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 10, 11, .95), rgba(10, 10, 11, .7)); }
.gsf__inner { position: relative; padding: 44px 26px; }
.bout { background: rgba(19, 19, 22, .9); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.bout--gold { border-color: rgba(212, 165, 55, .45); }
.bout__n { font-family: var(--head); font-weight: 700; font-size: 44px; line-height: 1; }
.bout__t { font-family: var(--head); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-top: 10px; }
.bout__d { font-size: 15px; color: var(--ink-3); margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: transparent; border: 0; padding: 20px 22px; cursor: pointer;
  font-family: var(--head); font-weight: 500; font-size: clamp(16px, 2vw, 20px); letter-spacing: .03em; text-transform: uppercase; color: var(--ink);
  transition: background .18s ease;
}
.faq__q:hover { background: #17171b; }
.faq__q span { flex: 1; }
.faq__sign { font-family: var(--head); font-size: 24px; line-height: 1; color: var(--gold); flex: none; }
.faq__a { padding: 18px 22px 22px; font-size: 16px; line-height: 1.7; color: var(--ink-3); border-top: 1px solid var(--line-soft); }
.faq__item[hidden] { display: none; }

/* ---------- CTA final ---------- */
.cta { max-width: 1180px; margin: 78px auto 0; padding: 0 22px; }
.cta__box { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; text-align: center; }
.cta__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 100% at 20% 0%, rgba(46, 125, 240, .22), transparent 60%),
    radial-gradient(80% 100% at 85% 100%, rgba(53, 193, 94, .2), transparent 60%),
    var(--bg-2);
}
.cta__inner { position: relative; padding: 64px 26px; }
.cta__inner img { width: 110px; height: auto; margin-bottom: 24px; }
.cta__inner h2 { font-family: var(--head); font-weight: 700; font-size: clamp(34px, 6.4vw, 80px); line-height: .94; text-transform: uppercase; margin: 0; }
.cta__rule { width: 160px; height: 5px; margin: 26px auto; background: var(--grad); }
.cta__dates { font-family: var(--head); font-size: clamp(15px, 2vw, 21px); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.cta__sub { font-size: 16.5px; line-height: 1.65; color: var(--ink-3); margin: 0 auto 32px; max-width: 600px; }

/* ---------- Rodapé ---------- */
.footer { margin-top: 78px; border-top: 1px solid var(--line-soft); padding: 52px 22px 40px; }
.footer__in { max-width: 1180px; margin: 0 auto; }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.footer__top img { width: 64px; height: 64px; object-fit: contain; }
.footer__name { font-family: var(--head); font-size: clamp(13px, 1.6vw, 17px); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.footer__tag { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px;
  margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line-soft);
  font-size: 14.5px; line-height: 1.65; color: var(--ink-3);
}
.footer__h { font-family: var(--head); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.footer__cubo { display: inline-block; transition: opacity .18s ease; }
.footer__cubo:hover { opacity: .75; }
.footer__cubo img { width: 150px; height: auto; display: block; }
.footer__legal { font-size: 12.5px; color: var(--ink-3); margin: 28px 0 0; }

@media (max-width: 860px) {
  .nav { gap: 14px; padding: 8px 16px; }
  .nav__links { display: none; }
  .nav__logo img { width: 62px; }
  .hero { padding: 104px 18px 64px; }
  .marquee__item { height: 170px; }
  .sec, .cta { padding-left: 18px; padding-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__inner, .hero__rule { animation: none; }
}

/* ---------- Carrossel (galeria) ---------- */
.marquee { position: relative; overflow: hidden; padding: 4px 0; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: none; height: 220px; display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; padding: 6px;
}
.marquee__item img { height: 100%; width: auto; max-width: none; object-fit: contain; border-radius: 8px; display: block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}


/* ---------- Faixa institucional: a porta de entrada ---------- */
.gate {
  position: relative;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(46, 125, 240, .18), transparent 60%),
    linear-gradient(180deg, #152A4E, #101F3B);
  border-top: 1px solid rgba(46, 125, 240, .28);
  border-bottom: 1px solid rgba(46, 125, 240, .28);
}
.gate::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 7px;
}
.gate__inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 74px 22px; }
.gate__head { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.gate__body {
  display: grid; grid-template-columns: minmax(320px, 1.2fr) minmax(280px, .8fr);
  gap: 44px; align-items: start;
}
.gate__seal {
  width: 200px; flex: none; margin-bottom: 0; height: auto; display: block; margin-bottom: 26px;
  background: #fff; border-radius: 8px; padding: 12px 16px; box-sizing: content-box;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
}
.gate__title { flex: 1 1 420px;
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px, 3.9vw, 48px); line-height: 1.02; letter-spacing: -.005em;
  margin: 0; text-wrap: balance;
}
.gate .rule { margin: 22px 0 26px; }
.prose--gate { color: #d8e1f2; font-size: 16px; }
.gate__close { border-left: 3px solid var(--gold); padding-left: 18px; }
.gate__kicker {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(19px, 2.4vw, 27px); line-height: 1.08; letter-spacing: .02em; color: var(--gold);
}
.gate__close p { margin: 8px 0 0; font-size: 16px; line-height: 1.55; color: #e8eefa; }
.gate__note {
  margin: 22px 0 0; font-size: 12.5px; line-height: 1.65; color: #c2ccdd;
  background: rgba(212, 165, 55, .08); border: 1px solid rgba(212, 165, 55, .32);
  border-radius: 10px; padding: 14px 16px;
}
.gate__note span { color: var(--gold); font-weight: 700; margin-right: 3px; }
.gate__media { position: relative; }
.gate__media img {
  width: 100%; height: auto; display: block; border-radius: var(--r);
  border: 1px solid rgba(46, 125, 240, .4); object-fit: cover; aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
@media (max-width: 860px) {
  .gate__inner { padding: 58px 22px; }
  .gate__body { grid-template-columns: 1fr; gap: 30px; }
  .gate__head { gap: 18px; }
}

/* ---------- Mosaico institucional ---------- */
.p-lead--tight { margin-top: -14px; max-width: 780px; }
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
.mosaic__item {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 4 / 3; border-radius: var(--r); border: 1px solid rgba(46, 125, 240, .35);
  filter: saturate(.94);
}
.mosaic__item--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 720px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item--wide { grid-column: span 2; }
}
