/* ============================================
   UTILIDADES / HELPERS — REVERENCIA MAJESTAD
   ============================================ */

/* --------------------------------------------
   SPACING
-------------------------------------------- */

/* Margen superior */
.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; }
.mt-5 { margin-top: 3rem !important; }

/* Margen inferior */
.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; }
.mb-5 { margin-bottom: 3rem !important; }

/* Padding */
.p-1 { padding: 0.75rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

/* --------------------------------------------
   TEXT
-------------------------------------------- */

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

.text-gold { color: var(--rm-gold-strong) !important; }
.text-muted { color: var(--rm-text-muted) !important; }

.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
}

/* --------------------------------------------
   DISPLAY & FLEX
-------------------------------------------- */

.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.flex-center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex !important;
  flex-direction: column;
}

/* --------------------------------------------
   GRID HELPERS
-------------------------------------------- */

.grid-2 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* --------------------------------------------
   WIDTHS
-------------------------------------------- */

.w-100 { width: 100% !important; }
.max-w-480 { max-width: 480px !important; }
.max-w-640 { max-width: 640px !important; }
.max-w-800 { max-width: 800px !important; }

.mx-auto { margin-inline: auto !important; }

/* --------------------------------------------
   VISIBILITY CONTROLS
-------------------------------------------- */

.hide-mobile { display: block !important; }
.hide-desktop { display: none !important; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block !important; }
}

/* --------------------------------------------
   DECORATIVE UTILITIES
-------------------------------------------- */

.rm-divider {
  width: 70px;
  height: 1px;
  margin-block: 1rem 2rem;
  background: linear-gradient(90deg, transparent, var(--rm-gold-strong), transparent);
}

.rm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rm-text-muted);
  background: rgba(0, 0, 0, 0.55);
}

/* --------------------------------------------
   BUTTON GHOST
-------------------------------------------- */

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--rm-radius-pill);
  border: 1px solid var(--rm-border-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rm-text-muted);
  transition: 0.2s ease;
}

.btn-ghost-dark:hover {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--rm-text);
}

.btn-ghost-dark:active {
  transform: scale(0.97);
}
/* ============================================
   MÓVILES MEDIANOS — max-width: 600px
   ============================================ */  