:root {
  --bg: oklch(99% 0 0);
  --surface: oklch(98% 0.004 260);
  --fg: oklch(18% 0.075 265);
  --muted: oklch(48% 0.025 265);
  --border: oklch(88% 0.012 265);
  --accent: oklch(51% 0.21 255);
  --font-display: 'WF Visual Sans Variable', 'Arial', system-ui, sans-serif;
  --font-body: 'WF Visual Sans Variable', 'Arial', system-ui, sans-serif;
  --font-mono: 'Inconsolata', ui-monospace, SFMono-Regular, Menlo, monospace;
  --navy: #041f46;
  --navy-2: #074ea2;
  --red: #ed1b2e;
  --blue: #075fd8;
  --blue-hover: #0447a6;
  --white: #FAFAFA;
  --ink: #080808;
  --line: #d8d8d8;
  --shadow: rgba(0,0,0,0) 0px 84px 24px, rgba(0,0,0,0.01) 0px 54px 22px,
            rgba(0,0,0,0.04) 0px 30px 18px, rgba(0,0,0,0.08) 0px 13px 13px,
            rgba(0,0,0,0.09) 0px 3px 7px;
  --max: 1720px;
  --gutter: clamp(20px, 5vw, 88px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--font-body); line-height: 1.5; overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border); backdrop-filter: blur(16px);
}
.nav {
  width: min(var(--max), calc(100% - var(--gutter)*2));
  min-height: 62px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; color: var(--navy); }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; max-width: clamp(210px, 19vw, 320px); }
.brand small { color: var(--muted); font-size: 9px; letter-spacing: 0.55px; text-transform: uppercase; font-weight: 600; line-height: 1.18; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: clamp(12px, 1.8vw, 24px); font-size: 13px; color: color-mix(in oklch, var(--fg) 78%, white); }
.nav-links a { padding: 8px 0; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.social-link { min-height: 40px; display: inline-flex; align-items: center; color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.social-link:hover { color: var(--blue); }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 4px; background: white; color: var(--navy); cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
  min-height: 40px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; border-radius: 4px; border: 1px solid transparent;
  padding: 10px 16px; font-weight: 600; letter-spacing: -0.01em; cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, box-shadow 180ms ease;
}
.btn:hover { box-shadow: 0 6px 16px rgba(4,58,122,0.16); }
.btn.primary { background: var(--blue); color: white; }
.btn.primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn.dark { background: var(--navy); color: white; }
.btn.dark:hover { background: #032f61; }
.btn.red { background: var(--red); color: white; }
.btn.red:hover { background: #b70820; box-shadow: 0 6px 16px rgba(210,10,37,0.18); }
.btn.ghost { border-color: color-mix(in oklch, var(--navy) 18%, white); background: white; color: var(--navy); }
.btn.ghost:hover { background: color-mix(in oklch, var(--blue) 7%, white); border-color: color-mix(in oklch, var(--blue) 34%, white); }

/* ===== GAMES AGENDA ===== */
.games-agenda { background: var(--navy); color: white; padding: clamp(48px, 7vw, 88px) 0; position: relative; overflow: hidden; }
.games-agenda::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(237,27,46,0.15), transparent 50%), radial-gradient(circle at 20% 80%, rgba(7,95,216,0.2), transparent 50%); pointer-events: none; }
.games-agenda .wrap { position: relative; z-index: 1; }
.games-agenda h2 { color: white; margin-bottom: 8px; }
.games-agenda .lead { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.games-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.games-scroll::-webkit-scrollbar { height: 6px; }
.games-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 3px; }
.games-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
.game-card { position: relative; flex: 0 0 320px; scroll-snap-align: start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 24px; display: grid; gap: 16px; transition: transform 200ms ease, box-shadow 200ms ease; }
.game-card:has(.game-embed) { flex: 0 0 380px; }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.game-card.live { border-color: var(--red); box-shadow: 0 0 0 2px rgba(237,27,46,0.3); }
.game-card .live-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 8px; border-radius: 4px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
.game-matchup { display: flex; align-items: center; justify-content: center; gap: 16px; }
.game-team { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.game-team img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.1); padding: 4px; }
.game-team span { font-size: 13px; font-weight: 600; max-width: 100px; line-height: 1.2; }
.game-vs { font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.game-info { text-align: center; display: grid; gap: 4px; }
.game-info .game-category { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); }
.game-info .game-date { font-size: 15px; font-weight: 600; }
.game-info .game-time { font-size: 13px; color: rgba(255,255,255,0.7); }
.game-info .game-location { font-size: 12px; color: rgba(255,255,255,0.5); }
.game-score { text-align: center; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.no-games { text-align: center; padding: 48px 24px; color: rgba(255,255,255,0.5); font-size: 16px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: clamp(300px, 38svh, 400px); overflow: hidden; --mx: 68%; --my: 34%; --liquid-x: 0px; --liquid-y: 0px; --fabric-x: 0px; --fabric-y: 0px; background: radial-gradient(circle at var(--mx) var(--my), rgba(237,27,46,0.12), transparent 29%), linear-gradient(130deg, #04275d 0%, #075fd8 56%, #031b42 100%); color: white; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent); opacity: 0.55; }
.hero-liquid { position: absolute; inset: -18%; pointer-events: none; opacity: 0.86; filter: saturate(1.18) contrast(1.04); transform: translate3d(var(--liquid-x), var(--liquid-y), 0); transition: transform 260ms ease-out; }
.hero-liquid::before, .hero-liquid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(42% 30% at calc(var(--mx) + 2%) calc(var(--my) + 6%), rgba(255,255,255,0.18), transparent 62%), radial-gradient(38% 34% at calc(100% - var(--mx)) calc(var(--my) + 10%), rgba(237,27,46,0.1), transparent 64%), radial-gradient(34% 30% at calc(var(--mx) - 18%) calc(100% - var(--my)), rgba(7,95,216,0.3), transparent 66%); mix-blend-mode: screen; animation: liquidDrift 10s ease-in-out infinite alternate; }
.hero-liquid::after { inset: -6%; opacity: 0.54; background: repeating-linear-gradient(105deg, rgba(255,255,255,0.11) 0 1px, transparent 1px 16px), repeating-linear-gradient(18deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 20px); mix-blend-mode: soft-light; transform: translate3d(var(--fabric-x), var(--fabric-y), 0) skewY(-3deg); animation: fabricShift 8s ease-in-out infinite alternate; }
@keyframes liquidDrift { from { transform: translate3d(-1.5%, -1%, 0) scale(1.02) rotate(-1deg); } to { transform: translate3d(1.5%, 1%, 0) scale(1.06) rotate(1deg); } }
@keyframes fabricShift { from { background-position: 0 0, 0 0; } to { background-position: 44px 26px, -28px 38px; } }
.hero-inner { position: relative; width: min(var(--max), calc(100% - var(--gutter)*2)); margin: 0 auto; min-height: clamp(300px, 38svh, 400px); display: grid; grid-template-columns: minmax(0, 0.95fr); align-items: center; gap: clamp(28px, 5vw, 86px); padding: clamp(18px, 2.5vw, 30px) 0; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: color-mix(in oklch, white 82%, var(--blue)); font-weight: 700; }
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--blue); display: inline-block; }
h1 { margin-top: 10px; max-width: 760px; font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 62px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 650; text-wrap: balance; }
.hero-copy { margin-top: 14px; max-width: 620px; color: color-mix(in oklch, white 78%, #aeb8d9); font-size: clamp(16px, 1.8vw, 20px); line-height: 1.45; }
.hero-cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { margin-top: 24px; padding-top: 16px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,0.2); max-width: 620px; }
.hero-meta div { padding: 0 18px 0 0; border-right: 1px solid rgba(255,255,255,0.16); }
.hero-meta div:last-child { border-right: 0; }
.hero-meta strong { display: block; font-size: clamp(24px, 3vw, 34px); line-height: 1; color: white; font-variant-numeric: tabular-nums; }
.hero-meta span { margin-top: 7px; display: block; color: color-mix(in oklch, white 68%, #b8c3e4); font-size: 13px; }

/* ===== PARTNER STRIP ===== */
.partner-strip { border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); background: var(--navy); color: white; overflow: hidden; }
.partner-track { width: max-content; min-height: 64px; display: flex; align-items: center; gap: 0; animation: partnerMarquee 34s linear infinite; }
.partner-strip:hover .partner-track { animation-play-state: paused; }
.partner-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; color: rgba(255,255,255,0.76); }
.partner-item strong { font-family: var(--font-body); font-size: 16px; letter-spacing: -0.01em; color: white; text-transform: none; }
.partner-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(7,95,216,0.18); }
@keyframes partnerMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS GENERAL ===== */
section { padding: clamp(64px, 9vw, 118px) 0; }
.wrap { width: min(var(--max), calc(100% - var(--gutter)*2)); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.45fr); gap: clamp(20px, 5vw, 70px); align-items: end; margin-bottom: clamp(30px, 5vw, 58px); }
.eyebrow { display: inline-block; margin-bottom: 14px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--navy-2); }
h2 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.035em; color: var(--navy); text-wrap: balance; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.55; }

/* ===== TRAJECTORY ===== */
.trajectory { background: linear-gradient(90deg, transparent 49.95%, color-mix(in oklch, var(--border) 72%, transparent) 50%, transparent 50.05%), var(--bg); }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.moment { background: white; padding: clamp(18px, 2.4vw, 26px); min-height: 190px; display: grid; align-content: space-between; gap: 18px; }
.moment time { font-family: var(--font-mono); color: var(--blue); font-weight: 700; letter-spacing: 1px; font-size: 12px; }
.moment h3 { color: var(--navy); font-size: clamp(18px, 1.7vw, 23px); line-height: 1.08; letter-spacing: -0.02em; }
.moment p, .card p, .coach p, .doc p, .product p { color: var(--muted); font-size: 14px; line-height: 1.45; }

/* ===== TEAM ===== */
.team { background: var(--surface); border-block: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.coach { background: var(--navy); color: white; padding: clamp(28px, 4vw, 46px); min-height: 480px; display: grid; align-content: space-between; position: relative; overflow: hidden; }
.coach::after { content: "AJOBB"; position: absolute; right: -18px; bottom: -28px; font-size: clamp(82px, 13vw, 174px); line-height: 0.8; font-weight: 700; letter-spacing: -0.08em; color: rgba(255,255,255,0.05); }
.coach .tag { width: fit-content; background: var(--blue); color: white; border-radius: 4px; padding: 7px 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.coach h3 { margin-top: 26px; font-size: clamp(36px, 5vw, 68px); line-height: 0.98; letter-spacing: -0.045em; }
.coach p { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 560px; }
.coach-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; position: relative; z-index: 1; }
.coach-stats span { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 12px; color: rgba(255,255,255,0.66); font-size: 13px; }
.coach-stats strong { display: block; color: white; font-size: 28px; font-variant-numeric: tabular-nums; }
.players { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--border); }
.player { background: white; padding: clamp(22px, 3vw, 34px); min-height: 239px; display: grid; align-content: space-between; }
.avatar { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--red)); color: white; display: grid; place-items: center; font-weight: 700; letter-spacing: -0.04em; }
.player h3 { color: var(--navy); margin-top: 20px; font-size: 24px; }
.player small { color: var(--muted); font-weight: 600; }
.team-photo { margin: 18px 0 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--navy); position: relative; min-height: 280px; }
.team-photo img { width: 100%; height: min(56vw, 520px); object-fit: cover; object-position: center 42%; opacity: 0.92; }
.team-photo figcaption { position: absolute; left: 18px; bottom: 18px; max-width: 520px; background: rgba(3,14,48,0.82); color: white; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; padding: 12px 14px; font-size: 14px; }

/* ===== ASSOCIATION ===== */
.association { background: linear-gradient(180deg, white 0%, var(--surface) 100%); border-bottom: 1px solid var(--border); }
.association-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.association-column { border: 1px solid var(--border); border-radius: 8px; background: white; padding: 18px 14px 20px; display: grid; grid-template-rows: auto 1fr; gap: 18px; min-height: 392px; box-shadow: rgba(0,0,0,0) 0px 54px 22px, rgba(0,0,0,0.03) 0px 24px 18px, rgba(0,0,0,0.07) 0px 8px 12px; }
.association-column h3 { min-height: 50px; color: var(--navy); font-size: clamp(18px, 1.6vw, 25px); line-height: 1.06; letter-spacing: -0.03em; text-transform: uppercase; }
.association-column h3 span { display: block; margin-top: 7px; font-family: var(--font-mono); color: var(--blue); font-size: 11px; letter-spacing: 1px; }
.member-stack { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 16px; }
.member { width: 100%; display: grid; justify-items: center; align-content: start; gap: 6px; text-align: center; min-height: 110px; }
.member-photo { width: clamp(56px, 5vw, 80px); aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 2px solid white; box-shadow: 0 0 0 1px var(--border), 0 8px 16px rgba(4,31,70,0.12); background: var(--surface); }
.member strong { color: var(--navy); font-size: 13px; line-height: 1.15; }
.member small { color: var(--muted); font-size: 11px; line-height: 1.25; max-width: 130px; }

/* ===== SPONSORS ===== */
.sponsors { background: var(--navy); color: white; }
.sponsors h2 { color: white; }
.sponsors .lead { color: rgba(255,255,255,0.7); }
.sponsors .eyebrow { color: rgba(255,255,255,0.5); }
.sponsor-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.sponsor { min-height: 120px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: grid; place-items: center; padding: 24px; text-align: center; color: white; background: rgba(255,255,255,0.04); transition: transform 200ms, background 200ms; }
.sponsor:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.sponsor img { max-height: 56px; max-width: 160px; object-fit: contain; margin: 0 auto; }
.sponsor strong { font-size: 15px; letter-spacing: -0.01em; display: block; color: white; }
.sponsor.tier-diamante { min-height: 160px; border-color: rgba(147,197,253,0.4); background: rgba(255,255,255,0.06); }
.sponsor.tier-diamante img { max-height: 72px; max-width: 200px; }
.sponsor.tier-diamante strong { font-size: 18px; }
.sponsor.tier-ouro { border-color: rgba(253,230,138,0.4); background: rgba(255,255,255,0.05); }
.sponsor.tier-prata { border-color: rgba(255,255,255,0.15); }
.sponsor.tier-bronze { border-color: rgba(253,186,116,0.3); background: rgba(255,255,255,0.03); }

/* ===== INSTAGRAM ===== */
.instagram-section { background: var(--surface); border-block: 1px solid var(--border); padding: clamp(48px, 7vw, 88px) 0; }
.instagram-section h2 { color: var(--navy); }
.stories-scroll { display: flex; gap: 18px; overflow-x: auto; padding: 12px 0 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.stories-scroll::-webkit-scrollbar { height: 4px; }
.stories-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.story-item { flex: 0 0 auto; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: transform 180ms ease; }
.story-item:hover { transform: scale(1.05); }
.story-ring { width: 82px; height: 82px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.story-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid white; }
.story-item span { font-size: 11px; color: var(--muted); max-width: 80px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ig-posts-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.ig-posts-grid blockquote { margin: 0; min-width: 0; }
.ig-fallback { text-align: center; padding: 32px; background: white; border: 1px solid var(--border); border-radius: 8px; }
.ig-fallback a { color: var(--blue); font-weight: 600; }

/* ===== DOCS & STORE ===== */
.docs-store { background: var(--navy); color: white; }
.docs-store h2 { color: white; }
.docs-store .lead { color: rgba(255,255,255,0.72); }
.store-section { background: white; color: var(--fg); }
.store-section h2 { color: var(--navy); }
.store-section .panel { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.store-section .panel-head { border-bottom: 1px solid var(--border); }
.store-section .panel-head h3, .store-section .product strong { color: var(--navy); }
.store-section .product { border-bottom: 1px solid var(--border); }
.store-section .product p { color: var(--muted); }
.store-section .quantity { border-color: var(--border); }
.store-section .quantity button { color: var(--navy); }
.store-section .quantity output { color: var(--navy); }
.panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; overflow: hidden; }
.panel-head { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.panel-head h3 { font-size: 24px; letter-spacing: -0.02em; }
.filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { min-height: 36px; border: 1px solid rgba(255,255,255,0.22); background: transparent; color: white; border-radius: 999px; padding: 7px 12px; cursor: pointer; font-size: 13px; }
.chip.is-active { background: white; color: var(--navy); }
.doc-list, .product-list { display: grid; }
.doc, .product { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.doc:last-child, .product:last-child { border-bottom: 0; }
.doc strong, .product strong { display: block; color: white; font-size: 18px; }
.doc p, .product p { margin-top: 4px; color: rgba(255,255,255,0.64); font-size: 14px; }
.doc a { white-space: nowrap; border: 1px solid rgba(255,255,255,0.22); border-radius: 4px; padding: 10px 12px; color: white; font-weight: 700; font-size: 13px; }
.product-media { width: 126px; height: 154px; border-radius: 8px; background: radial-gradient(circle at 50% 8%, white 0 12px, transparent 13px), linear-gradient(90deg, transparent 42%, rgba(255,255,255,0.22) 42% 58%, transparent 58%), linear-gradient(140deg, var(--red), var(--navy-2) 58%, white 59% 70%, var(--blue) 71%); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.26), 0 18px 34px rgba(4,31,70,0.16); }
.product { grid-template-columns: auto 1fr auto; align-items: center; }
.product-actions { display: grid; gap: 10px; justify-items: stretch; }
.quantity { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.22); border-radius: 4px; overflow: hidden; min-height: 44px; }
.quantity button { width: 42px; height: 42px; border: 0; background: transparent; color: white; cursor: pointer; }
.quantity output { min-width: 32px; text-align: center; font-weight: 700; }

/* ===== SUPPORT & JOIN ===== */
.support { background: linear-gradient(90deg, rgba(210,10,37,0.08), transparent 38%), white; }
.support-box { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr); gap: clamp(24px, 5vw, 72px); align-items: center; border: 1px solid var(--border); border-radius: 8px; padding: clamp(28px, 5vw, 58px); background: white; box-shadow: var(--shadow); }
.support-list { display: grid; gap: 14px; margin-top: 28px; }
.support-list div { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; color: var(--muted); }
.check { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: white; display: grid; place-items: center; font-weight: 700; line-height: 1; }
.support-card { background: var(--navy); color: white; border-radius: 8px; padding: 28px; }
.support-card strong { display: block; font-size: 42px; letter-spacing: -0.04em; line-height: 1; }
.support-card span { display: block; margin-top: 10px; color: rgba(255,255,255,0.68); }
.support-card .btn { width: 100%; margin-top: 24px; }
.join { padding: 0; background: var(--navy); color: white; }
.join-inner { width: min(var(--max), calc(100% - var(--gutter)*2)); margin: 0 auto; min-height: 540px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr); gap: clamp(28px, 5vw, 78px); align-items: center; padding: clamp(58px, 8vw, 96px) 0; }
.join h2 { color: white; }
.join p { color: rgba(255,255,255,0.72); margin-top: 20px; font-size: 20px; }
.join-actions { background: white; color: var(--navy); border-radius: 8px; padding: clamp(24px, 4vw, 36px); display: grid; gap: 16px; }
.join-actions h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -0.03em; color: var(--navy); }
.join-actions p { margin: 0; color: var(--muted); font-size: 16px; }
.cta-stack { display: grid; gap: 10px; margin-top: 8px; }
.cta-stack .btn { width: 100%; }

/* ===== FOOTER ===== */
.site-footer { background: #020817; color: rgba(255,255,255,0.68); padding: 32px 0; font-size: 14px; }
.footer-inner { width: min(var(--max), calc(100% - var(--gutter)*2)); margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 680ms ease, transform 680ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links { position: fixed; inset: 62px 0 auto 0; display: none; padding: 20px 16px 24px; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); justify-self: stretch; }
  .nav-links.is-open { display: grid; gap: 4px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-actions .primary { display: none; }
  .social-link { display: none; }
  .hero-inner, .join-inner { grid-template-columns: 1fr; }
  .hero, .hero-inner { min-height: auto; }
  .timeline, .sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-box { grid-template-columns: 1fr; }
  .association-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product { grid-template-columns: auto 1fr; }
  .product-actions { grid-column: 1 / -1; justify-items: start; }
}
@media (max-width: 900px) {
  .association-board { grid-template-columns: 1fr; gap: 14px; }
  .association-column { min-height: auto; padding: 18px; }
  .association-column h3 { min-height: auto; }
  .member-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; justify-items: center; gap: 18px 12px; }
  .member-stack .member:only-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  section { padding: 52px 0; }
  .section-head, .team-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; margin-bottom: 28px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); padding: 16px 0; }
  .hero-meta div:last-child { border-bottom: 0; }
  .players, .timeline, .sponsor-grid { grid-template-columns: 1fr; }
  .coach-stats { grid-template-columns: 1fr; }
  .coach { min-height: auto; gap: 28px; }
  .panel-head { align-items: flex-start; flex-direction: column; }
  .doc { grid-template-columns: 1fr; }
  .doc a { width: fit-content; }
  .team-photo figcaption { position: static; border-radius: 0; max-width: none; }
  .team-photo { min-height: auto; }
  .team-photo img { height: auto; max-height: 360px; }
  .game-card { flex: 0 0 280px; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 430px) {
  :root { --gutter: 12px; }
  .nav, .wrap, .join-inner, .footer-inner { width: min(100% - 24px, var(--max)); }
  .brand span { font-size: 14px; }
  .hero-inner { width: min(100% - 24px, var(--max)); padding: 22px 0 14px; }
  .hero-cta .btn { width: 100%; }
  .product { grid-template-columns: 1fr; }
  .product-media { width: 100%; max-width: 132px; }
  .support-box { padding: 22px; }
  .game-card { flex: 0 0 260px; padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}

/* ===== GAME STREAM EMBED ===== */
.game-embed {
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.game-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== SPONSOR TIERS ===== */
.sponsor-tier { margin-bottom: 32px; }
.sponsor-tier:last-child { margin-bottom: 0; }
.tier-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; padding: 5px 12px; border-radius: 4px; }
.tier-label.diamante { background: rgba(147,197,253,0.15); color: #93c5fd; }
.tier-label.ouro { background: rgba(253,230,138,0.15); color: #fde68a; }
.tier-label.prata { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.tier-label.bronze { background: rgba(253,186,116,0.15); color: #fdba74; }
.sponsor img { max-height: 56px; max-width: 160px; object-fit: contain; margin: 0 auto; }
.sponsor strong { font-size: 15px; letter-spacing: -0.01em; display: block; }
.sponsor.tier-diamante { min-height: 160px; border-color: rgba(147,197,253,0.4); background: rgba(255,255,255,0.06); }
.sponsor.tier-diamante img { max-height: 72px; max-width: 200px; }
.sponsor.tier-diamante strong { font-size: 18px; }
.sponsor.tier-ouro { border-color: rgba(253,230,138,0.4); background: rgba(255,255,255,0.05); }
.sponsor.tier-prata { border-color: rgba(255,255,255,0.15); }
.sponsor.tier-bronze { border-color: rgba(253,186,116,0.3); background: rgba(255,255,255,0.03); }

/* Partner strip logo support */
.partner-item img {
  height: 42px;
  width: 132px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 200ms;
}
.partner-strip:hover .partner-item img { opacity: 1; }

/* Sponsor section logos - no filter needed on dark bg */
.sponsor img { filter: none; }

/* ===== PRODUCT VERTICAL CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.product-card:hover {
  box-shadow: 0 12px 32px rgba(4,31,70,0.1);
  transform: translateY(-2px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.2), transparent 60%),
              linear-gradient(140deg, var(--red) 0%, var(--navy) 50%, var(--blue) 100%);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 32px;
  font-weight: 700;
}
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-card-body strong {
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.product-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}
.product-card-body .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.product-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.product-sizes label {
  display: block;
}
.product-sizes input[type="radio"] { display: none; }
.product-sizes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 120ms;
}
.product-sizes input[type="radio"]:checked + span {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.product-sizes span:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.product-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Product color selector */
.product-colors { display: flex; gap: 6px; flex-wrap: wrap; }
.product-colors label { display: block; }
.product-colors input[type="radio"] { display: none; }
.product-colors span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 10px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 12px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all 120ms;
}
.product-colors input[type="radio"]:checked + span { background: var(--blue); color: white; border-color: var(--blue); }
.product-colors span:hover { border-color: var(--blue); color: var(--blue); }

/* ===== DOCUMENT CARDS ===== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.doc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 200ms, background 200ms;
  text-decoration: none;
  color: white;
}
.doc-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}
.doc-card-icon {
  width: 40px; height: 40px; border-radius: 6px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.doc-card-icon.pdf { background: #dc2626; color: white; }
.doc-card-icon.docx { background: #2563eb; color: white; }
.doc-card-icon.other { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.doc-card-title { font-size: 15px; font-weight: 600; line-height: 1.3; }
.doc-card-meta { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.doc-card-action {
  margin-top: auto; padding-top: 12px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.doc-card:hover .doc-card-action { color: white; }

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-slide.active {
  opacity: 0.18;
}

/* ===== NÚCLEOS ===== */
.nucleo {
  background: linear-gradient(135deg, #0a1628 0%, #0f2a4a 50%, #1a1a2e 100%);
  color: white;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.nucleo::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(249,115,22,0.1), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(7,95,216,0.12), transparent 50%);
  pointer-events: none;
}
.nucleos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  position: relative;
}
.nucleo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nucleo-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.nucleo-card .nucleo-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.nucleo-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nucleo-detail {
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.nucleo-detail strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.nucleo-detail span { font-size: 13px; font-weight: 600; color: white; }
.nucleo-staff {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nucleo-person {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nucleo-person img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.nucleo-person .person-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 12px;
  border: 2px solid rgba(255,255,255,0.2);
}
.nucleo-person-info { display: grid; gap: 1px; }
.nucleo-person-info span:first-child { font-size: 13px; font-weight: 600; color: white; }
.nucleo-person-info span:last-child { font-size: 11px; color: rgba(255,255,255,0.5); }
.nucleo-card .btn { margin-top: auto; align-self: flex-start; }
.nucleo-badge-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(249,115,22,0.15);
  color: #fb923c;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
@media (max-width: 760px) {
  .nucleos-grid { grid-template-columns: 1fr; }
  .nucleo-details { grid-template-columns: 1fr; }
}

/* Member CV button */
.member-cv-btn {
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(7,95,216,0.1);
  color: var(--blue);
  border: 1px solid rgba(7,95,216,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 150ms;
}
.member-cv-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
