/* ============================================================================
   TENANT BRAND UTILITIES - Multi-Tenant Design Tokens
   
   Este archivo NO es procesado por Tailwind para evitar purge.
   Las variables CSS (--tenant-*) son inyectadas dinámicamente por TenantHelper.
   ============================================================================ */

/* Backgrounds */
.bg-brand-primary {
  background-color: rgb(var(--tenant-primary)) !important;
}

.bg-brand-secondary {
  background-color: rgb(var(--tenant-secondary)) !important;
}

/* Text Colors */
.text-brand-primary {
  color: rgb(var(--tenant-primary)) !important;
}

.text-brand-secondary {
  color: rgb(var(--tenant-secondary)) !important;
}

/* Border Colors */
.border-brand-primary {
  border-color: rgb(var(--tenant-primary)) !important;
}

.border-brand-secondary {
  border-color: rgb(var(--tenant-secondary)) !important;
}

/* Typography */
.font-tenant {
  font-family: var(--tenant-font) !important;
}

/* Hover variants */
.hover\:bg-brand-primary:hover {
  background-color: rgb(var(--tenant-primary)) !important;
}

.hover\:bg-brand-secondary:hover {
  background-color: rgb(var(--tenant-secondary)) !important;
}

.hover\:text-brand-primary:hover {
  color: rgb(var(--tenant-primary)) !important;
}

.hover\:text-brand-secondary:hover {
  color: rgb(var(--tenant-secondary)) !important;
}
