    :root {
      --of-blue: #0052cc;
      --of-orange: #ff7f00;
    }
    #banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
    }
    .menu-bottom a:hover {
      color: #fff;
    }
    /* Custom Scrollbar minimalista */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
      background: #334155;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #475569;
    }
    /* Classe utilitária para garantir clique seguro no menu mobile */
    .dropdown-active {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
    }