/* Scrollbar customizada para desktop */
@media (min-width: 640px) {
  ::-webkit-scrollbar {
    width: 8px;
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background: #23293a;
    border-radius: 8px;
    border: 2px solid #101624;
    min-height: 40px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #334155;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  /* Firefox */
  html {
    scrollbar-width: thin;
    scrollbar-color: #23293a #101624;
  }
}
