/* ── FIRMA DAMARTIC ─────────────────────────────────────────── */
.firma-damartic {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(42, 104, 69, 0.2);
  background: rgba(42, 104, 69, 0.04);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.firma-damartic:hover {
  background: rgba(42, 104, 69, 0.08);
  border-color: rgba(42, 104, 69, 0.35);
}
.firma-logo {
  height: 25px !important;
  width: 25px !important;
  max-width: 25px !important;
  display: block;
}
.firma-texto {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2A6845;
  letter-spacing: 0.01em;
}
.firma-sep {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(42, 104, 69, 0.25);
  flex-shrink: 0;
}
.firma-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Variante sobre fondo oscuro */
.firma-damartic--light {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.firma-damartic--light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.firma-damartic--light .firma-texto {
  color: #fff;
}
.firma-damartic--light .firma-sep {
  background: rgba(255, 255, 255, 0.2);
}
.firma-damartic--light .firma-tag {
  color: rgba(255, 255, 255, 0.45);
}
