* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  font-family: var(--fonte-corpo);
  color: var(--cor-texto);
  background:
    radial-gradient(circle at top, rgba(79, 181, 166, 0.18), transparent 36%),
    linear-gradient(180deg, #071c19, #0d2c25 52%, #123a2c);
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.escondido {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

.aplicacao-hidratacao {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
}

.cena {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
