/**
 * Base global — reset leve, corpo e acessibilidade mínima
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--text-step-0);
  line-height: var(--line-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-deep);
  -webkit-font-smoothing: antialiased;
}

a:focus-visible {
  outline: 2px solid var(--color-accent-gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.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;
}
