.classes__confirm.classe-barra--premium {
  display: flex;
  align-items: stretch;
  height: 88px;
  min-height: 82px;
  max-height: 92px;
  padding: 0;
  border-radius: 22px;
  border: 1.5px solid #dcb35c;
  overflow: hidden; /* regra obrigatória: nada escapa do painel */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    linear-gradient(160deg, #0e1f3d 0%, #071224 60%, #050d1a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 24px rgba(220, 179, 92, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.5);
}

.classe-barra__esquerda {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 28%;
  min-width: 0;
  padding: 0 16px;
  border-right: 1px solid rgba(220, 179, 92, 0.25);
}

.classe-barra__icone {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(220, 179, 92, 0.8);
  background: #3a4356;
  box-shadow: 0 0 10px -2px currentColor;
  transition: background 0.2s ease;
}
.classe-barra__icone[data-vazio="1"] {
  background: #2a3142;
  border-color: rgba(220, 179, 92, 0.35);
  box-shadow: none;
}

.classe-barra__textos {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
}
.classe-barra__textos small {
  font-size: 11px;
  color: #8ea3bd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.classe-barra__textos strong {
  font-family: var(--font-display, Georgia, serif);
  font-size: 18px;
  color: #f2d089;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.classe-barra__papel {
  font-style: normal;
  font-size: 10px;
  color: #cfae5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.classe-barra__centro {
  flex: 0 0 34%;
  margin: 0;
  padding: 0 12px;
  text-align: center;
  color: #8ea3bd;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(220, 179, 92, 0.25);
  min-width: 0;
}

.classe-barra__direita {
  flex: 0 0 38%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px; /* regra obrigatória: >=16px de respiro nas duas bordas */
}

/* regra obrigatória: nunca vazar — largura/altura fixas dentro da coluna,
   nada de transform/scale (que só cresce o PAINT, não o layout box, e foi
   isso que estourou a borda direita na v1) nem posicionamento absoluto */
.classe-barra--premium .hexbtn {
  width: 100%;
  max-width: 260px;
  height: 58px;
  min-height: 54px;
  max-height: 64px;
  margin: 0;
}

@media (max-width: 900px) {
  .classes__confirm.classe-barra--premium {
    height: auto;
    max-height: none;
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px 0;
  }
  .classe-barra__esquerda,
  .classe-barra__centro,
  .classe-barra__direita {
    flex: 1 1 100%;
    border-right: none;
    padding: 4px 16px;
  }
  .classe-barra__centro { order: 3; }
  .classe-barra__direita { order: 2; }
}
