/* ================================================
   COVER
   ================================================ */
#cover {
  min-height: 100svh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px var(--pad-x) 40px;
}


/* ── Topo ── */
.cover-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cover-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ponto laranja */
.cover-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F48115;
  flex-shrink: 0;
}

.cover-cnpj {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-3);
  text-align: right;
  line-height: 1.8;
}

/* ── Centro ── */
.cover-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 40px;
}

.cover-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* linha verde */
.cover-eyebrow::after {
  content: '';
  height: 1px;
  width: 32px;
  background: #A4CE2B;
}

.cover-h1 {
  font-size: clamp(36px, 10vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
}
.cover-h1 em {
  font-style: normal;
  font-weight: 700;
}

/* destaque colorido na última palavra */
.cover-h1 .hl-orange { color: #F48115; }
.cover-h1 .hl-teal   { color: #3EA5AC; }
.cover-h1 .hl-green  { color: #A4CE2B; }

.cover-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 340px;
  padding-left: 16px;
  border-left: 2px solid #3EA5AC;
}


/* ── Rodapé da capa ── */
.cover-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cover-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cover-author-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Desktop ── */
@media (min-width: 768px) {
  #cover { padding: 48px var(--pad-x) 56px; }

  .cover-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .cover-h1 { font-size: clamp(56px, 8vw, 96px); }
}
