/* ============================================================================
   O PODER DAS MARCAS NO E-COMMERCE — Report 2026 (WebGlobal | snaq)
   CSS único da landing page. Ordem: tokens → base → componentes → seções.
   Mantido em um só arquivo para evitar requisições render-blocking extras.
   ========================================================================= */

/* ============================================================================
   TOKENS
   Paleta derivada da capa do relatório (referencias/report-capa.jpeg):
   fundo royal-blue profundo, título em ouro metálico e o verde vívido da
   marca snaq. Tipografia herdada da identidade digital WebGlobal/WebPrice
   (Rajdhani nos títulos, Open Sans no corpo).
   ========================================================================= */
:root {
  /* ---- Azuis (fundo do relatório) ---- */
  --navy-deep: #00061a; /* cantos escuros do hero */
  --navy: #020d5b;      /* azul de marca WebGlobal — seções institucionais */
  --navy-2: #051373;    /* superfícies/cards sobre navy */
  --royal: #0a3aa0;     /* brilho azul (glow do gradiente) */
  --blue: #2a6bf0;      /* elementos interativos / destaque em fundo claro */

  /* ---- Acentos ---- */
  --gold: #fec10d;         /* amarelo de marca — destaque de palavra-chave + CTA */
  --gold-bright: #ffd24a;  /* hover / brilho */
  --gold-ink: #241a00;     /* texto sobre amarelo */

  --white: #ffffff;
  --white-off: #eef1fb;    /* fundo das seções claras */
  --paper: #f6f8ff;

  /* Neutros de apoio (bordas/estados sobre fundo claro) */
  --n-100: #e7ebf7;
  --n-200: #d3d9ee;
  --n-300: #aab3d4;
  --n-400: #7a83a8;
  --n-500: #565f83;

  /* Texto */
  --ink: #0a1330;                       /* texto principal sobre claro */
  --ink-2: rgba(10, 19, 48, 0.68);
  --ink-3: rgba(10, 19, 48, 0.5);
  --on-dark: #ffffff;
  --on-dark-2: rgba(255, 255, 255, 0.74);
  --on-dark-3: rgba(255, 255, 255, 0.52);

  /* Superfície de vidro sobre navy */
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* ---- Tipografia ---- */
  --font-display: "Rajdhani", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fw-semibold: 600;
  --fw-bold: 700;

  --fs-hero: clamp(3rem, 6vw + 1rem, 6.5rem);
  --fs-h1: clamp(2.15rem, 3vw + 1.1rem, 3.6rem);
  --fs-h2: clamp(1.65rem, 2vw + 1rem, 2.6rem);
  --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.6rem);
  --fs-lg: clamp(1.05rem, 0.4vw + 1rem, 1.28rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  --lh-tight: 1.02;
  --lh-snug: 1.22;
  --lh-normal: 1.62;

  /* Espaçamento (escala 4px) */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem;
  --space-10: 2.5rem; --space-12: 3rem;  --space-16: 4rem;
  --space-20: 5rem;   --space-24: 6rem;

  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px;
  --radius-xl: 28px; --radius-full: 9999px;

  --shadow-card: 0 18px 48px -18px rgba(2, 13, 91, 0.45);
  --shadow-soft: 0 8px 24px -12px rgba(2, 13, 91, 0.3);
  --shadow-gold: 0 12px 40px -12px rgba(254, 193, 13, 0.45);

  --container: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-height: 74px; /* ajustado via JS */
}

/* ============================================================================
   BASE — fontes self-hosted (subset latin, cobre PT-BR).
   Design system da marca só permite Rajdhani ≥ SemiBold e Open Sans ≤ SemiBold.
   ========================================================================= */
@font-face {
  font-family: "Rajdhani"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/rajdhani-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Rajdhani"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/rajdhani-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans"; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url("../fonts/open-sans-var-latin.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  min-height: 100svh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
}

p { max-width: 66ch; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================================
   COMPONENTES
   ========================================================================= */
.text-gold { color: var(--gold); }
.text-green { color: var(--gold); }
.nowrap { white-space: nowrap; }

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); }
.btn--lg { padding: var(--space-4) var(--space-10); font-size: var(--fs-lg); }
.btn--block { width: 100%; }

/* ---- Marca (lockup WebGlobal | snaq) ---- */
.lockup { display: inline-flex; align-items: center; gap: var(--space-2); }
.lockup__div {
  width: 1px; height: 20px; background: rgba(255, 255, 255, 0.25);
}
.lockup .logo-webglobal { height: 36px; width: auto; }
.lockup .logo-snaq { height: 11px; width: auto; margin-top: 5px; }
@media (min-width: 640px) {
  .lockup { gap: var(--space-4); }
  .lockup__div { height: 28px; }
  .lockup .logo-webglobal { height: 55px; }
  .lockup .logo-snaq { height: 20px; margin-top: 8px; }
}

/* ---- Cabeçalho de seção ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.eyebrow--center::before { display: none; }

.section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
.section--navy { background: var(--navy); color: var(--on-dark); }
.section--deep {
  background: radial-gradient(120% 90% at 50% 0%, var(--navy) 0%, var(--navy-deep) 70%);
  color: var(--on-dark);
}
.section--light { background: var(--white-off); color: var(--ink); }
@media (min-width: 480px) {
  #destaques .section__title { max-width: 100%; white-space: nowrap; }
}
#lentes .section__title, #lentes .section__lead { max-width: 100%; }

.section__title { margin-top: var(--space-4); font-size: var(--fs-h1); max-width: 18ch; }
.section--navy .section__title, .section--deep .section__title { color: var(--white); }
.section__lead {
  margin-top: var(--space-5); font-size: var(--fs-lg); max-width: 56ch; line-height: 1.55;
}
.section--navy .section__lead, .section--deep .section__lead { color: var(--on-dark-2); }
.section--light .section__lead { color: var(--ink-2); }

.head--center {
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.head--center .section__title, .head--center .section__lead {
  margin-inline: auto; max-width: 24ch;
}
.head--center .section__lead { max-width: 60ch; }
#categorias .section__title, #categorias .section__lead,
#tendencias .section__title, #tendencias .section__lead { max-width: 100%; }

/* Animação de entrada (revela ao rolar) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 13, 91, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--space-3);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
}
.site-header__cta { padding: var(--space-2) var(--space-3); }
.site-header__cta .full { display: none; }
@media (min-width: 620px) {
  .site-header__inner { gap: var(--space-4); }
  .site-header__cta { padding: var(--space-2) var(--space-4); }
  .site-header__cta .short { display: none; }
  .site-header__cta .full { display: inline; }
}

/* ============================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 72% 40%, rgba(10, 58, 160, 0.55) 0%, transparent 60%),
    radial-gradient(120% 100% at 50% 120%, var(--royal) 0%, var(--navy-deep) 55%);
  color: var(--on-dark);
  padding-block: var(--space-10) var(--space-16);
}
.hero__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 940px) {
  .hero { padding-block: var(--space-16) var(--space-20); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-12); }
}

.hero__tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(254, 193, 13, 0.5);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: clamp(3.25rem, 5vw + 1.5rem, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-top: var(--space-6);
}
.hero__title .text-gold { color: var(--gold); }

.hero__lead {
  margin-top: var(--space-6);
  font-size: var(--fs-lg);
  color: var(--on-dark-2);
  max-width: 52ch;
  line-height: 1.5;
}
.hero__lead strong { color: var(--white); font-weight: var(--fw-semibold); }

.hero__actions {
  margin-top: var(--space-8);
  display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center;
}
.hero__source {
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--on-dark-3);
  letter-spacing: 0.02em;
}

.hero__visual { position: relative; display: none; }
.hero__visual img {
  max-width: 350px; width: 100%; height: auto;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
@media (min-width: 940px) {
  .hero__visual { display: block; }
}

/* ---- Stat bar ---- */
.statbar {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 720px) { .statbar { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: var(--space-4) var(--space-5);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--gold);
}
.stat__num small { font-size: 0.75em; position: relative; top: -3px; }
.stat__label {
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--on-dark-2);
  line-height: 1.25;
}

/* ============================================================================
   LENTES — "como medimos o poder de marca"
   ========================================================================= */
.lenses__grid {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .lenses__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .lenses__grid { grid-template-columns: repeat(4, 1fr); } }

.lens {
  padding: var(--space-6);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.lens:hover { transform: translateY(-4px); border-color: rgba(254, 193, 13, 0.5); }
.lens h3 { font-size: var(--fs-h3); color: var(--gold); }
.lens p { margin-top: var(--space-3); font-size: var(--fs-sm); color: var(--on-dark-2); }

/* Faixa de reforço (fonte de dados) */
.datasource {
  margin-top: var(--space-12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-4) var(--space-8);
  padding: var(--space-6);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.datasource p { max-width: 100%; color: var(--on-dark-2); font-size: var(--fs-sm); }
.datasource strong { color: var(--white); }

/* ============================================================================
   DESTAQUES / GRÁFICOS (fundo claro)
   ========================================================================= */
.charts__grid {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .charts__grid { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--n-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}
.card__kicker {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); }
.card__head-logo { flex: none; height: 60px; width: auto; object-fit: contain; }
.card__title { margin-top: var(--space-2); font-size: var(--fs-h3); color: var(--ink); }
.card__note { margin-top: var(--space-4); font-size: var(--fs-sm); color: var(--ink-2); max-width: 100%; }
.card__source { margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--ink-3); }
.card--wide { grid-column: 1 / -1; }

/* ---- CTA de download entre os cards de destaque ---- */
.charts__cta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-6);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--navy);
  border: 1px solid var(--royal);
  box-shadow: var(--shadow-card);
}
.charts__cta-text { flex: none; }
.charts__cta-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.6rem, 1.4vw + 1rem, 1.9rem);
  line-height: var(--lh-snug);
  color: var(--white);
  max-width: 46ch;
}
.charts__cta-break { display: none; }
.charts__cta-btn { flex: none; }
@media (min-width: 900px) {
  .charts__cta-break { display: inline; }
  .charts__cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .charts__cta-text { flex: 1 1 320px; }
}

/* ---- Gráfico de barras horizontais ---- */
.bars { margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.bar__row { display: grid; gap: var(--space-2); }
.bar__head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); }
.bar__name {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-weight: var(--fw-semibold); font-size: var(--fs-xs); color: var(--ink);
}
.bar__logo { flex: none; height: 32px; width: auto; object-fit: contain; }
.bar__val {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-body); color: var(--ink-2);
}
.bar__track {
  height: 12px; border-radius: var(--radius-full);
  background: var(--n-100); overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--blue), #4f8bff);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-in .bar__fill { width: var(--w, 0%); }
.bar__row--lead .bar__name { color: var(--navy); font-weight: var(--fw-bold); }
.bar__row--lead .bar__val { color: var(--navy); }
.bar__row--lead .bar__fill {
  background: linear-gradient(90deg, #e0a400, var(--gold));
  box-shadow: 0 2px 10px -2px rgba(254, 193, 13, 0.6);
}

/* ---- Barras com ícone de categoria (card "canais") ---- */
.bars--icon .bar__row { display: flex; align-items: center; gap: var(--space-4); }
.bar__icon {
  flex: none;
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  border: 2px solid var(--blue);
  overflow: hidden;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, #e6ebf7 100%);
}
.bar__icon picture {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.bar__icon img { max-width: 68%; max-height: 68%; width: auto; height: auto; object-fit: contain; }
.bar__body { flex: 1; min-width: 0; display: grid; gap: var(--space-2); }

/* ---- Donut (1P x 3P) ---- */
.donut-wrap { margin-top: var(--space-4); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-8); }
.donut { --p: 0; position: relative; width: 168px; height: 168px; flex: none; }
.donut svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.donut__track { fill: none; stroke: var(--n-100); stroke-width: 20; }
.donut__val {
  fill: none; stroke: var(--blue); stroke-width: 20; stroke-linecap: round;
  stroke-dasharray: var(--circ);
  stroke-dashoffset: var(--circ);
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-in .donut__val { stroke-dashoffset: var(--offset); }
.donut__center {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
}
.donut__center b {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 2.2rem; color: var(--navy); line-height: 1;
}
.donut__center span { font-size: var(--fs-xs); color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; }
.donut-legend { display: grid; gap: var(--space-3); }
.donut-legend li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--fs-sm); color: var(--ink-2); }
.donut-legend .dot { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.donut-legend b { color: var(--ink); font-family: var(--font-display); }

/* ---- Comparação lado a lado (ofertas x SKUs) ---- */
.versus { margin-top: var(--space-6); display: grid; gap: var(--space-6); }
@media (min-width: 520px) { .versus { grid-template-columns: 1fr 1fr; } }
.versus__col h4 {
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--space-3);
}
.versus__lead {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--n-100);
  margin-bottom: var(--space-2);
}
.versus__lead:first-of-type { border-color: var(--gold); background: rgba(254, 193, 13, 0.08); }
.versus__logo { flex: none; height: 28px; width: auto; object-fit: contain; }
.versus__info { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); width: 100%; }
.versus__brand { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--ink); }
.versus__pct { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--navy); }

/* ============================================================================
   CATEGORIAS + LÍDERES — cards com foto do produto (fundo escuro)
   ========================================================================= */
.catgrid {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) { .catgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .catgrid { grid-template-columns: repeat(5, 1fr); } }

.catcard {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.catcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.catcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: var(--space-5);
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, #e6ebf7 100%);
}
.catcard__media img {
  max-height: 100%; max-width: 90%; width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(2, 13, 91, 0.22));
}
.catcard__foot { padding: var(--space-4); border-top: 1px solid var(--n-100); }
.catcard__cat {
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue);
}
.catcard__lead {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-2);
  margin-top: var(--space-2);
}
.catcard__brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-xs); color: var(--ink); line-height: 1.1;
}
.catcard__logo { flex: none; height: 32px; width: auto; object-fit: contain; }
.catcard__pct {
  position: relative; flex: none;
  width: 56px; height: 56px;
  display: grid; place-items: center;
}
.catcard__pct svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.catcard__pct-track { fill: none; stroke: var(--n-100); stroke-width: 6; }
.catcard__pct-val {
  fill: none; stroke: var(--blue); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-in .catcard__pct-val { stroke-dashoffset: var(--offset, 163.36); }
.catcard__pct-num {
  position: absolute; inset: 0; display: grid; place-content: center;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 0.85rem; color: var(--navy);
}
.catcard--soon .catcard__media { filter: grayscale(0.35); }
.catcard--soon .catcard__brand { color: var(--ink-3); font-weight: var(--fw-semibold); }
.catcard--soon .catcard__pct {
  width: auto; height: auto; display: block;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 0.72rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em;
}

.catgrid__insights {
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .catgrid__insights { grid-template-columns: 1fr 1fr; } }
.insight {
  padding: var(--space-8);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.insight:hover { transform: translateY(-4px); border-color: rgba(254, 193, 13, 0.5); border-left-color: var(--gold); }
.insight__cat {
  display: block;
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-lg); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-2);
}
.insight p { font-size: var(--fs-body); color: var(--on-dark-2); line-height: 1.5; }
.insight strong { color: var(--white); }

/* ============================================================================
   ANATOMIA / TENDÊNCIAS (fundo escuro)
   ========================================================================= */
.trends__grid {
  margin-top: var(--space-12);
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .trends__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .trends__grid { grid-template-columns: repeat(4, 1fr); } }
.trend {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy-2), rgba(5, 19, 115, 0));
  border: 1px solid var(--glass-border);
}
.trend__cat { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.trend h3 { margin-top: var(--space-2); font-size: 1.2rem; color: var(--white); }
.trend p { margin-top: var(--space-3); font-size: var(--fs-sm); color: var(--on-dark-2); }

.anatomy-note {
  margin-top: var(--space-10);
  text-align: center;
  color: var(--on-dark-2);
  font-size: var(--fs-lg);
  max-width: 68ch; margin-inline: auto;
}

/* ============================================================================
   CTA FINAL
   ========================================================================= */
.final {
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(254, 193, 13, 0.16) 0%, transparent 55%),
    radial-gradient(120% 100% at 50% 120%, var(--royal) 0%, var(--navy-deep) 60%);
  color: var(--on-dark);
}
.final__inner {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 860px) {
  .final__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); }
}
.final__content { align-self: start; }
.final .section__title { max-width: 24ch; }
.final .section__lead { max-width: 34ch; margin-top: 0; color: var(--on-dark-2); }
.final__preview {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.final__preview .section__lead { flex: 1 1 180px; min-width: 0; max-width: none; }
.final__form-col { width: 100%; }
.rd-form {
  width: 100%;
  max-width: 460px;
  min-height: 340px; /* reserva espaço até o form injetado pelo RD Station carregar — evita CLS */
  text-align: left;
}
.final__legal { margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--on-dark-3); max-width: 460px; }
.final__mockup { flex: none; width: 140px; }
.final__mockup img { width: 100%; height: auto; }

/* ============================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-deep); padding-block: var(--space-10); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.site-footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-6);
}
.site-footer small { color: var(--on-dark-3); font-size: var(--fs-xs); }
