.Secao-lista-topicos {
  ul {
    li {
      padding-left: 28px;
      position: relative;
      font-size: $text-df;
      color: #4e4d59;

      &::before {
        position: absolute;
        left: 0;
        content: "";
        display: block;
        flex: 0 0 auto;
        height: 20px;
        width: 20px;
        background: $green-dark;
        border: 5.5px solid $green-light;
        border-radius: 100%;
      }
    }
  }
}

._dark-mode {
  .Secao-lista-topicos {
    ul {
      li {
        color: #dbd9ff;

        &::before {
          background: $green;
          border: 5.5px solid rgba(33, 105, 62, 0.9);
        }
      }
    }
  }
}
