/**
 * Próvision Brand — pill de sub-marca por produto
 * Usado junto com /js/provision-brand.js
 */

.brand-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-link {
  transition: opacity .15s;
}
.brand-link:hover {
  opacity: 0.85;
}

.brand-pill {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

.brand-pill[data-produto="kit"] {
  color: #34D399;
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
}

.brand-pill[data-produto="pro"] {
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
}

.brand-pill[data-produto="fiscal"] {
  color: #E8A847;
  background: rgba(232, 168, 71, 0.15);
  border-color: rgba(232, 168, 71, 0.4);
}

.brand-pill[data-produto="plataforma"] {
  color: #A78BFA;
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.4);
}

.brand-pill[data-produto="gerador"] {
  color: #FB923C;
  background: rgba(251, 146, 60, 0.15);
  border-color: rgba(251, 146, 60, 0.4);
}

/* Variantes responsivas */
@media (max-width: 480px) {
  .brand-pill {
    font-size: 9px;
    padding: 2px 8px;
    letter-spacing: 0.08em;
  }
}

/* Usage em fundo escuro (dark theme padrão) — cores já calibradas acima.
   Em fundo claro, aumentar contraste: */
.brand-pill.on-light {
  background: currentColor;
  color: #FFFFFF !important;
  border: none;
  opacity: 0.95;
}
