/* ============================================================
   PRO CHALK — main.css (Home v2: legibilidade + SVG + efeitos)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-behavior fica AUTO: quem faz o scroll suave e a Lenis (main.js). Com
   'smooth' aqui, o browser interpola por cima do scrollTop que a Lenis escreve
   a cada frame, as duas brigam e o scroll trava de vez. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; overflow-x: clip; }

/* ===== Lenis (scroll suave) — CSS obrigatorio da lib =====
   Sem 'height: auto' a Lenis nao mede o conteudo e o scroll trava (o scroll
   nativo fica prevenido e o programatico nao anda). */
html.lenis, html.lenis body { height: auto !important; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--step-0); line-height: 1.6;
  color: var(--pc-text); background: var(--pc-white); overflow-x: clip;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
/* Headlines em GC Vank. font-synthesis:none garante o desenho real da fonte
   (ela so tem o peso Regular; sem isso o browser engrossa sinteticamente). */
h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 800; line-height: 1.03; letter-spacing: -0.02em; margin: 0; font-synthesis: none; }
p { margin: 0; }
strong { font-weight: 700; color: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--dark { background: var(--pc-black); color: var(--pc-text-invert); }
.section--ink { background: var(--pc-ink); color: var(--pc-text-invert); }

/* destaque */
.accent { color: var(--pc-orange); }

/* eyebrow com traço lateral (assinatura) */
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; color: var(--pc-orange); }
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: currentColor; border-radius: 2px; }
.section:not(.section--dark):not(.section--ink) .eyebrow { color: var(--pc-orange-text); } /* contraste AA em fundo claro */

.lead { font-size: var(--step-1); color: var(--pc-text-soft); max-width: 60ch; }
.section--dark .lead, .section--ink .lead { color: var(--pc-text-invert-soft); }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--pc-black); color: #fff; padding: .75rem 1.25rem; border-radius: 10px; z-index: 300; }
.skip-link:focus { top: 1rem; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: var(--step-3); text-transform: uppercase; margin-top: .8rem; }
.section-head p { margin-top: 1rem; }

/* Botões */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: var(--step-0); letter-spacing: -0.01em; padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--pc-orange); color: var(--pc-black); box-shadow: 0 8px 20px -10px rgba(225,105,52,.55); }
.btn--primary:hover { background: var(--pc-orange-600); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--lg { font-size: var(--step-1); padding: 1.1rem 2rem; }
.btn .ico { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: linear-gradient(180deg, rgba(11,11,12,.58), rgba(11,11,12,0)); transition: background .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; }
.site-header.is-stuck { background: rgba(11,11,12,.92); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); border-bottom-color: var(--pc-line-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.05rem; }
.brand { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; letter-spacing: -0.03em; color: #fff; text-transform: uppercase; }
.brand b { color: var(--pc-orange); }
.nav { display: none; gap: 1.75rem; }
.nav a { color: #fff; opacity: .82; font-weight: 500; font-size: var(--step--1); transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--pc-orange-300); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; gap: .45rem; font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: #fff; opacity: .9; }
.lang-switch a { opacity: .55; transition: opacity .2s, color .2s; }
.lang-switch a.is-active { opacity: 1; color: var(--pc-orange); }
.lang-switch a:hover { opacity: 1; }
.nav-toggle { background: none; border: 0; color: #fff; cursor: pointer; display: inline-flex; padding: 0; }
.header-actions .btn { display: none; }
@media (min-width: 1040px) { .nav { display: flex; } .nav-toggle { display: none; } .header-actions .btn { display: inline-flex; } }
.nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(11,11,12,.97); padding: .5rem var(--gutter) 1.5rem; }
.nav.is-open a { padding: .9rem 0; border-bottom: 1px solid var(--pc-line-dark); opacity: 1; }

/* Revenda + presença global */
.distrib { display: grid; gap: 2.5rem; align-items: center; }
.distrib h2 { font-size: var(--step-4); text-transform: uppercase; }
.distrib .lead { margin-top: 1.2rem; }
.distrib-points { margin-top: 1.6rem; display: grid; gap: .8rem; }
.distrib-points li { display: flex; gap: .7rem; align-items: flex-start; color: var(--pc-text-invert-soft); }
.distrib-points li strong { color: var(--pc-text-invert); font-weight: 700; }
.distrib-points li .ico { color: var(--pc-orange); flex: none; width: 22px; height: 22px; margin-top: .15rem; }
@media (min-width: 960px) { .distrib { grid-template-columns: 1.05fr .95fr; } }

/* Globo COBE (Revenda) */
.globe-col { display: flex; align-items: center; justify-content: center; }
.globe-stage { position: relative; width: 100%; max-width: 560px; margin: 0 auto; aspect-ratio: 1; }
.gwrap { position: absolute; inset: 8%; background: radial-gradient(circle at 50% 50%, rgba(247,246,242,.10), transparent 62%); }
.gwrap canvas { width: 100%; height: 100%; cursor: grab; display: block; }
.mlabel { position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .58rem; line-height: 1; white-space: nowrap; padding: .24rem .48rem; color: var(--pc-orange-300); background: rgba(11,11,12,.74); border: 1px solid rgba(231,134,91,.5); border-radius: 5px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); visibility: hidden; pointer-events: none; will-change: transform; }

/* Sobre */
.sobre-grid { display: grid; gap: 2.2rem; align-items: center; }
.sobre-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.sobre-media picture, .sobre-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 920px) { .sobre-grid { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq-list { display: grid; gap: .75rem; max-width: 62rem; }
.faq-item { border: 1px solid var(--pc-line-dark); border-radius: var(--radius); background: rgba(255,255,255,.03); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: var(--step-0); display: flex; justify-content: space-between; gap: 1rem; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--pc-orange); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .ans { padding: 0 1.4rem 1.3rem; color: var(--pc-text-invert-soft); font-size: var(--step--1); }
.faq-cat + .faq-cat { margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.faq-cat-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: var(--step-1); color: var(--pc-orange-300); margin: 0 0 1.1rem; }

/* CTA final */
.cta-final { text-align: center; }
.cta-final h2 { font-size: var(--step-4); text-transform: uppercase; }
.cta-final .hero-ctas { justify-content: center; }

/* Footer */
.site-footer { background: var(--pc-black); color: var(--pc-text-invert-soft); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-grid h4 { font-family: var(--font-display); color: #fff; text-transform: uppercase; font-size: var(--step--1); letter-spacing: .12em; margin-bottom: 1rem; }
.footer-grid a { color: var(--pc-text-invert-soft); font-size: var(--step--1); transition: color .2s; }
.footer-grid a:hover { color: var(--pc-orange); }
.footer-grid li { margin-bottom: .55rem; }
.social { display: flex; gap: .7rem; }
.social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--pc-line-dark); display: grid; place-items: center; }
.social a:hover { border-color: var(--pc-orange); background: rgba(225,105,52,.1); }
.social .ico { width: 20px; height: 20px; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--pc-line-dark); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); color: var(--pc-text-mute); }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .footer-grid { grid-template-columns: 1.6fr 1.1fr 1fr 1.1fr; } }

/* Cookie / LGPD */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 430px; margin-left: auto; background: #fff; border: 1px solid var(--pc-line); border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-lg); z-index: 250; transform: translateY(150%); transition: transform .5s var(--ease); }
.cookie.show { transform: none; }
.cookie p { font-size: .8rem; color: var(--pc-text-soft); line-height: 1.5; }
.cookie p strong { color: var(--pc-text); display: block; margin-bottom: .2rem; }
.cookie a { color: var(--pc-orange-text); text-decoration: underline; }
.cookie .row { display: flex; gap: .6rem; margin-top: .9rem; justify-content: flex-end; }
.cookie .btn { padding: .55rem 1.1rem; font-size: .85rem; }
.cookie .btn--ghost { color: var(--pc-text-soft); }

/* Reveal + stagger */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Formulario de lead (Design System) */
.lead-form { display: grid; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--pc-line-dark); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.2rem); }
.lead-form .field { display: grid; gap: .4rem; }
.lead-form .field-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.lead-form label { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pc-text-invert-soft); font-weight: 600; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--pc-line-dark); border-radius: 12px; padding: .8rem 1rem; color: #fff; font-family: inherit; font-size: var(--step-0); transition: border-color .2s, box-shadow .2s; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--pc-text-mute); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--pc-orange); box-shadow: 0 0 0 3px rgba(225,105,52,.2); }
.lead-form select option { color: #111; }
.lead-form button { margin-top: .3rem; justify-content: center; }
.lf-alt { font-size: var(--step--1); color: var(--pc-text-invert-soft); text-align: center; }
.lf-alt a { color: var(--pc-orange); text-decoration: underline; }
@media (max-width: 540px) { .lead-form .field-row { grid-template-columns: 1fr; } }

/* Form em secao clara */
.lead-form--light { background: var(--pc-paper); border-color: var(--pc-line); box-shadow: var(--shadow-md); }
.lead-form--light label { color: var(--pc-text-soft); }
.lead-form--light input, .lead-form--light select, .lead-form--light textarea { background: #fff; border-color: var(--pc-line); color: var(--pc-text); }
.lead-form--light input::placeholder, .lead-form--light textarea::placeholder { color: var(--pc-text-mute); }
.lead-form--light .lf-alt { color: var(--pc-text-soft); }
.lead-form--light .lf-alt a { color: var(--pc-orange-text); }

/* ===== Melhorias de HERO (universais + variantes de teste) ===== */
/* Scrim do header mais forte (legibilidade do topo sobre imagem clara) */
.site-header { background: linear-gradient(180deg, rgba(11,11,12,.82) 0%, rgba(11,11,12,.42) 55%, rgba(11,11,12,0) 100%); }

/* Hero video de fundo (chalk). Dessaturado pra virar giz; overlay da marca por cima. */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: brightness(.8) contrast(1.04); opacity: 1; }

/* ===== HOME: hero full-viewport + header transparente (sem barra de cor) ===== */
html { scroll-padding-top: 76px; }
.site-header { position: fixed; left: 0; right: 0; background: transparent; }
.brand, .nav a, .lang-switch, .nav-toggle { text-shadow: 0 1px 16px rgba(0,0,0,.6); }
.site-header.is-stuck .brand, .site-header.is-stuck .nav a, .site-header.is-stuck .lang-switch, .site-header.is-stuck .nav-toggle { text-shadow: none; }

/* ===== Logo real + harmonizacao do hero ===== */
.brand img { height: clamp(42px, 5.2vw, 54px); width: auto; display: block; filter: drop-shadow(0 1px 10px rgba(0,0,0,.5)); }
.site-footer .brand img { height: 60px; }
.btn--primary { box-shadow: 0 6px 16px -9px rgba(225,105,52,.4); }

/* ===== Hero editorial (estilo securify): tipografia gigante sobreposta ===== */
.hero--editorial { position: relative; height: 100vh; height: 100svh; min-height: 600px; background: #000; overflow: hidden; }
.hero--editorial .hero-video { filter: brightness(.66) contrast(1.06); opacity: 1; }
.hero--editorial::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(110% 80% at 72% 18%, rgba(225,105,52,.14), transparent 58%); }
/* ============ Abertura (cortina + logo + anel) ============
   A saida e 100% CSS (animation forwards): se o JS falhar, a cortina some
   do mesmo jeito e o site nunca fica preso atras dela. O JS so trava o scroll,
   e mesmo isso tem destravamento por timeout. */
.intro {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  /* sem fundo: o video da hero fica visivel por tras da frase */
  pointer-events: none;
  padding: 0 var(--gutter);
  animation: intro-out .6s var(--ease) 2.15s forwards;
}
.intro-frase {
  margin: 0; max-width: 18ch; text-align: center;
  font-family: var(--font-hero); font-weight: 700; text-transform: lowercase;
  font-size: clamp(2rem, 6.2vw, 5rem); line-height: 1.02; letter-spacing: -.035em;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5);
  /* a frase inteira sai antes da cortina, dando lugar a hero */
  animation: frase-out .55s var(--ease) 1.8s forwards;
}
/* cada palavra entra desfocada, uma apos a outra */
.intro-frase .iw {
  display: inline-block;
  opacity: 0; filter: blur(14px); transform: translateY(.14em);
  animation: iw-in .7s var(--ease) forwards;
  animation-delay: calc(.2s + var(--i, 0) * .11s);
}
@keyframes iw-in { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes frase-out { to { opacity: 0; filter: blur(12px); transform: translateY(-.12em); } }
@keyframes intro-fade-in { to { opacity: 1; } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* trava o scroll enquanto a cortina esta na frente (JS remove a classe) */
html.is-intro, html.is-intro body { overflow: hidden; }

/* Hero: letra a letra, entrando desfocada assim que a frase da abertura sai */
.stack-word .ch {
  display: inline-block;
  opacity: 0; filter: blur(10px); transform: translateY(.12em);
  animation: ch-in .75s var(--ease) forwards;
  animation-delay: calc(2.3s + var(--i, 0) * .045s);
}
@keyframes ch-in { to { opacity: 1; filter: blur(0); transform: none; } }

/* apoio da hero e header entram depois da cascata das letras */
body.is-home .hero-desc,
body.is-home .corner-stat { opacity: 0; animation: intro-fade-in .8s var(--ease) 3.05s forwards; }
body.is-home .site-header { opacity: 0; animation: intro-fade-in .7s var(--ease) 2.8s forwards; }

@media (prefers-reduced-motion: reduce) {
  .intro { animation: intro-out .3s linear .2s forwards; }
  .intro-frase { animation: none; }
  .intro-frase .iw { animation: iw-in .2s linear forwards; animation-delay: 0s; }
  .stack-word .ch { animation: none; opacity: 1; filter: none; transform: none; }
  body.is-home .hero-desc, body.is-home .corner-stat, body.is-home .site-header { opacity: 1; animation: none; }
}

/* Grao animado sobre o video da hero (film grain).
   O tile e 200% e deslocado por transform em vez de background-position: transform
   roda no compositor (sem repaint a cada frame) e o excedente esconde as bordas
   que o deslocamento revelaria. steps() troca o quadro de forma seca, como GIF. */
.hero-noise {
  position: absolute; z-index: 2; top: -50%; left: -50%; width: 200%; height: 200%;
  pointer-events: none;
  background-image: url("/assets/img/noise.png");
  background-repeat: repeat;
  opacity: .05;
  animation: hero-grain .8s steps(8) infinite;
  will-change: transform;
}
@keyframes hero-grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0); }
  70%  { transform: translate(0, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero-noise { animation: none; } }

.hero-fade { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 13rem; background: linear-gradient(to bottom, transparent, #000); pointer-events: none; }
.hero-stack { position: absolute; inset: 0; z-index: 3; }
.stack-word { position: absolute; margin: 0; font-family: var(--font-hero); font-weight: 700; text-transform: lowercase; line-height: .9; letter-spacing: -.045em; color: #fff; font-size: 13vw; }
.stack-word.w1 { top: 17%; left: 3.5%; }
.stack-word.w2 { top: 39%; right: 4.5%; }
.stack-word.w3 { top: 59%; left: 26%; color: var(--pc-orange); }
.hero-desc { position: absolute; z-index: 4; left: 5.5%; top: 47%; max-width: 250px; font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.9); text-transform: lowercase; }
.corner-stat { position: absolute; z-index: 4; }
.corner-stat .cs-row { display: flex; align-items: center; gap: .85rem; }
.corner-stat b { font-family: var(--font-hero); font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3.1rem); letter-spacing: -.02em; color: #fff; }
.corner-stat .lbl { display: block; font-size: .78rem; color: rgba(255,255,255,.7); text-transform: lowercase; margin-top: .25rem; }
.cs-div { height: 1px; width: 90px; background: rgba(255,255,255,.4); display: block; }
.cs-div.down { transform: rotate(20deg); }
.cs-div.up { transform: rotate(-20deg); }
.corner-stat.tr { top: 13%; right: 6%; text-align: right; }
.corner-stat.bl { left: 5.5%; bottom: 16%; }
.corner-stat.br { right: 6%; bottom: 13%; text-align: right; }
@media (max-width: 820px) { .stack-word { font-size: 18vw; } .stack-word.w3 { left: 6%; } .cs-div { display: none; } .hero-desc { max-width: 190px; top: 41%; } }

/* Botoes mais retos (pegada rustica da marca) + botao do header proporcional */
.btn { border-radius: 10px; }
.header-actions .btn { font-size: var(--step--1); padding: .6rem 1.15rem; }
.header-actions .btn--primary { box-shadow: none; }
.lang-switch { gap: .45rem; }
.lang-switch .sep { color: var(--pc-text-invert-soft); opacity: .5; user-select: none; }

/* Botao dividido estilo vidro (header "Seja um revendedor") — texto + caixa da seta */
.header-actions .btn-split { display: none; }
.btn-split { align-items: stretch; gap: 5px; font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); }
.btn-split .bs-label, .btn-split .bs-arrow { display: flex; align-items: center; background: rgba(255,255,255,.1); -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px); border: 1px solid rgba(255,255,255,.28); color: #fff; border-radius: 10px; transition: background .25s var(--ease), border-color .25s var(--ease); }
.btn-split .bs-label { padding: .56rem 1.1rem; }
.btn-split .bs-arrow { padding: 0 .62rem; }
.btn-split .bs-arrow .ico { width: 18px; height: 18px; color: var(--pc-orange); }
.btn-split:hover .bs-label, .btn-split:hover .bs-arrow { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45); }
@media (min-width: 1040px) { .header-actions .btn-split { display: inline-flex; } }

/* HUD do hero: grade quadriculada sutil + cruzinhas + molduras de canto */
.hud { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hud-grid { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(125% 110% at 50% 48%, transparent 28%, #000 92%);
  mask-image: radial-gradient(125% 110% at 50% 48%, transparent 28%, #000 92%); }
.hud-plus { position: absolute; width: 14px; height: 14px; opacity: .55; }
.hud-plus::before, .hud-plus::after { content: ""; position: absolute; background: rgba(255,255,255,.65); }
.hud-plus::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-.5px); }
.hud-plus::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-.5px); }
.hud-corner { position: absolute; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.4); }
.hud-corner.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }
/* acento na descricao (linha coral) */
.hero-desc { border-left: 2px solid var(--pc-orange); padding-left: .9rem; }
@media (max-width: 820px) { .hud-corner, .hud-plus { display: none; } }

/* ===== Sofisticacao: consistencia com o hero ===== */
/* Titulos em lowercase (eyebrows e micro-labels seguem maiusculo) */
.section-head h2, .distrib h2, .sobre-grid h2 { text-transform: uppercase; letter-spacing: .01em; }
/* Idioma tecnico do hero ecoado nas secoes escuras: grade sutil mascarada */
.section--dark, .section--ink { position: relative; }
.section--dark::before, .section--ink::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(120% 92% at 50% 50%, transparent 42%, #000 100%);
  mask-image: radial-gradient(120% 92% at 50% 50%, transparent 42%, #000 100%); }
.section--dark > .container, .section--ink > .container { position: relative; z-index: 1; }

/* ===== Carrossel 3D de esportes (perspectiva, estilo Mattter) ===== */
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1rem, 3vw, 2rem); }
.carousel-title { font-size: var(--step-3); text-transform: uppercase; letter-spacing: .01em; line-height: 1; margin-top: .8rem; }
/* Galeria parallax (portada do site Polyblu): colunas sobem em velocidades diferentes no scroll */
.parallax-gallery { position: relative; height: 165vh; overflow: hidden; background: var(--pc-white); width: 100vw; margin-inline: calc(50% - 50vw); margin-top: clamp(1.5rem, 4vw, 3rem); }
.pg-track { position: absolute; inset: 0; display: flex; gap: clamp(0.5rem, 1.2vw, 1.25rem); padding: clamp(0.5rem, 1.2vw, 1.25rem); }
.pg-col { flex: 1; min-width: 0; height: 100%; min-height: 0; display: flex; flex-direction: column; gap: clamp(0.5rem, 1.2vw, 1.25rem); will-change: transform; }
.pg-col picture { display: block; flex-shrink: 0; }
.pg-col img { width: 100%; height: 48vh; flex-shrink: 0; object-fit: cover; display: block; border-radius: var(--radius); }
@media (max-width: 700px) {
  .parallax-gallery { height: 140vh; }
  .pg-col:nth-child(n + 3) { display: none; }   /* mobile: 2 colunas, sem ficar minúsculo */
}
@media (prefers-reduced-motion: reduce) {
  .pg-col { transform: none !important; }
}

/* ============ Quem usa — Sticky Grid Scroll ============
   Porte do StickyGridScroll do site RD360 (demo Theo Plawinski / Codrops, MIT).
   Animação em sgs.js (GSAP + ScrollTrigger). Mobile: bloco estático. */
.sgs-block { position: relative; height: 448vh; padding-bottom: 18vh; background: var(--pc-white); color: var(--pc-text); overflow: clip; }
/* véu no pé da seção: suaviza o corte das imagens na transição pra próxima tela */
.sgs-block::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 24vh; background: linear-gradient(to top, var(--pc-white) 18%, rgba(247, 246, 242, 0)); pointer-events: none; z-index: 5; }
.sgs-wrapper { position: sticky; top: 0; padding: 0 1.67vw; overflow: hidden; will-change: transform; }
.sgs-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100vh; text-align: center; }
.sgs-title { margin: 0; width: 72vw; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(28px, 4.1vw, 82px); line-height: 1.05; letter-spacing: .01em; color: var(--pc-text); }
.sgs-desc { width: 34vw; max-width: 90vw; margin: 1.7vw auto 0; font-family: var(--font-body); font-size: clamp(11px, .97vw, 15px); line-height: 1.4; text-transform: uppercase; letter-spacing: .06em; color: var(--pc-text-soft); }
.sgs-button { display: inline-block; margin-top: 2.2vw; font-family: var(--font-display); font-weight: 600; font-size: clamp(11px, .97vw, 15px); text-transform: uppercase; letter-spacing: .08em; color: var(--pc-orange-text); }
.sgs-button:hover { text-decoration: underline; text-underline-offset: 4px; }
.sgs-gallery { position: absolute; top: 50%; left: 50%; transform: translate3d(-50%, -50%, 0); width: 51vw; }
.sgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 2.2vw; row-gap: 2.8vw; list-style: none; margin: 0; padding: 0; will-change: transform; }
.sgs-item { width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--pc-graphite); will-change: transform; }
.sgs-item picture, .sgs-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* MOBILE: sem pin/scrub (o GSAP nem monta, ver sgs.js): bloco normal + grade 2x3 */
@media (max-width: 767px) {
  .sgs-block { height: auto; padding: 88px 0 56px; }
  .sgs-block::after { display: none; }
  .sgs-wrapper { position: static; overflow: visible; padding: 0 var(--gutter); will-change: auto; }
  .sgs-content { height: auto; }
  .sgs-title { width: 100%; font-size: clamp(30px, 11vw, 64px); }
  .sgs-desc { width: 100%; margin-top: 14px; }
  .sgs-button { margin-top: 18px; }
  .sgs-gallery { position: static; transform: none; width: 100%; margin-top: 36px; }
  .sgs-grid { grid-template-columns: repeat(2, 1fr); column-gap: 12px; row-gap: 12px; will-change: auto; }
  .sgs-item:nth-child(n + 7) { display: none; }
}

/* CTA final (revenda + contato) */
.cta-pair { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
@media (min-width: 760px) { .cta-pair { grid-template-columns: 1fr 1fr; } }
.cta-card { display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--pc-line-dark); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); background: rgba(255,255,255,.03); }
.cta-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-2); line-height: 1.05; margin-top: .4rem; color: #fff; }
.cta-card p { margin: .9rem 0 1.6rem; color: var(--pc-text-invert-soft); font-size: var(--step-0); max-width: 36ch; }
.cta-card .btn { margin-top: auto; }
.btn--outline-light { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn--outline-light:hover { border-color: var(--pc-orange); background: rgba(225,105,52,.14); color: #fff; }

/* Pagina de produto (/produtos/<slug>/) */
.prod-back { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: var(--step--1); color: var(--pc-text-soft); margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.prod-back:hover { color: var(--pc-orange-text); }
.prod-back .back-arrow { width: 18px; height: 18px; transform: rotate(180deg); }
.prod-hero { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .prod-hero { grid-template-columns: 1fr 1fr; } }
/* fundo preto: as fotos de produto sao renders sobre preto, entao o bloco
   acompanha e a imagem sangra ate a borda em vez de virar um quadrado
   preto flutuando no card branco */
.prod-hero-media { background: var(--pc-black); border: 1px solid var(--pc-line-dark); border-radius: var(--radius-lg); overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.prod-hero-media img, .prod-hero-media picture { width: 100%; height: auto; object-fit: cover; display: block; }
.prod-photo { margin: 0; width: 100%; }
.prod-hero-info h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-4); line-height: 1; margin-top: .3rem; }
.prod-hero-info .lead { margin-top: 1.1rem; }
.prod-formats { margin-top: 1.4rem; }
.formats-label { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: var(--step--1); color: var(--pc-text-mute); margin-bottom: .7rem; }
.formats-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.fmt-chip { display: inline-flex; align-items: center; padding: .4rem .85rem; border: 1px solid var(--pc-line); border-radius: 999px; background: var(--pc-surface); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; color: var(--pc-text-soft); }
.prod-bullets { display: grid; gap: .7rem; margin-top: 1.6rem; }
.prod-bullets li { display: flex; gap: .6rem; align-items: flex-start; color: var(--pc-text-soft); }
.prod-bullets li .ico { color: var(--pc-orange-text); flex: none; width: 20px; height: 20px; margin-top: .1rem; }
.prod-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
/* Troca de foto por formato (paginas com variantes) */
/* !important porque o reveal global usa .fx-reveal.is-in{opacity:1} com a MESMA
   especificidade: sem isso as 4 fotos ficam visiveis e a ultima (Rosa) cobre a
   selecionada. O JS tambem exclui .prod-hero-media do reveal; isto e a trava. */
[data-prodvar] .prod-photo { grid-area: 1 / 1; margin: 0; display: grid; place-items: center; opacity: 0 !important; transition: opacity .35s var(--ease); }
[data-prodvar] .prod-photo.is-active { opacity: 1 !important; }
.fmt-chip--pick { background: var(--pc-paper); color: var(--pc-text); cursor: pointer; box-shadow: var(--shadow-sm); transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.fmt-chip--pick:hover { border-color: var(--pc-orange); color: var(--pc-orange-text); }
.fmt-chip--pick.is-active { background: var(--pc-orange); border-color: var(--pc-orange); color: #fff; box-shadow: none; }
.fmt-chip--info { background: transparent; border-style: dashed; color: var(--pc-text-mute); cursor: default; }

/* Megamenu de produtos (departamentos) no header — enhancement desktop */
.nav-item--drop { display: contents; }
.nav-drop { display: none; }
@media (min-width: 1040px) {
  .nav-item--drop { display: flex; align-items: center; position: relative; }
  .nav-item--drop > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: .45rem; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; transition: transform .25s var(--ease); }
  .nav-item--drop:hover > a::after { transform: rotate(225deg) translateY(1px); }
  .nav-drop { display: block; position: absolute; top: 100%; left: -.7rem; padding-top: 1.4rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 90; }
  .nav-item--drop:hover .nav-drop, .nav-item--drop:focus-within .nav-drop { opacity: 1; visibility: visible; transform: none; }
}
.nav-drop-panel { background: var(--pc-paper); border: 1px solid var(--pc-line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .5rem; width: 340px; }
.nav-drop a { opacity: 1; color: var(--pc-text); text-shadow: none; }
.nav-dept { display: block; padding: .65rem .9rem; border-radius: 12px; transition: background .15s var(--ease); }
.nav-dept:hover { background: var(--pc-surface); }
.nav-dept-name { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: var(--step--1); color: var(--pc-text); }
.nav-dept-desc { display: block; margin-top: .12rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: var(--step--1); color: var(--pc-text-soft); line-height: 1.35; }
.nav-dept--all { margin-top: .25rem; border-top: 1px solid var(--pc-line); border-radius: 0 0 10px 10px; }
.nav-dept--all .nav-dept-name { color: var(--pc-orange-text); display: inline-flex; align-items: center; gap: .4rem; }
.nav-dept--all .nav-dept-name::after { content: "→"; }

/* Marquee "quem usa" (carrossel passando) — pagina esportes */
.usamarquee { overflow: hidden; width: 100vw; margin-inline: calc(50% - 50vw); margin-top: clamp(2rem, 5vw, 3rem); }
.usamarquee-row { display: flex; gap: clamp(.8rem, 2vw, 1.2rem); width: max-content; animation: usa-scroll 50s linear infinite; will-change: transform; }
.usamarquee:hover .usamarquee-row { animation-play-state: paused; }
@keyframes usa-scroll { to { transform: translateX(-50%); } }
.usa-card { flex: 0 0 auto; width: clamp(220px, 24vw, 320px); aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--pc-graphite); margin: 0; }
.usa-card picture, .usa-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-extra { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 760px) { .prod-extra { grid-template-columns: 1fr 1fr; align-items: start; } }
.prod-block .eyebrow { color: var(--pc-orange-300); }
.prod-uso-text { margin-top: 1rem; color: var(--pc-text-invert-soft); font-size: var(--step-0); line-height: 1.6; }
.prod-ficha { margin-top: 1rem; }
.pf-row { display: flex; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid var(--pc-line-dark); }
.pf-row dt { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: var(--step--1); color: #fff; flex: none; max-width: 45%; }
.pf-row dd { color: var(--pc-text-invert-soft); font-size: var(--step--1); text-align: right; }

/* Paginas legais (prose) */
.prose { max-width: 70ch; margin: 0 auto; }
.prose h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-4); line-height: 1; margin-top: .3rem; }
.prose h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-1); letter-spacing: .01em; margin-top: 2.4rem; }
.prose p, .prose li { color: var(--pc-text-soft); font-size: var(--step-0); line-height: 1.7; margin-top: 1rem; }
.prose ul { margin-top: 1rem; padding-left: 1.2rem; display: grid; gap: .5rem; }
.prose ul li { margin-top: 0; }
.prose strong { color: var(--pc-text); }
.prose a { color: var(--pc-orange-text); text-decoration: underline; }
.legal-updated { font-size: var(--step--1); color: var(--pc-text-mute); margin-top: .6rem; }

/* Pagina de esportes */
.esportes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(.9rem, 2.5vw, 1.4rem); margin-top: clamp(2rem, 5vw, 3rem); }
.esporte-card { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--pc-graphite); }
.esporte-card .ec-media { aspect-ratio: 3/4; }
.esporte-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.esporte-card:hover img { transform: scale(1.05); }
.esporte-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: var(--step-0); color: #fff; background: linear-gradient(transparent, rgba(11,11,12,.85)); }

/* Pagina 404 */
.error-page { display: grid; place-items: center; min-height: 70vh; text-align: center; }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 20vw, 12rem); line-height: 1; color: var(--pc-orange-300); }
.error-wrap h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-3); margin-top: .4rem; }
.error-wrap .lead { margin: 1rem auto 2rem; max-width: 40ch; }

/* Pagina sobre */
.sobre-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-4); line-height: 1; }

.footer-legal a { color: var(--pc-text-mute); }
.footer-legal a:hover { color: var(--pc-orange); }

/* Header solido nas subpaginas (transparente so na home, sobre o hero escuro) */
body.is-sub .site-header { background: rgba(11,11,12,.95); -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px); border-bottom-color: var(--pc-line-dark); }
body.is-sub .brand, body.is-sub .nav a, body.is-sub .lang-switch, body.is-sub .nav-toggle, body.is-sub .btn-split .bs-label, body.is-sub .btn-split .bs-arrow { text-shadow: none; }

/* Form-hero (paginas de formulario: 2 colunas pitch + card, fundo escuro) */
.form-hero-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 920px) { .form-hero-grid { grid-template-columns: 1fr 1.05fr; } }
.form-hero-pitch h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-4); line-height: 1; margin-top: .3rem; }
.form-hero-pitch .lead { margin-top: 1.1rem; }
.form-hero-card .lead-form { margin-top: 0; }

/* Produtos showcase (carrossel) */
.prodshow-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.eyebrow-pill { display: inline-flex; align-items: center; gap: .55rem; padding: .42rem .95rem; border: 1px solid var(--pc-line); border-radius: 999px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: var(--step--1); color: var(--pc-text-soft); }
.eyebrow-pill .ep-dot { width: 9px; height: 9px; border-radius: 2px; background: var(--pc-orange); flex: none; }
.prodshow-head h2 { margin-top: 1rem; font-size: var(--step-4); text-transform: uppercase; line-height: 1; }
.prodshow-head h2 .accent { color: var(--pc-orange-text); }
.prodshow-nav { display: flex; align-items: center; gap: .6rem; flex: none; }
/* posicao no carrossel (01/11): numero atual em destaque, total apagado */
.ps-contador { display: flex; align-items: baseline; gap: .1rem; margin: 0 .55rem 0 0; font-family: var(--font-headline); font-weight: 700; font-size: var(--step-1); line-height: 1; color: var(--pc-text); font-variant-numeric: tabular-nums; font-synthesis: none; }
.ps-contador-sep { color: var(--pc-text-mute); margin: 0 .1rem; }
.ps-contador-total { color: var(--pc-text-mute); font-size: .78em; }
.ps-arrow { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--pc-line); background: var(--pc-paper); color: var(--pc-text); cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.ps-arrow:hover { background: var(--pc-orange); border-color: var(--pc-orange); color: #fff; }
.ps-arrow svg { width: 22px; height: 22px; }
.prodshow-viewport { overflow: hidden; }
.prodshow-track { display: flex; transition: transform .55s var(--ease); }
.prodshow-slide { flex: 0 0 100%; min-width: 100%; display: grid; gap: clamp(.8rem, 2vw, 1.2rem); align-items: stretch; }
@media (min-width: 900px) { .prodshow-slide { grid-template-columns: 1fr 1fr; } }
.ps2-card { display: flex; flex-direction: column; background: var(--pc-ink); color: var(--pc-text-invert); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); min-height: 340px; }
.ps2-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-3); line-height: 1.05; }
.ps2-card > p { margin-top: 1rem; color: var(--pc-text-invert-soft); font-size: var(--step-0); line-height: 1.6; max-width: 42ch; }
.ps2-gancho { margin-top: 1rem; color: var(--pc-text-invert-soft); font-size: var(--step-0); line-height: 1.5; max-width: 34ch; }
.ps2-ficha { margin-top: 1.5rem; }
.ps2-frow { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--pc-line-dark); font-size: var(--step--1); }
.ps2-frow:first-child { border-top: none; padding-top: 0; }
.ps2-frow dt { color: var(--pc-text-invert-soft); flex: none; }
.ps2-frow dd { margin: 0; color: var(--pc-text-invert); text-align: right; font-weight: 500; }
.ps2-foot { margin-top: auto; padding-top: 1.8rem; display: flex; align-items: flex-end; justify-content: flex-end; }

/* Card do carrossel: nome sublinhado + gancho/ficha + botao destacado (padrao dos 5) */
.ps2-card h3 { align-self: flex-start; }
.ps2-card h3::after { content: ""; display: block; height: 3px; width: 100%; margin-top: .55rem; background: var(--pc-orange-300); border-radius: 2px; }
.ps2-card .ps2-gancho { margin-top: 2.2rem; }
.ps2-card .btn-box { font-size: var(--step-0); padding: .72rem .72rem .72rem 1.5rem; transition: transform .2s var(--ease), background .2s; }
.ps2-card .btn-box:hover { transform: translateY(-2px); }
.ps2-card .btn-box .bb-arrow { width: 44px; height: 44px; }
.ps2-card .btn-box .bb-arrow svg { width: 20px; height: 20px; }
.ps2-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--pc-graphite); min-height: 340px; }
.ps2-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-box { display: inline-flex; align-items: center; gap: .8rem; padding: .5rem .5rem .5rem 1.2rem; border-radius: 12px; font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); white-space: nowrap; transition: background .2s; }
.btn-box .bb-arrow { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: var(--pc-orange); color: #fff; flex: none; transition: background .2s; }
.btn-box .bb-arrow svg { width: 18px; height: 18px; }
.btn-box--light { background: var(--pc-paper); color: var(--pc-text); }
.btn-box--light:hover .bb-arrow { background: var(--pc-orange-600); }
.btn-box--dark { background: var(--pc-ink); color: #fff; }
.btn-box--dark:hover { background: var(--pc-black); }
.prodshow-convo { margin-top: clamp(1.6rem, 4vw, 2.5rem); padding-top: clamp(1.6rem, 4vw, 2.5rem); border-top: 1px solid var(--pc-line); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.convo-info { display: flex; align-items: center; gap: 1.1rem; }
.convo-avatars { display: flex; flex: none; }
.avatar { display: block; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 3px solid var(--pc-white); flex: none; }
.avatar img, .avatar picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar:nth-child(2) { margin-left: -18px; }
.convo-info h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: var(--step-1); }
.convo-info p { margin-top: .2rem; color: var(--pc-text-soft); font-size: var(--step--1); }
@media (max-width: 620px) { .prodshow-head, .prodshow-convo { flex-direction: column; align-items: flex-start; } }

/* ============ Presenca global (secao presa: a frase se monta no scroll) ============
   A altura extra da o "curso" do scroll; o miolo fica sticky no centro da tela.
   Quando o curso acaba, o sticky solta e a pagina segue para a proxima secao. */
.gstmt { position: relative; height: 340vh; background: var(--pc-surface); color: var(--pc-text); border-block: 1px solid var(--pc-line); }
.gstmt-pin { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; overflow: hidden; }
/* mobile / sem GSAP: nada de prender o scroll, vira uma secao normal */
.gstmt.sem-scrolly { height: auto; }
.gstmt.sem-scrolly .gstmt-pin { position: static; height: auto; padding-block: clamp(5rem, 14vw, 8rem); }
@media (max-width: 760px) {
  .gstmt { height: auto; }
  .gstmt-pin { position: static; height: auto; padding-block: clamp(4.5rem, 14vw, 7rem); }
}
.gstmt-conteudo { position: relative; z-index: 2; }
.gstmt .container { position: relative; z-index: 2; }

.gstmt-plus { position: absolute; width: 18px; height: 18px; pointer-events: none; }
.gstmt-plus::before, .gstmt-plus::after { content: ""; position: absolute; background: var(--pc-orange); opacity: .55; }
.gstmt-plus::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.gstmt-plus::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.gstmt-plus.tl { top: clamp(1.4rem, 3vw, 2.2rem); left: clamp(1.4rem, 4vw, 3rem); }
.gstmt-plus.br { bottom: clamp(1.4rem, 3vw, 2.2rem); right: clamp(1.4rem, 4vw, 3rem); }
.gstmt-meta { display: flex; align-items: center; justify-content: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: var(--step--1); color: var(--pc-text-mute); margin-bottom: clamp(1.8rem, 4.5vw, 2.8rem); }
.gstmt-meta .gm-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--pc-orange); flex: none; }
.gstmt-line { margin: 0 auto; max-width: 1000px; text-align: center; font-family: var(--font-headline); font-weight: 700; text-transform: uppercase; font-size: clamp(1.9rem, 4.8vw, 3.6rem); line-height: 1.1; letter-spacing: .01em; color: var(--pc-text); }
/* inline: os pedacos fluem como texto normal, a frase fica com a mesma quebra
   de antes (uma quebra depois de MUNDO). Por isso a animacao usa so opacidade
   e desfoque: transform nao se aplica a elemento inline. */
.gpiece { display: inline; }
.gpiece--hl { color: var(--pc-orange-text); }
/* o JS marca a secao ao assumir o controle. Sem JS (ou se ele falhar) nada
   disso e escondido: a frase aparece inteira, so sem a animacao. */
.gstmt.is-scrolly .gpiece,
.gstmt.is-scrolly .gstmt-meta { opacity: 0; }

/* ===== Animacoes estilo Jack (FadeIn whileInView + stagger) — secoes portadas ===== */
[data-jfade] { opacity: 0; transform: translateY(var(--jy, 30px)); transition: opacity .7s cubic-bezier(.25,.1,.25,1), transform .7s cubic-bezier(.25,.1,.25,1); }
[data-jfade].in { opacity: 1; transform: translateY(0); }

/* ===== Headlines na fonte de headline (Ezra) =====
   A regra global de h1-h4 ja aplica a fonte; estes seletores redeclaram
   font-family por conta propria, entao precisam ser repetidos aqui.
   UI miuda (eyebrow, botao, chip, label, tag) fica em Oswald de proposito:
   fonte de display em corpo pequeno perde legibilidade. */
.sgs-title, .gstmt-line, .cta-card h3, .ps2-card h3, .convo-info h3,
.prod-hero-info h1, .prose h1, .prose h2, .sobre-title, .faq-cat-title,
.form-hero-pitch h1, .error-wrap h1, .error-code {
  font-family: var(--font-headline);
  font-synthesis: none;
}

/* ===== Botoes na fonte do texto de apoio =====
   Inter em peso normal, igual ao corpo do site: os botoes ficam leves, sem o
   peso de display. Vence as declaracoes de font-weight 600/700 de cada botao. */
.btn, .btn-box, .btn-split, .sgs-button, .fmt-chip--pick, .prod-back {
  font-family: var(--font-body);
  font-weight: 400;
}

/* ===== Headlines em caixa mista =====
   Só a frase da presença global (.gstmt-line) segue em maiúscula.
   Eyebrows, labels, chips e o rodapé continuam em caixa alta: são rótulos,
   não títulos. O letter-spacing negativo compensa a troca (o espaçamento
   aberto que estes seletores tinham existia por causa do caixa alta). */
.section-head h2, .distrib h2, .sobre-grid h2, .cta-final h2, .carousel-title,
.prodshow-head h2, .sgs-title, .cta-card h3, .ps2-card h3, .convo-info h3,
.prod-hero-info h1, .prose h1, .prose h2, .sobre-title, .form-hero-pitch h1,
.error-wrap h1, .faq-cat-title {
  text-transform: none;
  letter-spacing: -.015em;
}
/* nomes dos esportes vem em minusculo nos dados (eram exibidos em caixa alta
   pelo CSS): capitalize devolve a caixa correta sem mexer nos 3 idiomas */
.esporte-card figcaption { text-transform: capitalize; letter-spacing: -.01em; }

/* ===== Reveal GLOBAL com desfoque (porte do site Polyblu) =====
   Entrada: clareia com stagger curto. Saida: desfoca de volta (delay zero).
   Aplicado via JS (initFxReveal no main.js); textos viram palavras .uwx. */
.fx-reveal { opacity: 0; filter: blur(9px); transform: translateY(16px); transition: opacity 1.2s var(--ease), filter 1.2s var(--ease), transform 1.2s var(--ease); transition-delay: 0ms; }
.fx-reveal.is-in { opacity: 1; filter: none; transform: none; transition-delay: var(--fx-d, 0ms); }
/* Longe da viewport: sem blur (economiza GPU). O elemento segue invisivel e
   recebe o blur de volta ao se aproximar, entao a animacao de entrada e a mesma. */
.fx-reveal.fx-idle { filter: none; }
.uwx { display: inline-block; filter: blur(8px); opacity: .18; transition: filter .7s var(--ease), opacity .7s var(--ease); }
.uwx.on { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .fx-reveal { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
  .uwx { filter: none !important; opacity: 1 !important; transition: none !important; }
}
