.main-content {
  padding: 22px var(--body-padding);
}

.main-content .content-header h1 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 8px;
}

.main-content .content-header .divisor {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 50%, var(--transient-color) 100%);
  margin-top: 18px;
  border-radius: 4px;
}

.main-content .content-body {
  margin-top: 14px;
}

/* ===== TABELA DE BENEFÍCIOS — estilo clean institucional ===== */

.tabela-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
}

/* estrutura da tabela */
.tabela-beneficios {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* cabeçalho */
.tabela-beneficios thead th {
  background: #F3F4F6;
  color: #6B7280;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  border-bottom: 1px solid #E5E7EB;
}

.tabela-beneficios thead th:first-child {
  width: 76px;
}

.tabela-beneficios thead th:last-child {
  width: 180px;
}

/* células do corpo */
.tabela-beneficios tbody td {
  padding: 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #EDEEF0;
  vertical-align: middle;
  word-wrap: break-word;
  background: #FFFFFF;
  line-height: 1.35;
  height: 52px;
}

/* linhas pares com fundo levemente diferente */
.tabela-beneficios tbody tr:nth-child(even):not(.categoria) td {
  background: #FAFAFA;
}

/* hover leve */
.tabela-beneficios tbody tr:hover:not(.categoria) td {
  background: #F7F7F7;
}

/* coluna "ITEM" com texto centralizado e cor discreta */
.tabela-beneficios tbody td:nth-child(1) {
  text-align: center;
  color: #6B7280;
}

/* coluna "VIGÊNCIA" com tom azulado discreto */
.tabela-beneficios tbody td:last-child {
  color: #60738A;
  text-align: left;
}

/* categoria (ex: EDUCAÇÃO, SAÚDE) */
.tabela-beneficios .categoria td {
  background: #F6F7F9;
  color: #6B7280;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 12px 16px;
}

/* responsividade */
@media (max-width: 720px) {
  .tabela-beneficios thead th:nth-child(1),
  .tabela-beneficios tbody td:nth-child(1) {
    width: 64px;
  }

  .tabela-beneficios thead th:nth-child(3),
  .tabela-beneficios tbody td:nth-child(3) {
    width: 140px;
  }

  .tabela-beneficios tbody td {
    padding: 12px;
    font-size: 13.5px;
  }
}
