/* Helpers/Utils */
.rounded-sm { border-radius: var(--radius-sm) !important; }
.rounded-md { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

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

.text-secondary { color: var(--neutral-600) !important; }
.bg-body { background-color: #fff !important; }

.max-w-320 { max-width: 320px !important; }
.max-w-480 { max-width: 480px !important; }

/* Acessibilidade visual (focus) */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}