/* ============================================================
   CANAL MEDÍOCRE — IDENTIDADE VISUAL
   Conceito: Ficha Policial / Burocracia Irônica
   ============================================================ */

:root {
  /* Cores reais da identidade Canal Medíocre */
  --paper:      #F2EDE3;
  --paper-dark: #E5DDD0;
  --ink:        #111111;
  --ink-light:  #3A3530;
  --ink-faded:  #7A706A;
  --line:       #C8BCB0;

  --brand-blue:  #2B3ED4;   /* azul Brasil-Sp e MEDÍOCRE-CORP */
  --brand-red:   #E8340A;   /* labels FUNÇÃO, HABILIDADE etc. */
  --brand-gold:  #C8920A;   /* linha dourada das carteiras */

  --stamp-green: #1E7E4A;
  --white:       #FFFFFF;
  --black:       #0A0A0A;
  --bg-dark:     #111111;
  --bg-blue:     #1A2680;   /* versão escura do azul */
  --bg-stripe:   rgba(0,0,0,0.03);

  --font-mono:    'Courier Prime', 'Courier New', 'Lucida Console', monospace;
  --font-elite:   'Special Elite', 'Courier New', monospace;
  --font-cond:    'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;

  --max-width: 1100px;
  --section-pad: 80px 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mono);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HEADER ── */
.site-header {
  background: var(--ink);
  color: var(--paper);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--brand-blue);
  min-height: 56px;
}

.header-serial {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-faded);
  white-space: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-badge {
  font-size: 10px;
  font-weight: bold;
  background: var(--brand-blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 24px;
}
.header-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { opacity: 1; }

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 48px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.section-header.inverted {
  border-color: rgba(255,255,255,0.3);
}

.section-codigo {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faded);
  margin-bottom: 8px;
  font-weight: bold;
}

.section-header h2 {
  font-family: var(--font-elite);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.section-sublabel {
  font-size: 12px;
  color: var(--ink-faded);
  margin-top: 6px;
  letter-spacing: 0.05em;
  font-style: italic;
}

.section-header.inverted h2,
.section-header.inverted .section-sublabel,
.section-header.inverted .section-codigo { color: rgba(255,255,255,0.8); }
.section-header.inverted .section-codigo { color: rgba(255,255,255,0.5); }

/* ── STAMPS ── */
.stamp {
  display: inline-block;
  font-family: var(--font-elite);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border: 3px solid;
  border-radius: 4px;
  transform: rotate(-8deg);
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
}
.stamp-red  { border-color: var(--brand-red);   color: var(--brand-red); }
.stamp-blue { border-color: var(--brand-blue);  color: var(--brand-blue); }
.stamp-green{ border-color: var(--stamp-green); color: var(--stamp-green); }
.stamp-gold { border-color: var(--brand-gold);  color: var(--brand-gold); }

/* ── FICHA CAMPOS ── */
.campo-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 4px;
  font-weight: bold;
}

.campo-valor {
  display: block;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  min-height: 28px;
}
.campo-valor.bold   { font-weight: bold; font-size: 18px; }
.campo-valor.italic { font-style: italic; font-size: 13px; }

/* ══════════════════════════════════════════
   HERO — FICHA DE IDENTIFICAÇÃO
══════════════════════════════════════════ */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      var(--line) 27px,
      var(--line) 28px
    );
  opacity: 0.2;
  pointer-events: none;
}

.ficha-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 32px;
}

.ficha-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 12px;
  font-weight: bold;
}

.ficha-titulo {
  font-family: var(--font-elite);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.01em;
}

.ficha-subtitulo {
  font-size: 11px;
  color: var(--ink-faded);
  margin-top: 12px;
  font-style: italic;
  letter-spacing: 0.05em;
  max-width: 400px;
}

.ficha-stamp-area {
  padding-top: 16px;
  flex-shrink: 0;
}

.ficha-body {
  border: 2px solid var(--ink);
  background: rgba(255,255,255,0.6);
  padding: 32px;
  position: relative;
}

.ficha-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--ink);
}

.ficha-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.ficha-row:last-child { border-bottom: none; }

.ficha-campo {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}
.ficha-campo:last-child { border-right: none; }
.ficha-campo.large  { flex: 2; }
.ficha-campo.full   { flex: 1 1 100%; }

/* Stats row */
.stats-row {
  background: var(--ink);
  border-radius: 0;
  padding: 24px 0;
  margin-top: 0;
  justify-content: center;
  align-items: center;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  color: var(--paper);
}

.stat-block.highlight .stat-number {
  color: #FFD700;
}

.stat-number {
  display: block;
  font-family: var(--font-elite);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: bold;
  line-height: 1;
  color: var(--paper);
}

.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244,239,228,0.6);
  margin-top: 6px;
  line-height: 1.4;
}

.stat-divider {
  color: rgba(244,239,228,0.2);
  font-size: 32px;
  align-self: center;
}

.ficha-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--paper-dark);
  border: 2px solid var(--ink);
  border-top: none;
  font-size: 11px;
  color: var(--ink-faded);
  letter-spacing: 0.08em;
}

.assinatura {
  font-family: var(--font-elite);
  font-style: italic;
  color: var(--ink);
}

/* ══════════════════════════════════════════
   NÚMEROS
══════════════════════════════════════════ */
.section-numeros {
  padding: var(--section-pad);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  margin-bottom: 32px;
}

.numero-card {
  padding: 32px 24px;
  border-right: 1px solid var(--ink);
  position: relative;
  background: var(--white);
  transition: background 0.2s;
}
.numero-card:last-child { border-right: none; }
.numero-card:hover { background: var(--paper); }

.numero-card.destaque {
  background: var(--paper-dark);
}

.numero-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: var(--stamp-red);
  color: var(--white);
  padding: 3px 8px;
}

.numero-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.numero-valor {
  font-family: var(--font-elite);
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.numero-desc {
  font-size: 13px;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 4px;
}

.numero-obs {
  font-size: 11px;
  color: var(--ink-faded);
  font-style: italic;
}

.insight-box {
  border: 2px dashed var(--brand-red);
  padding: 24px;
  background: rgba(232,52,10,0.04);
}

.insight-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  margin-bottom: 12px;
  display: block;
}

.insight-box p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ══════════════════════════════════════════
   FORMATOS DE CONTEÚDO
══════════════════════════════════════════ */
.section-conteudo {
  padding: var(--section-pad);
  background: var(--paper);
}

.formatos-list {
  border: 2px solid var(--ink);
}

.formato-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.formato-item:last-child { border-bottom: none; }
.formato-item:nth-child(even) { background: var(--bg-stripe); }
.formato-item:hover { background: var(--paper-dark); }

.formato-num {
  font-family: var(--font-elite);
  font-size: 24px;
  font-weight: bold;
  color: var(--line);
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.formato-info {
  flex: 1;
}

.formato-nome {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.formato-desc {
  display: block;
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.5;
}

.formato-tag {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PÚBLICO-ALVO
══════════════════════════════════════════ */
.section-publico {
  padding: var(--section-pad);
  background: var(--white);
}

.publico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.publico-ficha {
  border: 2px solid var(--ink);
  overflow: hidden;
}

.publico-ficha.full-width {
  grid-column: 1 / -1;
}

.publico-ficha-header {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
}

.publico-campo {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.publico-campo:last-child { border-bottom: none; }

.publico-ficha p {
  padding: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-light);
}

.progress-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.progress-label {
  font-size: 11px;
  width: 100px;
  flex-shrink: 0;
  color: var(--ink-light);
}

.bar {
  flex: 1;
  height: 8px;
  background: var(--paper-dark);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--ink);
  transition: width 1s ease;
}

.progress-pct {
  font-size: 11px;
  font-weight: bold;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.publico-tags {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  border: 1px solid var(--ink);
  padding: 4px 12px;
  background: transparent;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.tag:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ══════════════════════════════════════════
   EQUIPE — CARTEIRAS
══════════════════════════════════════════ */
.section-equipe {
  padding: var(--section-pad);
  background: var(--paper);
}

.carteiras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.carteira-wrap {
  position: relative;
  /* força proporção das carteiras: ~930×680 ≈ 1.37:1 */
  aspect-ratio: 930 / 680;
}

.carteira-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.carteira-img:hover {
  transform: translateY(-6px) rotate(0.8deg);
  box-shadow: 0 16px 40px rgba(43,62,212,0.22);
}

.carteira-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  border: 2px solid var(--brand-blue);
  padding: 20px 16px;
  background: var(--white);
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
}

.carteira-num {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.carteira-nome {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.carteira-funcao {
  font-size: 11px;
  color: var(--brand-red);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carteira-redes {
  font-size: 11px;
  color: var(--ink-faded);
  font-style: italic;
}

.equipe-nota {
  border: 1px solid var(--line);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  background: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════
   PLATAFORMAS (NÚMEROS)
══════════════════════════════════════════ */
.plataformas-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  margin-bottom: 32px;
}

.plataforma-bloco {
  border-right: 1px solid var(--ink);
}
.plataforma-bloco:last-child { border-right: none; }

.plataforma-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.plataforma-bloco.instagram .plataforma-header { background: var(--brand-blue); }
.plataforma-bloco.tiktok    .plataforma-header { background: var(--ink); }
.plataforma-bloco.youtube   .plataforma-header { background: var(--brand-red); }

.plataforma-icone { font-size: 16px; }
.plataforma-nome  {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex: 1;
}

.plataforma-badge {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  white-space: nowrap;
}
.plataforma-badge.verificado { background: rgba(255,255,255,0.25); color: #fff; }
.plataforma-badge.viral      { background: #FFD700; color: var(--ink); }
.plataforma-badge.members    { background: rgba(255,255,255,0.2); color: #fff; }

.plataforma-metricas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.metrica {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.metrica:nth-child(even) { border-right: none; }
.metrica:nth-last-child(-n+2) { border-bottom: none; }
.metrica:hover { background: var(--paper); }

.metrica.destaque .metrica-valor { color: var(--brand-blue); }

.metrica-valor {
  display: block;
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.metrica-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-faded);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   POR QUE PATROCINAR
══════════════════════════════════════════ */
.section-porque {
  padding: var(--section-pad);
  background: var(--bg-blue);
  color: var(--paper);
}

.porque-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}

.porque-item {
  display: flex;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.porque-item:last-child { border-bottom: none; }
.porque-item:hover { background: rgba(255,255,255,0.04); }

.porque-num {
  font-family: var(--font-elite);
  font-size: 36px;
  font-weight: bold;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.porque-content strong {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.porque-content p {
  font-size: 13px;
  color: rgba(244,239,228,0.6);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PATROCÍNIO
══════════════════════════════════════════ */
.section-patrocinio {
  padding: var(--section-pad);
  background: var(--paper);
}

.patrocinio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  margin-bottom: 24px;
}

.patrocinio-card {
  padding: 28px 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  transition: background 0.2s;
}
.patrocinio-card:hover { background: var(--paper-dark); }

.patrocinio-card.featured {
  background: var(--ink);
  color: var(--paper);
}
.patrocinio-card.featured .patrocinio-desc,
.patrocinio-card.featured .patrocinio-plataforma { color: rgba(244,239,228,0.65); }
.patrocinio-card.featured .patrocinio-nome { color: var(--paper); }

.patrocinio-stamp {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: #FFD700;
  color: var(--ink);
  padding: 3px 8px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.patrocinio-num {
  font-family: var(--font-elite);
  font-size: 40px;
  font-weight: bold;
  color: var(--line);
  line-height: 1;
  margin-bottom: 8px;
}
.patrocinio-card.featured .patrocinio-num { color: rgba(255,255,255,0.2); }

.patrocinio-nome {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.patrocinio-desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.patrocinio-plataforma {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: var(--ink-faded);
  text-transform: uppercase;
}

.patrocinio-nota {
  border: 1px solid var(--line);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  background: rgba(255,255,255,0.5);
}


/* ══════════════════════════════════════════
   VÍDEOS — RANKING
══════════════════════════════════════════ */
.section-cases {
  padding: var(--section-pad);
  background: var(--white);
}

.videos-ranking {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
}

.video-row {
  display: grid;
  grid-template-columns: 52px 1fr auto 110px;
  align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.video-row:last-child { border-bottom: none; }
.video-row:hover { background: var(--paper); }

/* rank tiers */
.video-row.rank-top  { background: rgba(43,62,212,0.04); }
.video-row.rank-top:hover { background: rgba(43,62,212,0.09); }
.video-row.rank-high { background: rgba(43,62,212,0.02); }

.rank-pos {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-blue);
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid var(--line);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
}

.rank-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.rank-titulo {
  font-size: 13px;
  font-weight: bold;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.rank-desc {
  font-size: 11px;
  color: var(--ink-faded);
  font-style: italic;
  line-height: 1.4;
}

.rank-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.rank-curtidas {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-red);
}

.rank-comentarios {
  font-size: 11px;
  color: var(--ink-faded);
}

.rank-plataforma {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0 16px;
  text-transform: uppercase;
}
.rank-plataforma.instagram { color: var(--brand-blue); }
.rank-plataforma.tiktok    { color: var(--ink); }

@media (max-width: 768px) {
  .video-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .rank-pos { grid-row: 1 / 3; font-size: 18px; min-width: 40px; }
  .rank-info { border-right: none; padding: 12px 14px 4px; }
  .rank-stats { flex-direction: row; gap: 12px; padding: 4px 14px 12px; border-right: none; align-items: center; }
  .rank-plataforma { display: none; }
}

/* ══════════════════════════════════════════
   CONTATO
══════════════════════════════════════════ */
.section-contato {
  padding: var(--section-pad);
  background: var(--paper);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
}

.contato-ficha {
  border: 2px solid var(--ink);
}

.contato-ficha-header {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
}

.contato-campo {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.contato-campo:last-child { border-bottom: none; }

.contato-valor {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--ink);
  padding-top: 4px;
}
.contato-valor.italic { font-style: italic; font-weight: normal; font-size: 13px; }

.email-link:hover { text-decoration: underline; }

.contato-form {
  border: 2px solid var(--ink);
}

.form-campo {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
  margin-top: 6px;
}
.form-input:focus { border-color: var(--ink); }
.form-input::placeholder { color: var(--ink-faded); }

textarea.form-input {
  resize: vertical;
  border: 1px solid var(--line);
  padding: 8px;
  min-height: 100px;
}
textarea.form-input:focus { border-color: var(--ink); }

select.form-input { cursor: pointer; }

.btn-submit {
  display: block;
  width: calc(100% - 40px);
  margin: 20px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--font-elite);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-submit:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: 48px 0 32px;
  border-top: 4px solid var(--brand-blue);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-slogan {
  font-size: 13px;
  font-style: italic;
  color: rgba(244,239,228,0.5);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(244,239,228,0.35);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }

  .container { padding: 0 20px; }

  .site-header {
    flex-wrap: wrap;
    padding: 12px 20px;
    gap: 12px;
  }
  .header-serial { display: none; }
  .header-nav { gap: 16px; flex-wrap: wrap; }
  .header-nav a { font-size: 10px; }

  .ficha-header { flex-direction: column; }
  .ficha-stamp-area { order: -1; }

  .ficha-row { flex-direction: column; }
  .ficha-campo { border-right: none; border-bottom: 1px solid var(--line); }
  .ficha-campo:last-child { border-bottom: none; }

  .stats-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-block { width: 50%; min-width: auto; }

  .plataformas-tabs { grid-template-columns: 1fr; }
  .plataforma-bloco { border-right: none; border-bottom: 1px solid var(--ink); }
  .plataforma-bloco:last-child { border-bottom: none; }

  .carteiras-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .carteira-wrap  { aspect-ratio: 930 / 680; }

  .publico-grid { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; }

  .cases-grid { grid-template-columns: 1fr; }
  .case-card { border-right: none; border-bottom: 1px solid var(--ink); }
  .case-card:last-child { border-bottom: none; }

  .porque-item { flex-direction: column; gap: 8px; padding: 24px 20px; }
  .porque-num { font-size: 24px; }

  .patrocinio-grid { grid-template-columns: 1fr; }
  .patrocinio-card { border-right: none; }

  .footer-top { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ── PRINT / PDF ── */
@media print {
  .site-header, .header-nav { display: none; }
  section { page-break-inside: avoid; }
  .hero::before { display: none; }
}
