 /* Badge base */
  .ci-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
  }
  .ci-box {
    --size: 35px;            /* ajuste de tamanho único */
    width: var(--size);
    height: var(--size);
    border-radius: 6px;      /* arestas arredondadas */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: calc(var(--size) * 0.65);
    color: #fff;
    user-select: none;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    box-shadow: 0px 0px 2px;
  }
  /* Cores oficiais (RGB) do Guia Prático */
  .ci-l   { background: #00A651; } /* Livre:  RGB 0,166,81   */
  .ci-10  { background: #0095DA; } /* 10:     RGB 0,149,218  */
  .ci-12  { background: #FBC115; } /* 12:     RGB 251,193,21 */
  .ci-14  { background: #F58220; } /* 14:     RGB 245,130,32 */
  .ci-16  { background: #EC1D25; } /* 16:     RGB 236,29,37  */
  .ci-18  { background: #000000; } /* 18:     Preto (rich black → web #000) */

  .ci-text { font-size: .95rem; font-weight: 600; }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }