/* -----------------------------------
   ESPACIADOS (MARGIN / PADDING)
----------------------------------- */

.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }

.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.pt-1 { padding-top: 0.5rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pt-4 { padding-top: 2rem !important; }

.pb-1 { padding-bottom: 0.5rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 2rem !important; }

/* -----------------------------------
   FLEXBOX
----------------------------------- */

.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }

.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }

.items-start { align-items: flex-start !important; }
.items-center { align-items: center !important; }
.items-end { align-items: flex-end !important; }

/* -----------------------------------
   GRID
----------------------------------- */

.grid { display: grid !important; }
.grid-center { place-items: center !important; }

.col-1 { grid-template-columns: repeat(1, 1fr) !important; }
.col-2 { grid-template-columns: repeat(2, 1fr) !important; }
.col-3 { grid-template-columns: repeat(3, 1fr) !important; }
.col-4 { grid-template-columns: repeat(4, 1fr) !important; }

/* -----------------------------------
   TEXTO
----------------------------------- */

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.text-bold { font-weight: 700 !important; }
.text-semibold { font-weight: 600 !important; }
.text-light { font-weight: 300 !important; }

.text-sm { font-size: 0.85rem !important; }
.text-md { font-size: 1rem !important; }
.text-lg { font-size: 1.3rem !important; }
.text-xl { font-size: 1.6rem !important; }

/* -----------------------------------
   TAMAÑOS
----------------------------------- */

.w-full { width: 100% !important; }
.w-50 { width: 50% !important; }
.w-33 { width: 33.33% !important; }
.w-25 { width: 25% !important; }

.h-full { height: 100% !important; }
.h-auto { height: auto !important; }

/* -----------------------------------
   VISIBILIDAD
----------------------------------- */

.hidden { display: none !important; }
.visible { display: block !important; }

.opacity-0 { opacity: 0 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-100 { opacity: 1 !important; }

/* -----------------------------------
   BORDES Y SOMBRAS
----------------------------------- */

.rounded { border-radius: var(--radius) !important; }
.rounded-sm { border-radius: 6px !important; }
.rounded-lg { border-radius: 16px !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-none { box-shadow: none !important; }

.border { border: 1px solid #d1d5db !important; }
.border-0 { border: none !important; }
.border-primary { border: 2px solid var(--primary) !important; }

/* -----------------------------------
   COLORES (NEUTROS)
----------------------------------- */

.bg-white { background: #fff !important; }
.bg-light { background: #f3f4f6 !important; }
.bg-dark { background: #1f1f1f !important; }

.text-white { color: #fff !important; }
.text-dark { color: #1f1f1f !important; }
.text-muted { color: var(--color-muted) !important; }

/* -----------------------------------
   CURSORES
----------------------------------- */

.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* -----------------------------------
   TRANSICIONES
----------------------------------- */

.transition { transition: 0.2s ease !important; }
