* {
  box-sizing: border-box;
  scrollbar-color: #b8c0ce transparent;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: var(--raio-circular);
  background: #b8c0ce;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: #8f9bad;
  background-clip: content-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--fonte-principal);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

label {
  color: var(--cor-texto);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: var(--altura-controle);
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio-pequeno);
  padding: var(--espaco-4) var(--espaco-5);
  background: var(--cor-superficie);
  color: var(--cor-texto);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cor-primaria);
  outline: var(--foco-contorno);
}

textarea {
  resize: vertical;
}

.oculto {
  display: none !important;
}
