/* ============================================
   ARRUMA SACADA — Utility Classes
   utilities.css
   ============================================ */

/* ── Screen Reader Only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── SR Only but visible on focus (Skip Link) ── */
.sr-only-focusable:focus,
.sr-only-focusable:focus-visible {
  position: fixed;
  top: var(--space-2);
  left: var(--space-2);
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-4);
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  z-index: 10000;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}

/* ── Text Alignment ── */
.text-center {
  text-align: center;
}

/* ── Visually Hidden (for ARIA descriptions) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
