/* TEXTO */
.text-muted    { color: var(--text-muted); }
.text-accent   { color: var(--accent); }
.text-verde    { color: var(--verde); }
.text-rojo     { color: var(--rojo); }
.text-naranja  { color: var(--naranja); }
.text-azul     { color: var(--azul); }
.text-sm       { font-size: 12px; }
.text-xs       { font-size: 11px; }
.text-bold     { font-weight: 700; }
.text-upper    { text-transform: uppercase; letter-spacing: 0.08em; }
.text-center   { text-align: center; }
.text-right    { text-align: right; }

/* SPACING */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* FLEX */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* DISPLAY */
.hidden  { display: none !important; }
.w-full  { width: 100%; }
