* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-background);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-bottom: var(--navigation-height);
  min-height: 100vh;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

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

::selection {
    background-color: var(--color-accent); 
    color: var(--white); 
}

* {
    -webkit-tap-highlight-color: transparent;
    /*-webkit-user-select: none;  Impede seleção de texto em mobile Safari */
    user-select: none;
    touch-action: manipulation; /* Evita delays e bugs ao clicar */
}