/* --- Botó Comunitat v2.2 (flotant compacte) --- */
.new-badge-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #0ea5ea, #5fddff);
  color: #0b1b2b;
  font-weight: 700;
  font-family: var(--font-principal);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(14,165,234,0.35);
  white-space: nowrap;
  transition: all 0.25s ease;
  z-index: 9999;
  width: auto !important;           /* 💥 clau per evitar que s’estiri */
  max-width: fit-content !important;
}


.new-badge-btn:hover {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,165,234,0.45);
  color: #0b1b2b;
}

/* Punt indicador */
.new-badge-btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b1b2b;
}

/* Etiqueta “Beta” */
.new-badge-btn .label {
  background: #fff;
  color: #0b1b2b;
  border-radius: 6px;
  padding: 0.05rem 0.35rem;
  font-size: 0.7rem;
}

/* --- Mòbil: lleugerament més centrada --- */
@media (max-width: 768px) {
  .new-badge-btn {
    bottom: 18px;
    left: 16px;
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
    gap: 0.35rem;
  }
}
