
    .fancy-dot-list {
    list-style: none;
    padding-left: 0;
  }

  .fancy-dot-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .fancy-dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px; /* pode ajustar para alinhar melhor */
  width: 4px;  /* menor largura */
  height: 4px; /* menor altura */
    background-color: #141515; /* azul elegante, pode trocar */
    border-radius: 50%; /* deixa o ponto redondo */
    box-shadow: 0 0 4px rgba(17, 17, 18, 0.6); /* glow leve */
  }

        .manual-dot-list li::before {
            content: ".";
            color: #000;
            /* muda a cor se quiser */
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: 5px;
        }

        .scrollable-list {
            max-height: 148px;
            overflow-y: auto;
            padding-right: 9px;
        }


        .scrollable-list::-webkit-scrollbar {
            width: 8px;
        }

        .scrollable-list::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .scrollable-list::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
        }

        .scrollable-list::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        /* Para Firefox */
        .scrollable-list {
            scrollbar-width: thin;
            /* Ajusta a largura da barra de rolagem */
            scrollbar-color: rgba(0, 0, 0, 0.3) rgba(255, 255, 255, 0.1);
        }

        .small-image {
            width: 300px;
            height: 250px;
            object-fit: cover;
            cursor: pointer;
        }
