/**
 * Scrollbar e comportamento de rolagem alinhados ao tema Sentinel (superfície escura + primário #ffe792).
 */

html {
  scroll-behavior: smooth;
  /* Evita que âncoras fiquem sob o nav fixo (h-16 ≈ 4rem) */
  scroll-padding-top: 4rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #efc900 #131313;
}

/* Chromium / Safari / Edge */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #131313;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffe792 0%, #efc900 55%, #c9a800 100%);
  border: 2px solid #131313;
  border-radius: 0;
  min-height: 48px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff4c4 0%, #ffd709 100%);
}

::-webkit-scrollbar-thumb:active {
  background: #ffd709;
}

::-webkit-scrollbar-corner {
  background: #131313;
}
