/* Reset CSS - Paulo Ricardo */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove bordas em elementos clicáveis no modo acessível */
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%; /* 1rem = 16px */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

/* Garantir estilos para inputs e botões */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
}

/* Estilo básico para campos desabilitados */
input:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
